diff --git a/.github/actions/spelling/allow.txt b/.github/actions/spelling/allow.txt index e613c2a565cd5..bd1b444151efd 100644 --- a/.github/actions/spelling/allow.txt +++ b/.github/actions/spelling/allow.txt @@ -10,6 +10,7 @@ bcdboot checkboxes cla clonemedium +Cloudflight codeowner codeowners Contoso @@ -17,6 +18,7 @@ diffs DISM dism distro +dsc Entra Esco ESRP @@ -27,6 +29,7 @@ fnt ftp github GPT +HKLM Homeserver homeservers https @@ -68,6 +71,8 @@ ranhpa ranpha redirector Redistributables +restsource +rewinged Runtimes russellbanks screenshots @@ -81,6 +86,7 @@ Testplan toolset Trenly ttc +UAC ubuntu UEFI unassign diff --git a/.github/policies/labelAdded.validationCompleted.yml b/.github/policies/labelAdded.validationCompleted.yml index cec8d711b9a22..26691c9eb323e 100644 --- a/.github/policies/labelAdded.validationCompleted.yml +++ b/.github/policies/labelAdded.validationCompleted.yml @@ -1,4 +1,4 @@ -id: labelAdded.validationHttpError +id: labelAdded.validationCompleted name: GitOps.PullRequestIssueManagement description: Handlers when "Validation-Completed" label is added owner: @@ -11,6 +11,7 @@ configuration: - description: >- When the label "Validation-Completed" is added to a pull request and the "Moderator-Approved" label is not present * Add a reply notifying the issue author + * Remove the Validation-Guide label if: - payloadType: Pull_Request - labelAdded: @@ -26,6 +27,8 @@ configuration: label: Publisher-Verified - isOpen then: + - removeLabel: + label: Validation-Guide - addReply: reply: >- The check-in policies require a moderator to approve PRs from the community. diff --git a/.github/policies/labelManagement.assignIcmUsersAndModerators.yml b/.github/policies/labelManagement.assignIcmUsersAndModerators.yml index cc1039f7dd051..4533fd3c48e13 100644 --- a/.github/policies/labelManagement.assignIcmUsersAndModerators.yml +++ b/.github/policies/labelManagement.assignIcmUsersAndModerators.yml @@ -1,4 +1,4 @@ -id: labelAdded.assignIcmUsersAndModerators +id: labelManagement.assignIcmUsersAndModerators name: GitOps.PullRequestIssueManagement description: When these labels are added, the ICM Primary and secondary user should be assigned owner: diff --git a/Tools/ManualValidation/ManualValidationPipeline.cs b/Tools/ManualValidation/ManualValidationPipeline.cs index de8b8b6d66a86..b4bd5234607eb 100644 --- a/Tools/ManualValidation/ManualValidationPipeline.cs +++ b/Tools/ManualValidation/ManualValidationPipeline.cs @@ -3979,24 +3979,24 @@ public void AddValidationData(string PackageIdentifier,string gitHubUserName = " //Extend/reference CredWriteW as CredWrite. [DllImport("Advapi32.dll", SetLastError = true, EntryPoint = "CredFree", CharSet = CharSet.Unicode)] - private static extern bool CredRelease([In] IntPtr credentialPtr); - //Extend/reference CredFree as CredWrite. + private static extern void CredRelease([In] IntPtr credentialPtr); + //Extend/reference CredFree as CredRelease. public static Credential GetUserCredential(string target) { CredentialMem credMem; IntPtr credPtr; if (CredRead(target, 1, 0, out credPtr)) { //If found, returns true and adds to credPtr, else false and error. - credMem = Marshal.PtrToStructure(credPtr); - //"Marshals data from an unmanaged block of memory to a newly allocated managed object of the type specified by a generic type parameter." - byte[] passwordBytes = new byte[credMem.credentialBlobSize]; //Make a new byte array passwordBytes of size credentialBlobSize. - Marshal.Copy(credMem.credentialBlob, passwordBytes, 0, credMem.credentialBlobSize); - //Copies data from an unmanaged memory pointer to a managed 8-bit unsigned integer array. - // - Credential cred = new Credential(credMem.targetName, credMem.userName, Encoding.Unicode.GetString(passwordBytes)); //Make a new Credential object cred. - //Original example doesn't include these: - CredRelease(credPtr); - CredRelease(credMem.credentialBlob); - return cred; + try { + credMem = Marshal.PtrToStructure(credPtr); + //"Marshals data from an unmanaged block of memory to a newly allocated managed object of the type specified by a generic type parameter." + byte[] passwordBytes = new byte[credMem.credentialBlobSize]; //Make a new byte array passwordBytes of size credentialBlobSize. + Marshal.Copy(credMem.credentialBlob, passwordBytes, 0, credMem.credentialBlobSize); + //Copies data from an unmanaged memory pointer to a managed 8-bit unsigned integer array. + return new Credential(credMem.targetName, credMem.userName, Encoding.Unicode.GetString(passwordBytes)); //Make a new Credential object cred. + } finally { + //credentialBlob is an interior pointer into credPtr; free the buffer once via CredFree. + if (credPtr != IntPtr.Zero) { CredRelease(credPtr); } + } } else { throw new Exception("Failed to retrieve credentials"); } @@ -4014,11 +4014,14 @@ public static void SetUserCredential(string target, string userName, string pass userCredential.credentialBlobSize = (int)bpassword.Length; userCredential.credentialBlob = Marshal.StringToCoTaskMemUni(password); //If write fails, emit last error. - if (!CredWrite(ref userCredential, 0)) { - throw new System.ComponentModel.Win32Exception(Marshal.GetLastWin32Error()); + try { + if (!CredWrite(ref userCredential, 0)) { + throw new System.ComponentModel.Win32Exception(Marshal.GetLastWin32Error()); + } + } finally { + //Match StringToCoTaskMemUni allocation with FreeCoTaskMem. + Marshal.FreeCoTaskMem(userCredential.credentialBlob); } - //Original example doesn't include this. Was going to use FreeCoTaskMem as recommended, but this gave an error. - Marshal.FreeCoTaskMem(userCredential.credentialBlob); } [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] diff --git a/Tools/ManualValidation/ManualValidationPipeline.ps1 b/Tools/ManualValidation/ManualValidationPipeline.ps1 index b131b59b583f1..b619787377c92 100644 --- a/Tools/ManualValidation/ManualValidationPipeline.ps1 +++ b/Tools/ManualValidation/ManualValidationPipeline.ps1 @@ -7431,21 +7431,25 @@ namespace CredManager { private static extern bool CredRead(string target, int type, int reservedFlag, out IntPtr credentialPtr); //Extend/reference CredReadW as CredRead. + [DllImport("Advapi32.dll", SetLastError = true, EntryPoint = "CredFree", CharSet = CharSet.Unicode)] + private static extern void CredRelease([In] IntPtr credentialPtr); + //Extend/reference CredFree as CredRelease. + public static Credential GetUserCredential(string target) { CredentialMem credMem; IntPtr credPtr; if (CredRead(target, 1, 0, out credPtr)) { //If found, returns true and adds to credPtr, else false and error. - credMem = Marshal.PtrToStructure(credPtr); - //"Marshals data from an unmanaged block of memory to a newly allocated managed object of the type specified by a generic type parameter." - byte[] passwordBytes = new byte[credMem.credentialBlobSize]; //Make a new byte array passwordBytes of size credentialBlobSize. - Marshal.Copy(credMem.credentialBlob, passwordBytes, 0, credMem.credentialBlobSize); - //Copies data from an unmanaged memory pointer to a managed 8-bit unsigned integer array. - // - Credential cred = new Credential(credMem.targetName, credMem.userName, Encoding.Unicode.GetString(passwordBytes)); //Make a new Credential object cred. - //Original example doesn't include these: - Marshal.FreeHGlobal(credPtr); - Marshal.FreeHGlobal(credMem.credentialBlob); - return cred; + try { + credMem = Marshal.PtrToStructure(credPtr); + //"Marshals data from an unmanaged block of memory to a newly allocated managed object of the type specified by a generic type parameter." + byte[] passwordBytes = new byte[credMem.credentialBlobSize]; //Make a new byte array passwordBytes of size credentialBlobSize. + Marshal.Copy(credMem.credentialBlob, passwordBytes, 0, credMem.credentialBlobSize); + //Copies data from an unmanaged memory pointer to a managed 8-bit unsigned integer array. + return new Credential(credMem.targetName, credMem.userName, Encoding.Unicode.GetString(passwordBytes)); //Make a new Credential object cred. + } finally { + //credentialBlob is an interior pointer into credPtr; free the buffer once via CredFree. + if (credPtr != IntPtr.Zero) { CredRelease(credPtr); } + } } else { throw new Exception("Failed to retrieve credentials"); } @@ -7467,11 +7471,14 @@ namespace CredManager { userCredential.credentialBlobSize = (int)bpassword.Length; userCredential.credentialBlob = Marshal.StringToCoTaskMemUni(password); //If write fails, emit last error. - if (!CredWrite(ref userCredential, 0)) { - throw new System.ComponentModel.Win32Exception(Marshal.GetLastWin32Error()); + try { + if (!CredWrite(ref userCredential, 0)) { + throw new System.ComponentModel.Win32Exception(Marshal.GetLastWin32Error()); + } + } finally { + //Match StringToCoTaskMemUni allocation with FreeCoTaskMem. + Marshal.FreeCoTaskMem(userCredential.credentialBlob); } - //Original example doesn't include this. Was going to use FreeCoTaskMem as recommended, but this gave an error. - Marshal.FreeHGlobal(userCredential.credentialBlob); } } } diff --git a/Tools/Modules/FileOperations/FileOperations.Tests.ps1 b/Tools/Modules/FileOperations/FileOperations.Tests.ps1 new file mode 100644 index 0000000000000..0d6fd3e8c1e78 --- /dev/null +++ b/Tools/Modules/FileOperations/FileOperations.Tests.ps1 @@ -0,0 +1,107 @@ +Describe 'FileOperations Module' { + BeforeAll { + $ModulePath = Split-Path -Parent $PSCommandPath + Import-Module (Join-Path $ModulePath 'FileOperations.psd1') -Force + } + + Context 'Module Import' { + It 'Should import the module successfully' { + Get-Module 'FileOperations' | Should -Not -BeNullOrEmpty + } + + It 'Should export all expected functions' { + $ExportedFunctions = (Get-Module 'FileOperations').ExportedFunctions.Keys + 'Initialize-Folder' -in $ExportedFunctions | Should -Be $true + 'Invoke-FileCleanup' -in $ExportedFunctions | Should -Be $true + 'Request-RemoveItem' -in $ExportedFunctions | Should -Be $true + } + } +} + +Describe 'Initialize-Folder' { + It 'Should create a folder and return true when it does not exist' { + $tempRoot = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath ([System.Guid]::NewGuid().ToString()) + $targetFolder = Join-Path -Path $tempRoot -ChildPath 'created' + + try { + $result = Initialize-Folder -FolderPath $targetFolder + $result | Should -Be $true + (Test-Path -Path $targetFolder -PathType Container) | Should -Be $true + } finally { + if (Test-Path -Path $tempRoot) { Remove-Item -Path $tempRoot -Recurse -Force -ErrorAction SilentlyContinue } + } + } + + It 'Should return true for an existing folder' { + $tempRoot = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath ([System.Guid]::NewGuid().ToString()) + New-Item -Path $tempRoot -ItemType Directory -Force | Out-Null + + try { + $result = Initialize-Folder -FolderPath $tempRoot + $result | Should -Be $true + } finally { + if (Test-Path -Path $tempRoot) { Remove-Item -Path $tempRoot -Recurse -Force -ErrorAction SilentlyContinue } + } + } + + It 'Should return false when a file exists at the folder path' { + $tempFile = New-TemporaryFile + + try { + $result = Initialize-Folder -FolderPath $tempFile.FullName + $result | Should -Be $false + } finally { + if (Test-Path -Path $tempFile.FullName) { Remove-Item -Path $tempFile.FullName -Force -ErrorAction SilentlyContinue } + } + } +} + +Describe 'Request-RemoveItem' { + It 'Should remove a file path' { + $tempFile = New-TemporaryFile + Request-RemoveItem -Path $tempFile.FullName + (Test-Path -Path $tempFile.FullName) | Should -Be $false + } + + It 'Should remove a directory path recursively' { + $tempRoot = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath ([System.Guid]::NewGuid().ToString()) + $nestedFolder = Join-Path -Path $tempRoot -ChildPath 'nested' + $nestedFile = Join-Path -Path $nestedFolder -ChildPath 'payload.txt' + New-Item -Path $nestedFolder -ItemType Directory -Force | Out-Null + Set-Content -Path $nestedFile -Value 'payload' + + Request-RemoveItem -Path $tempRoot + (Test-Path -Path $tempRoot) | Should -Be $false + } + + It 'Should be a no-op when path does not exist' { + $missingPath = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath ([System.Guid]::NewGuid().ToString()) + { Request-RemoveItem -Path $missingPath } | Should -Not -Throw + } +} + +Describe 'Invoke-FileCleanup' { + It 'Should remove files and folders in the provided list' { + $tempRoot = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath ([System.Guid]::NewGuid().ToString()) + $tempFolder = Join-Path -Path $tempRoot -ChildPath 'cleanup' + $tempFile = Join-Path -Path $tempRoot -ChildPath 'file.txt' + New-Item -Path $tempFolder -ItemType Directory -Force | Out-Null + New-Item -Path $tempFile -ItemType File -Force | Out-Null + + Invoke-FileCleanup -FilePaths @($tempFolder, $tempFile) + + (Test-Path -Path $tempFolder) | Should -Be $false + (Test-Path -Path $tempFile) | Should -Be $false + + if (Test-Path -Path $tempRoot) { Remove-Item -Path $tempRoot -Recurse -Force -ErrorAction SilentlyContinue } + } + + It 'Should not throw when file list is empty' { + { Invoke-FileCleanup -FilePaths @() } | Should -Not -Throw + } + + It 'Should not throw when file list contains missing paths' { + $missingPath = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath ([System.Guid]::NewGuid().ToString()) + { Invoke-FileCleanup -FilePaths @($missingPath) } | Should -Not -Throw + } +} diff --git a/Tools/Modules/FileOperations/FileOperations.psd1 b/Tools/Modules/FileOperations/FileOperations.psd1 new file mode 100644 index 0000000000000..03a96c5b1adc4 --- /dev/null +++ b/Tools/Modules/FileOperations/FileOperations.psd1 @@ -0,0 +1,54 @@ +# +# Module manifest for module 'FileOperations' +# +# Generated by: Trenly +# +# Generated on: 5/27/2026 +# + +@{ + + # Script module or binary module file associated with this manifest. + RootModule = 'FileOperations.psm1' + + # Version number of this module. + ModuleVersion = '0.0.1' + + # ID used to uniquely identify this module + GUID = '37c15420-b760-4f80-8c52-a154225b867c' + + # Author of this module + Author = 'Microsoft Open Source Community' + + # Company or vendor of this module + CompanyName = 'Microsoft Corporation' + + # Copyright statement for this module + Copyright = 'Copyright (c) Microsoft Corporation. All rights reserved.' + + # Description of the functionality provided by this module + Description = 'Shared folder and file operations for winget-pkgs tooling scripts and modules.' + + # Functions to export from this module + FunctionsToExport = @( + 'Initialize-Folder' + 'Request-RemoveItem' + 'Invoke-FileCleanup' + ) + + # Cmdlets to export from this module + CmdletsToExport = @() + + # Variables to export from this module + VariablesToExport = '*' + + # Aliases to export from this module + AliasesToExport = @() + + PrivateData = @{ + PSData = @{ + LicenseUri = 'https://github.com/microsoft/winget-pkgs/blob/master/LICENSE' + ProjectUri = 'https://github.com/microsoft/winget-pkgs' + } + } +} diff --git a/Tools/Modules/FileOperations/FileOperations.psm1 b/Tools/Modules/FileOperations/FileOperations.psm1 new file mode 100644 index 0000000000000..691d765d33f86 --- /dev/null +++ b/Tools/Modules/FileOperations/FileOperations.psm1 @@ -0,0 +1,73 @@ +function Initialize-Folder { + param ( + [Parameter(Mandatory = $true)] + [String] $FolderPath + ) + + $FolderPath = [System.IO.Path]::GetFullPath($FolderPath) + if (Test-Path -Path $FolderPath -PathType Container) { return $true } + if (Test-Path -Path $FolderPath) { return $false } + + try { + New-Item -Path $FolderPath -ItemType Directory -Force -ErrorAction Stop | Out-Null + return $true + } catch { + return $false + } +} + +function Request-RemoveItem { + Param( + [Parameter(Mandatory = $true, Position = 0)] + [string] $Path, + [int] $Retries = 6, + [int] $DelayMs = 250 + ) + + # Check if path exists using .NET + $fileInfo = [System.IO.FileInfo]$Path + $dirInfo = [System.IO.DirectoryInfo]$Path + + if (-not ($fileInfo.Exists -or $dirInfo.Exists)) { return } + + for ($i = 0; $i -lt $Retries; $i++) { + try { + if ($dirInfo.Exists) { + $dirInfo.Delete($true) + } elseif ($fileInfo.Exists) { + $fileInfo.Delete() + } + return + } catch [System.IO.IOException] { + [GC]::Collect() + [GC]::WaitForPendingFinalizers() + Start-Sleep -Milliseconds $DelayMs + $DelayMs = [Math]::Min(5000, $DelayMs * 2) + } catch { + throw + } + } + + Write-Warning "Could not remove file '$Path' after $Retries attempts; it may be in use by another process." +} + +function Invoke-FileCleanup { + param ( + [Parameter(Mandatory = $true)] + [AllowEmptyString()] + [AllowEmptyCollection()] + [String[]] $FilePaths + ) + + if (!$FilePaths) { return } + foreach ($path in $FilePaths) { + Write-Debug "Removing $path" + if (Test-Path -Path $path) { + Request-RemoveItem -Path $path + } else { + Write-Warning "Could not remove $path as it does not exist" + } + } +} + +Export-ModuleMember -Function @('Initialize-Folder', 'Request-RemoveItem', 'Invoke-FileCleanup') diff --git a/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.Tests.ps1 b/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.Tests.ps1 new file mode 100644 index 0000000000000..73a83f762c3a8 --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.Tests.ps1 @@ -0,0 +1,80 @@ +Describe 'YamlCreate.GitHub Module' { + BeforeAll { + # Import the module to test + $ModulePath = Split-Path -Parent $PSCommandPath + Import-Module (Join-Path $ModulePath 'YamlCreate.GitHub.psd1') -Force + } + + Context 'Module Import' { + It 'Should import the module successfully' { + Get-Module 'YamlCreate.GitHub' | Should -Not -BeNullOrEmpty + } + + It 'Should declare FileOperations as a required module dependency' { + $ModulePath = Split-Path -Parent $PSCommandPath + $manifest = Import-PowerShellDataFile -Path (Join-Path $ModulePath 'YamlCreate.GitHub.psd1') + (@($manifest.RequiredModules) -contains 'FileOperations') | Should -Be $true + } + + It 'Should export all expected functions' { + $ExportedFunctions = (Get-Module 'YamlCreate.GitHub').ExportedFunctions.Keys + 'Get-Remote' -in $ExportedFunctions | Should -Be $true + 'Set-Remote' -in $ExportedFunctions | Should -Be $true + 'Find-PullRequest' -in $ExportedFunctions | Should -Be $true + 'Get-PrTemplate' -in $ExportedFunctions | Should -Be $true + } + } + + Context 'wingetUpstream Variable' { + It 'Should have correct value for wingetUpstream' { + $wingetUpstream | Should -Be 'https://github.com/microsoft/winget-pkgs.git' + } + } + + Context 'Get-Remote Function' { + It 'Should return $null for non-existent remote' { + $result = Get-Remote -RemoteName 'nonexistent-remote-xyz' + $result | Should -BeNullOrEmpty + } + + It 'Should accept RemoteName parameter' { + { Get-Remote -RemoteName 'origin' } | Should -Not -Throw + } + } + + Context 'Set-Remote Function' { + It 'Should accept RemoteName and Url parameters' { + { Set-Remote -RemoteName 'test' -Url 'https://example.com/test.git' } | Should -Not -Throw + } + + It 'Should return boolean result' { + $result = Set-Remote -RemoteName 'test' -Url 'https://example.com/test.git' + ($result -is [System.Boolean]) | Should -Be $true + } + } + + Context 'Find-PullRequest Function' { + It 'Should accept PackageIdentifier and PackageVersion parameters' { + { Find-PullRequest -PackageIdentifier 'Test.Package' -PackageVersion '1.0.0' } | Should -Not -Throw + } + + It 'Should handle web request errors gracefully' { + { Find-PullRequest -PackageIdentifier 'Invalid...Package' -PackageVersion '1.0.0' } | Should -Not -Throw + } + } + + Context 'Get-PrTemplate Function' { + It 'Should not throw when called' { + { Get-PrTemplate } | Should -Not -Throw + } + + It 'Should return string or null' { + $result = Get-PrTemplate + (($result -is [string]) -or ($result -eq $null)) | Should -Be $true + } + + It 'Should handle web request failures gracefully' { + { $result = Get-PrTemplate; $result } | Should -Not -Throw + } + } +} diff --git a/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.psd1 b/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.psd1 new file mode 100644 index 0000000000000..2998469797150 --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.psd1 @@ -0,0 +1,133 @@ +# +# Module manifest for module 'YamlCreate.GitHub' +# +# Generated by: Trenly +# +# Generated on: 5/27/2026 +# + +@{ + + # Script module or binary module file associated with this manifest. + RootModule = 'YamlCreate.GitHub.psm1' + + # Version number of this module. + ModuleVersion = '0.0.1' + + # Supported PSEditions + # CompatiblePSEditions = @() + + # ID used to uniquely identify this module + GUID = 'e5c8f1a2-7b3d-4c2e-9a1f-6b5d8c3a2e1f' + + # Author of this module + Author = 'Microsoft Open Source Community' + + # Company or vendor of this module + CompanyName = 'Microsoft Corporation' + + # Copyright statement for this module + Copyright = 'Copyright (c) Microsoft Corporation. All rights reserved.' + + # Description of the functionality provided by this module + Description = 'GitHub-related functionality for YamlCreate, including PR checking and template retrieval.' + + # Minimum version of the PowerShell engine required by this module + # PowerShellVersion = '' + + # Name of the PowerShell host required by this module + # PowerShellHostName = '' + + # Minimum version of the PowerShell host required by this module + # PowerShellHostVersion = '' + + # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # DotNetFrameworkVersion = '' + + # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # ClrVersion = '' + + # Processor architecture (None, X86, Amd64) required by this module + # ProcessorArchitecture = '' + + # Modules that must be imported into the global environment prior to importing this module + RequiredModules = @( + 'FileOperations' + ) + + # Assemblies that must be loaded prior to importing this module + # RequiredAssemblies = @() + + # Script files (.ps1) that are run in the caller's environment prior to importing this module. + # ScriptsToProcess = @() + + # Type files (.ps1xml) to be loaded when importing this module + # TypesToProcess = @() + + # Format files (.ps1xml) to be loaded when importing this module + # FormatsToProcess = @() + + # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess + # NestedModules = @() + + # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. + FunctionsToExport = @('Get-Remote', 'Set-Remote', 'Find-PullRequest', 'Get-PrTemplate') + + # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. + CmdletsToExport = @() + + # Variables to export from this module + VariablesToExport = '*' + + # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. + AliasesToExport = @() + + # DSC resources to export from this module + # DscResourcesToExport = @() + + # List of all modules packaged with this module + ModuleList = @() + + # List of all files packaged with this module + # FileList = @() + + # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. + PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + # Tags = @() + + # A URL to the license for this module. + LicenseUri = 'https://github.com/microsoft/winget-pkgs/blob/master/LICENSE' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/microsoft/winget-pkgs' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + # ReleaseNotes = '' + + # Prerelease string of this module + # Prerelease = '' + + # Flag to indicate whether the module requires explicit user acceptance for install/update/save + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + + } # End of PrivateData hashtable + + # HelpInfo URI of this module + # HelpInfoURI = '' + + # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. + # DefaultCommandPrefix = '' + +} diff --git a/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.psm1 b/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.psm1 new file mode 100644 index 0000000000000..931dbf7f027b3 --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.psm1 @@ -0,0 +1,234 @@ +# Module variable for upstream remote URL +$script:wingetUpstream = 'https://github.com/microsoft/winget-pkgs.git' +$script:AppInstallerPFN = 'Microsoft.DesktopAppInstaller_8wekyb3d8bbwe' +$script:AppInstallerDataFolder = Join-Path -Path (Join-Path -Path $env:LOCALAPPDATA -ChildPath 'Packages') -ChildPath $script:AppInstallerPFN +$script:TokenValidationCache = Join-Path -Path $script:AppInstallerDataFolder -ChildPath 'TokenValidationCache' +$script:CachedTokenExpiration = 30 # Days +$script:GitHubToken = $env:WINGET_PKGS_GITHUB_TOKEN +$script:GitHubApiBaseUri = 'https://api.github.com' + +function Test-GithubToken { + [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingConvertToSecureStringWithPlainText', '', + Justification = 'The standard workflow that users use with other applications requires the use of plaintext GitHub Access Tokens')] + + param ( + [Parameter(Mandatory = $true)] + [AllowEmptyString()] + [String] $Token + ) + + if ([string]::IsNullOrWhiteSpace($Token)) { return $false } + + $_memoryStream = [System.IO.MemoryStream]::new() + $_streamWriter = [System.IO.StreamWriter]::new($_memoryStream) + $_streamWriter.Write($Token) + $_streamWriter.Flush() + $_memoryStream.Position = 0 + + $tokenHash = Get-FileHash -InputStream $_memoryStream | Select-Object -ExpandProperty Hash + + $_streamWriter.DisposeAsync() 1> $null + $_memoryStream.DisposeAsync() 1> $null + + if (-not (Initialize-Folder -FolderPath $script:TokenValidationCache)) { return $false } + $cachedToken = Get-ChildItem -Path $script:TokenValidationCache -Filter $tokenHash -ErrorAction SilentlyContinue + + if ($cachedToken) { + $cachedTokenAge = (Get-Date) - $cachedToken.LastWriteTime | Select-Object -ExpandProperty TotalDays + $cachedTokenAge = [Math]::Round($cachedTokenAge, 2) + $cacheIsExpired = $cachedTokenAge -ge $script:CachedTokenExpiration + $cachedTokenContent = (Get-Content $cachedToken -Raw).Trim() + $cachedTokenIsEmpty = [string]::IsNullOrWhiteSpace($cachedTokenContent) + + if (!$cacheIsExpired -and !$cachedTokenIsEmpty) { + $cachedExpirationForParsing = $cachedTokenContent.TrimEnd(' UTC') + $cachedExpirationDate = [System.DateTime]::MinValue + [System.DateTime]::TryParse($cachedExpirationForParsing, [ref]$cachedExpirationDate) | Out-Null + + $tokenExpirationDays = $cachedExpirationDate - (Get-Date) | Select-Object -ExpandProperty TotalDays + $tokenExpirationDays = [Math]::Round($tokenExpirationDays, 2) + + if ($cachedExpirationForParsing -eq [System.DateTime]::MaxValue.ToLongDateString().Trim()) { + return $true + } + + if ($tokenExpirationDays -gt 0) { + return $true + } elseif ($cachedExpirationDate -eq [System.DateTime]::MinValue) { + Invoke-FileCleanup -FilePaths $cachedToken.FullName + } else { + return $false + } + } else { + Invoke-FileCleanup -FilePaths $cachedToken.FullName + } + } + + $requestParameters = @{ + Uri = 'https://api.github.com/rate_limit' + Authentication = 'Bearer' + Token = $(ConvertTo-SecureString "$Token" -AsPlainText) + ErrorAction = 'Stop' + } + + $apiResponse = Invoke-WebRequest @requestParameters + $rateLimit = @($apiResponse.Headers['X-RateLimit-Limit']) + $tokenExpiration = @($apiResponse.Headers['github-authentication-token-expiration']) + + if (!$rateLimit) { return $false } + if ([int]$rateLimit[0] -le 60) { + return $false + } + + $tokenExpiration = $tokenExpiration[0] -replace '[^0-9]+$', '' + if (!$tokenExpiration -or [string]::IsNullOrWhiteSpace($tokenExpiration)) { + $tokenExpiration = [System.DateTime]::MaxValue + } + if ([DateTime]::TryParse($tokenExpiration, [ref]$tokenExpiration)) { + $null = $tokenExpiration + } else { + $tokenExpiration = [System.DateTime]::MinValue + } + + $tokenExpiration = $tokenExpiration.ToString() + New-Item -ItemType File -Path $script:TokenValidationCache -Name $tokenHash -Value $tokenExpiration -Force | Out-Null + return $true +} + +function Invoke-GitHubRequest { + param ( + [Parameter(Mandatory = $true)] + [string] $Uri + ) + + $requestUri = $Uri + if ($requestUri -notmatch '^https?://') { + if (-not $requestUri.StartsWith('/')) { + $requestUri = "/$requestUri" + } + $requestUri = "$script:GitHubApiBaseUri$requestUri" + } + + $requestParameters = @{ + Uri = $requestUri + UseBasicParsing = $true + ErrorAction = 'Stop' + } + + $hasValidToken = $false + if (-not [string]::IsNullOrWhiteSpace($script:GitHubToken)) { + try { + $hasValidToken = Test-GithubToken -Token $script:GitHubToken + } catch { + $hasValidToken = $false + } + } + + if ($hasValidToken) { + $requestParameters.Headers = @{ + Authorization = "Bearer $($script:GitHubToken)" + } + } + + try { + return Invoke-WebRequest @requestParameters + } catch { + if ($hasValidToken) { + $requestParameters.Remove('Headers') + return Invoke-WebRequest @requestParameters + } + throw + } +} + +function Get-Remote { + param( + [Parameter(Mandatory = $true)] + [string] $RemoteName + ) + + try { + $remoteUrl = git remote get-url $RemoteName 2>$null + if ($remoteUrl) { + return $remoteUrl + } + return $null + } catch { + return $null + } +} + +function Set-Remote { + param( + [Parameter(Mandatory = $true)] + [string] $RemoteName, + + [Parameter(Mandatory = $true)] + [string] $Url + ) + + try { + $existingUrl = Get-Remote -RemoteName $RemoteName + if ($existingUrl) { + git remote set-url $RemoteName $Url 2>$null + } else { + git remote add $RemoteName $Url 2>$null + } + return $? + } catch { + return $false + } +} + +function Find-PullRequest { + param( + [Parameter(Mandatory = $true)] + [string] $PackageIdentifier, + + [Parameter(Mandatory = $true)] + [string] $PackageVersion + ) + + try { + $manifestPath = '{0}/{1}' -f ($PackageIdentifier -replace '\.', '/'), $PackageVersion + $searchTerms = @( + 'repo:microsoft/winget-pkgs' + 'is:pr' + $manifestPath + 'in:path' + ) + $query = [System.Uri]::EscapeDataString(($searchTerms -join ' ')) + $uri = "/search/issues?q=$query&per_page=1" + + $webResponse = Invoke-GitHubRequest -Uri $uri + $response = @($webResponse.Content | ConvertFrom-Json)[0] + return $response + } catch { + return $null + } +} + +function Get-PrTemplate { + try { + $contentsApiUrl = '/repos/microsoft/winget-pkgs/contents/.github/PULL_REQUEST_TEMPLATE.md?ref=master' + $templateResponse = Invoke-GitHubRequest -Uri $contentsApiUrl + if ($templateResponse) { + $templateFile = $templateResponse.Content | ConvertFrom-Json + if ($templateFile.content) { + $encodedContent = ($templateFile.content -replace '\s', '') + return [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($encodedContent)) + } + Write-Warning 'PR template response did not include file content' + return $null + } else { + Write-Warning 'Could not fetch PR template from upstream remote' + return $null + } + } catch { + Write-Warning "Could not fetch PR template from upstream remote: $_" + return $null + } +} + +# Export module variables and functions +Export-ModuleMember -Variable 'wingetUpstream' -Function @('Get-Remote', 'Set-Remote', 'Find-PullRequest', 'Get-PrTemplate') diff --git a/Tools/Modules/YamlCreate/YamlCreate.psd1 b/Tools/Modules/YamlCreate/YamlCreate.psd1 index 2db8ff8c50d89..e06c1191eadc8 100644 --- a/Tools/Modules/YamlCreate/YamlCreate.psd1 +++ b/Tools/Modules/YamlCreate/YamlCreate.psd1 @@ -53,6 +53,7 @@ # Modules that must be imported into the global environment prior to importing this module RequiredModules = @( 'VirtualTerminal' # Required for virtual terminal support + 'FileOperations' ) # Assemblies that must be loaded prior to importing this module @@ -71,6 +72,7 @@ NestedModules = @( 'YamlCreate.InstallerDetection' 'YamlCreate.Menuing' + 'YamlCreate.GitHub' ) # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. @@ -90,8 +92,10 @@ # List of all modules packaged with this module ModuleList = @( + 'FileOperations' 'YamlCreate.InstallerDetection' 'YamlCreate.Menuing' + 'YamlCreate.GitHub' ) # List of all files packaged with this module @@ -137,4 +141,3 @@ # DefaultCommandPrefix = '' } - diff --git a/Tools/YamlCreate.ps1 b/Tools/YamlCreate.ps1 index bbdf04d826f0f..38d9bb20bcbc2 100644 --- a/Tools/YamlCreate.ps1 +++ b/Tools/YamlCreate.ps1 @@ -236,7 +236,7 @@ if ($Settings) { exit } -$ScriptHeader = '# Created with YamlCreate.ps1 v2.7.2' +$ScriptHeader = '# Created with YamlCreate.ps1 v2.8.0' $ManifestVersion = '1.12.0' $PSDefaultParameterValues = @{ '*:Encoding' = 'UTF8' } $Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False @@ -246,7 +246,6 @@ $callingCulture = [Threading.Thread]::CurrentThread.CurrentCulture [Threading.Thread]::CurrentThread.CurrentUICulture = 'en-US' [Threading.Thread]::CurrentThread.CurrentCulture = 'en-US' if (-not ([System.Environment]::OSVersion.Platform -match 'Win')) { $env:TEMP = '/tmp/' } -$wingetUpstream = 'https://github.com/microsoft/winget-pkgs.git' $RunHash = $(Get-FileHash -InputStream $([IO.MemoryStream]::new([byte[]][char[]]$(Get-Date).Ticks.ToString()))).Hash.Substring(0, 8) $script:UserAgent = 'Microsoft-Delivery-Optimization/10.1' $script:CleanupPaths = @() @@ -394,31 +393,15 @@ $Patterns = @{ } # check if upstream exists -($remoteUpstreamUrl = $(git remote get-url upstream)) *> $null +$remoteUpstreamUrl = Get-Remote -RemoteName upstream if ($remoteUpstreamUrl -and $remoteUpstreamUrl -ne $wingetUpstream) { - git remote set-url upstream $wingetUpstream + if (-not (Set-Remote -RemoteName upstream -Url $wingetUpstream)) { + Write-Warning "Failed to update upstream remote URL. You may need to manually run: git remote set-url upstream $wingetUpstream" + } } elseif (!$remoteUpstreamUrl) { Write-Host -ForegroundColor 'Yellow' 'Upstream does not exist. Permanently adding https://github.com/microsoft/winget-pkgs as remote upstream' - git remote add upstream $wingetUpstream -} - -#### -# Description: Removes files and folders from the file system -# Inputs: List of paths to remove -# Outputs: None -#### -function Invoke-FileCleanup { - param ( - [Parameter(Mandatory = $true)] - [AllowEmptyString()] - [AllowEmptyCollection()] - [String[]] $FilePaths - ) - if (!$FilePaths) { return } - foreach ($path in $FilePaths) { - Write-Debug "Removing $path" - if (Test-Path $path) { Remove-Item -Path $path -Recurse } - else { Write-Warning "Could not remove $path as it does not exist" } + if (-not (Set-Remote -RemoteName upstream -Url $wingetUpstream)) { + Write-Warning "Failed to add upstream remote. You may need to manually run: git remote add upstream $wingetUpstream" } } @@ -634,33 +617,6 @@ Function Get-InstallerFile { return $_OutFile } -Function SafeRemovePath { - Param( - [Parameter(Mandatory=$true, Position=0)] - [string] $Path, - [int] $Retries = 6, - [int] $DelayMs = 250 - ) - - if (-not (Test-Path -LiteralPath $Path)) { return } - - for ($i = 0; $i -lt $Retries; $i++) { - try { - Remove-Item -LiteralPath $Path -Force -ErrorAction Stop - return - } catch [System.IO.IOException] { - [GC]::Collect() - [GC]::WaitForPendingFinalizers() - Start-Sleep -Milliseconds $DelayMs - $DelayMs = [Math]::Min(5000, $DelayMs * 2) - } catch { - throw - } - } - - Write-Warning "Could not remove file '$Path' after $Retries attempts; it may be in use by another process." -} - Function Get-UserSavePreference { switch ($ScriptSettings.SaveToTemporaryFolder) { 'always' { $_Preference = '0' } @@ -1466,7 +1422,7 @@ Function Read-QuickInstallerEntry { } } # Remove the downloaded files - SafeRemovePath -Path $script:dest + Request-RemoveItem -Path $script:dest Write-Host -ForegroundColor 'Green' "Installer updated!`n" } @@ -1976,7 +1932,10 @@ Function Read-LocaleMetadata { # Requests the user to answer the prompts found in the winget-pkgs pull request template # Uses this template and responses to create a PR Function Read-PRBody { - $PrBodyContent = Get-Content $args[0] + $PrBodyContent = (Get-PrTemplate) -split '\n' + if (-not $PrBodyContent) { + Write-Warning "The Pull Request Template Contained No Content!" + } ForEach ($_line in $PrBodyContent) { # | Where-Object { $_ -like '-*[ ]*' })) if ($_line -like '-*[ ]*' ) { @@ -2738,7 +2697,7 @@ do { # Check the api for open PR's # This is unauthenticated because the call-rate per minute is assumed to be low if ($ScriptSettings.ContinueWithExistingPRs -ne 'always' -and $script:Option -ne 'RemoveManifest' -and !$SkipPRCheck) { - $PRApiResponse = @(Invoke-WebRequest "https://api.github.com/search/issues?q=repo%3Amicrosoft%2Fwinget-pkgs%20is%3Apr%20$($PackageIdentifier -replace '\.', '%2F'))%2F$PackageVersion%20in%3Apath&per_page=1" -UseBasicParsing -ErrorAction SilentlyContinue | ConvertFrom-Json)[0] + $PRApiResponse = Find-PullRequest -PackageIdentifier $PackageIdentifier -PackageVersion $PackageVersion # If there was a PR found, get the URL and title if ($PRApiResponse.total_count -gt 0) { $_PRUrl = $PRApiResponse.items.html_url @@ -3111,7 +3070,7 @@ Switch ($script:Option) { } } # Remove the downloaded files - SafeRemovePath -Path $script:dest + Request-RemoveItem -Path $script:dest $_NewInstallers += Restore-YamlKeyOrder $_Installer $InstallerEntryProperties -NoComments } # Write the new manifests @@ -3226,16 +3185,7 @@ if ($PromptSubmit -eq '0') { # If the user has the cli too if (Get-Command 'gh' -ErrorAction SilentlyContinue) { # Request the user to fill out the PR template - if (Test-Path -Path "$gitTopLevel\.github\PULL_REQUEST_TEMPLATE.md") { - Read-PRBody (Resolve-Path "$gitTopLevel\.github\PULL_REQUEST_TEMPLATE.md").Path - } else { - while ([string]::IsNullOrWhiteSpace($PRTemplate)) { - Write-Host - Write-Host -ForegroundColor 'Green' -Object 'PULL_REQUEST_TEMPLATE.md not found, input path' - $PRTemplate = Read-Host -Prompt 'PR Template' | TrimString - } - Read-PRBody "$PRTemplate" - } + Read-PRBody } } diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.installer.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.installer.yaml new file mode 100644 index 0000000000000..a59a27ce6608c --- /dev/null +++ b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.installer.yaml @@ -0,0 +1,77 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: AFAS.ProfitCommunicationCenter.8 +PackageVersion: 2.9.1400.800 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S /V/quiet /V/norestart + SilentWithProgress: /S /V/passive /V/norestart + InstallLocation: /V"INSTALLDIR=""""" + Log: /V"/log """"" +ExpectedReturnCodes: +- InstallerReturnCode: -1 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1150 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1201 + ReturnResponse: diskFull +- InstallerReturnCode: 1203 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1601 + ReturnResponse: contactSupport +- InstallerReturnCode: 1602 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress +- InstallerReturnCode: 1623 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1625 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1628 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1633 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 1639 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1640 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 1643 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1644 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1649 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1650 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1654 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +UpgradeBehavior: install +FileExtensions: +- cvpdf +- poci +- ptaxrep +ProductCode: '{99364302-b74f-48e3-80f4-8e40984a1f9c}' +AppsAndFeaturesEntries: +- UpgradeCode: '{8AF6210B-6233-410C-B1CA-1534B7FD0266}' + InstallerType: msi +ElevationRequirement: elevationRequired +Installers: +- Architecture: x64 + InstallerUrl: https://profitdownload.afas.nl/download/PCC/PccSetup8.00.exe + InstallerSha256: F9B9DEF508975E7776A333883466B7CDF7598DB61AF891CA881543A4A33E3281 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.locale.en-US.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.locale.en-US.yaml new file mode 100644 index 0000000000000..ff8de85a61996 --- /dev/null +++ b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: AFAS.ProfitCommunicationCenter.8 +PackageVersion: 2.9.1400.800 +PackageLocale: en-US +Publisher: AFAS Software +PublisherUrl: https://www.afas.nl/ +PublisherSupportUrl: https://help.afas.nl/ +PrivacyUrl: https://www.afas.nl/privacy-statement +Author: AFAS Software B.V. +PackageName: Profit Communication Center 8 +PackageUrl: https://klant.afas.nl/update-center/downloads +License: Proprietary +Copyright: Copyright (C) AFAS Software B.V. 1998-2026 +ShortDescription: | + The Profit Communication Center (PCC) is a link between Profit and your local Microsoft Office. This allows you to easily submit, open, and edit files on your local computer within Profit. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.locale.zh-CN.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8998b9974c406 --- /dev/null +++ b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.locale.zh-CN.yaml @@ -0,0 +1,11 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: AFAS.ProfitCommunicationCenter.8 +PackageVersion: 2.9.1400.800 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: | + Profit Communication Center(PCC)是 Profit 与本地 Microsoft Office 之间的桥梁。通过它,您可以轻松 地在本地计算机上向 Profit 提交、打开和编辑文件。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.yaml new file mode 100644 index 0000000000000..cc22b176e1676 --- /dev/null +++ b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: AFAS.ProfitCommunicationCenter.8 +PackageVersion: 2.9.1400.800 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.installer.yaml b/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.installer.yaml new file mode 100644 index 0000000000000..e0c91dddebd62 --- /dev/null +++ b/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.installer.yaml @@ -0,0 +1,13 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: AbdulazizJHK.ZoomToolkit +PackageVersion: 2.0.0 +InstallerType: portable +Commands: +- zoom-toolkit +ReleaseDate: 2026-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/AbdulazizJHK/zoom-toolkit/releases/download/v2.0.0/Zoom.Toolkit.exe + InstallerSha256: 4974917ECC2D3236C234D95384821ACB8DBA46E3150526503C78A02D5A7C260F +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.locale.en-US.yaml b/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.locale.en-US.yaml new file mode 100644 index 0000000000000..f9fa5501fcee9 --- /dev/null +++ b/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.locale.en-US.yaml @@ -0,0 +1,31 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: AbdulazizJHK.ZoomToolkit +PackageVersion: 2.0.0 +PackageLocale: en-US +Publisher: AbdulazizJHK +PublisherUrl: https://github.com/AbdulazizJHK +PublisherSupportUrl: https://github.com/AbdulazizJHK/zoom-toolkit/issues +Author: AbdulazizJHK +PackageName: Zoom Toolkit +PackageUrl: https://github.com/AbdulazizJHK/zoom-toolkit +License: MIT +LicenseUrl: https://github.com/AbdulazizJHK/zoom-toolkit/blob/main/LICENSE +Copyright: Copyright (c) 2026 AbdulazizJHK +ShortDescription: Extract, clean, and date-sort audio from Zoom field recorders. +Description: >- + Zoom Toolkit is a bilingual (English / Arabic) desktop app for managing audio + recordings from Zoom field recorders. It extracts files from SD-card folder + structures into one directory, removes accidental short clips, and organizes + recordings into date-based folders. Features Gregorian and Hijri calendars, + drag-and-drop, dry-run previews, and a dark "Field Console" interface. +Moniker: zoom-toolkit +Tags: +- arabic +- audio +- field-recorder +- recording +- utility +- zoom +ReleaseNotesUrl: https://github.com/AbdulazizJHK/zoom-toolkit/releases/tag/v2.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.yaml b/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.yaml new file mode 100644 index 0000000000000..1028f78845eb1 --- /dev/null +++ b/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +PackageIdentifier: AbdulazizJHK.ZoomToolkit +PackageVersion: 2.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/a/AbdulazizJHK/ZoomToolkit/2.1.0/AbdulazizJHK.ZoomToolkit.installer.yaml b/manifests/a/AbdulazizJHK/ZoomToolkit/2.1.0/AbdulazizJHK.ZoomToolkit.installer.yaml new file mode 100644 index 0000000000000..85bcacaecdcc7 --- /dev/null +++ b/manifests/a/AbdulazizJHK/ZoomToolkit/2.1.0/AbdulazizJHK.ZoomToolkit.installer.yaml @@ -0,0 +1,13 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: AbdulazizJHK.ZoomToolkit +PackageVersion: 2.1.0 +InstallerType: portable +Commands: +- zoom-toolkit +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/AbdulazizJHK/zoom-toolkit/releases/download/v2.1.0/Zoom.Toolkit.exe + InstallerSha256: 48750164D673D8F0C835852A93680E872320EAF38DBAE80233EA767797A8E7A8 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/a/AbdulazizJHK/ZoomToolkit/2.1.0/AbdulazizJHK.ZoomToolkit.locale.en-US.yaml b/manifests/a/AbdulazizJHK/ZoomToolkit/2.1.0/AbdulazizJHK.ZoomToolkit.locale.en-US.yaml new file mode 100644 index 0000000000000..5d8466da68df8 --- /dev/null +++ b/manifests/a/AbdulazizJHK/ZoomToolkit/2.1.0/AbdulazizJHK.ZoomToolkit.locale.en-US.yaml @@ -0,0 +1,31 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: AbdulazizJHK.ZoomToolkit +PackageVersion: 2.1.0 +PackageLocale: en-US +Publisher: AbdulazizJHK +PublisherUrl: https://github.com/AbdulazizJHK +PublisherSupportUrl: https://github.com/AbdulazizJHK/zoom-toolkit/issues +Author: AbdulazizJHK +PackageName: Zoom Toolkit +PackageUrl: https://github.com/AbdulazizJHK/zoom-toolkit +License: MIT +LicenseUrl: https://github.com/AbdulazizJHK/zoom-toolkit/blob/main/LICENSE +Copyright: Copyright (c) 2026 AbdulazizJHK +ShortDescription: Extract, clean, and date-sort audio from Zoom field recorders. +Description: >- + Zoom Toolkit is a bilingual (English / Arabic) desktop app for managing audio + recordings from Zoom field recorders. It extracts files from SD-card folder + structures into one directory, removes accidental short clips, and organizes + recordings into date-based folders. Features Gregorian and Hijri calendars, + drag-and-drop, dry-run previews, and a dark "Field Console" interface. +Moniker: zoom-toolkit +Tags: +- arabic +- audio +- field-recorder +- recording +- utility +- zoom +ReleaseNotesUrl: https://github.com/AbdulazizJHK/zoom-toolkit/releases/tag/v2.1.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/a/AbdulazizJHK/ZoomToolkit/2.1.0/AbdulazizJHK.ZoomToolkit.yaml b/manifests/a/AbdulazizJHK/ZoomToolkit/2.1.0/AbdulazizJHK.ZoomToolkit.yaml new file mode 100644 index 0000000000000..2c6f3fd1ea8a7 --- /dev/null +++ b/manifests/a/AbdulazizJHK/ZoomToolkit/2.1.0/AbdulazizJHK.ZoomToolkit.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +PackageIdentifier: AbdulazizJHK.ZoomToolkit +PackageVersion: 2.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.installer.yaml b/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.installer.yaml new file mode 100644 index 0000000000000..d63ed11679548 --- /dev/null +++ b/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: autobrr.upbrr.gui +PackageVersion: 0.2.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: upbrr-gui.exe + PortableCommandAlias: upbrr +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- upbrr +ReleaseDate: 2026-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/autobrr/upbrr/releases/download/v0.2.2/upbrr-gui-v0.2.2-windows-x64.zip + InstallerSha256: CF92E1246B5031490E789926DB426E39B051C0ED16D8ECB76648891D67AC3945 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.locale.en-US.yaml b/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.locale.en-US.yaml new file mode 100644 index 0000000000000..8c25db7b0e012 --- /dev/null +++ b/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: autobrr.upbrr.gui +PackageVersion: 0.2.2 +PackageLocale: en-US +Publisher: autobrr +PublisherUrl: https://github.com/autobrr +PublisherSupportUrl: https://github.com/autobrr/upbrr/issues +Author: autobrr +PackageName: upbrr GUI +PackageUrl: https://github.com/autobrr/upbrr +License: GPL-2.0 +LicenseUrl: https://github.com/autobrr/upbrr/blob/HEAD/LICENSE +ShortDescription: upbrr is an upload preparation app for private-tracker workflows. +Moniker: upbrr-gui +ReleaseNotes: |- + What's Changed + - chore: credential protection robustness by @Audionut in #175 + - fix(gui): preserve pathed dupe tracker status by @Audionut in #176 + - chore: update mediainfo by @Audionut in #177 + Full Changelog: v0.2.1...v0.2.2 +ReleaseNotesUrl: https://github.com/autobrr/upbrr/releases/tag/v0.2.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.yaml b/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.yaml new file mode 100644 index 0000000000000..64795e4a5e0e7 --- /dev/null +++ b/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: autobrr.upbrr.gui +PackageVersion: 0.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.installer.yaml b/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.installer.yaml new file mode 100644 index 0000000000000..6d670658d695f --- /dev/null +++ b/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: BenjaminLarsson.Rtl_433.MSVC +PackageVersion: '25.02' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: rtl_433-rtlsdr-soapysdr-tls.exe + PortableCommandAlias: rtl_433-rtlsdr-soapysdr-tls +- RelativeFilePath: rtl_433-rtlsdr-soapysdr.exe + PortableCommandAlias: rtl_433-rtlsdr-soapysdr +- RelativeFilePath: rtl_433-rtlsdr-tls.exe + PortableCommandAlias: rtl_433-rtlsdr-tls +- RelativeFilePath: rtl_433-rtlsdr.exe + PortableCommandAlias: rtl_433-rtlsdr +- RelativeFilePath: rtl_433.exe + PortableCommandAlias: rtl_433 +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: uninstallPrevious +Dependencies: + PackageDependencies: + - PackageIdentifier: ShiningLight.OpenSSL.Dev +ReleaseDate: 2025-02-19 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/merbanan/rtl_433/releases/download/25.02/rtl_433-win-msvc-x64-25.02.zip + InstallerSha256: A221ED97101A95ABF9CF869E1D8EF0FA77BE7D02C8ABC0807480AE7BC01E1C20 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.locale.en-US.yaml b/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.locale.en-US.yaml new file mode 100644 index 0000000000000..0956473f4e2cb --- /dev/null +++ b/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: BenjaminLarsson.Rtl_433.MSVC +PackageVersion: '25.02' +PackageLocale: en-US +Publisher: Benjamin Larsson +PublisherUrl: https://github.com/merbanan +PublisherSupportUrl: https://github.com/merbanan/rtl_433/issues +Author: Benjamin Larsson +PackageName: Rtl_433 MSVC +PackageUrl: https://github.com/merbanan/rtl_433 +License: GPL-2.0 +LicenseUrl: https://github.com/merbanan/rtl_433/blob/master/COPYING +Copyright: Copyright © Benjamin Larsson +CopyrightUrl: https://github.com/merbanan/rtl_433/blob/master/COPYING +ShortDescription: Program to decode radio transmissions from devices on the ISM bands (and other frequencies) +Description: rtl_433 (despite the name) is a generic data receiver, mainly for the 433.92 MHz, 868 MHz (SRD), 315 MHz, 345 MHz, and 915 MHz ISM bands. +Moniker: rtl_433_msvc +Tags: +- 433mhz +- rf +- rtl-sdr +- sdr +- sensors +- signal-processing +ReleaseNotes: |- + Breaking Changes + - Changed state key value to ON/OFF, BREAKING CHANGE for Waveman-Switch (#2946) + Highlights + - Added support for General Motors TPMS (#3191) + - Added Globe Thermometer for 8-in-1 sensor to Bresser-7in1 (#3193) + - Added rain start detection feature for WS90 sensor (#3183) + - Added id key to IDM and NETIDM (#3164) + - Added decoder conf for Hormann remotes (#3162) + - Added client cert option to HA script (#3160) + - Added support for Revolt ZX-7717 power meter (#3125) + - Added support for Gridstream RF protocol from Landis & Gyr meters (#2616) + - Added decoder conf for Rako wireless lighting controls (#3124) + - Added support for Quinetic Switches and Sensors (#3098) + - Added support for DeltaDore X3D (#1911) + - Fixed Prometheus exposition format for metrics endpoint (#3107) + - Added support for Bresser/Explore Scientific ST1005H (#3092) + - Improved HA script to round battery level display (#3100) + - Fixed M-Bus Mode C Format B for wmbusmeters (#3091) + - Added support for Thermopro TP828B Meat Thermometers 2 probes (#3085) + - Added support for Arexx TL-3TSN, TSN-33MN and similar sensors (#3076) + - Improved decoder conf qx-30x to support multiple switches and multi-gang versions (#3008) + Changed + - Changed LandisGyr-GS location output (#3185) + - Changed Rubicson, Nexus, Solight-TE44, Baldr-Rain priority (#3175) + - Added energy msg to Revolt-ZX7717 + - Added broadcast flag for syslog output (#3171) + - Fixed argument handling in sigrok file generation (#3161) + - Fixed MQTT reconnect timer (closes #3145) + - Added reconnect throttling to Influx output (#3135) + - Added reconnect throttling to MQTT output (#3134) +ReleaseNotesUrl: https://github.com/merbanan/rtl_433/releases/tag/25.02 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.yaml b/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.yaml new file mode 100644 index 0000000000000..d39b76c286969 --- /dev/null +++ b/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: BenjaminLarsson.Rtl_433.MSVC +PackageVersion: '25.02' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/b7s/Plume/0.1.0/b7s.Plume.installer.yaml b/manifests/b/b7s/Plume/0.1.0/b7s.Plume.installer.yaml new file mode 100644 index 0000000000000..3dcdd7a170207 --- /dev/null +++ b/manifests/b/b7s/Plume/0.1.0/b7s.Plume.installer.yaml @@ -0,0 +1,22 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: b7s.Plume +PackageVersion: 0.1.0 +InstallerLocale: en-US +Platform: + - Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: exe +Scope: user +InstallModes: + - silent + - silentWithProgress +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +UpgradeBehavior: install +Installers: + - Architecture: x86 + InstallerUrl: https://github.com/b7s/plume/releases/download/plume-v0.1.0/Plume_0.1.0_x64-setup.exe + InstallerSha256: 52D203E1ACEF17F41EA55DD04AC1D26F5FFA6D45AAB1AC4041F26F716BF545DF +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/b7s/Plume/0.1.0/b7s.Plume.locale.en-US.yaml b/manifests/b/b7s/Plume/0.1.0/b7s.Plume.locale.en-US.yaml new file mode 100644 index 0000000000000..e0de55f41565a --- /dev/null +++ b/manifests/b/b7s/Plume/0.1.0/b7s.Plume.locale.en-US.yaml @@ -0,0 +1,29 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: b7s.Plume +PackageVersion: 0.1.0 +PackageLocale: en-US +Publisher: b7s +PublisherUrl: https://github.com/b7s/plume +PublisherSupportUrl: https://github.com/b7s/plume/issues +PackageName: Plume +PackageUrl: https://github.com/b7s/plume +License: MIT +LicenseUrl: https://github.com/b7s/plume/blob/master/LICENSE +ShortDescription: Floating typing assistant for Windows. Sits as a transparent overlay above your active window, listens via UI Automation, and serves up smart suggestions — spelling corrections, AI next-word predictions, translation, and text actions. +Description: Plume uses Windows UI Automation (UIAutomation TextPattern/ValuePattern) to detect what you are typing. When you stop typing, it reads the last word from the focused text field, runs it through Hunspell for spelling corrections, sends the surrounding context to your chosen LLM for next-word suggestions, and shows the results in a floating transparent overlay. Click a chip to copy or insert. +Moniker: plume +Tags: + - ai + - assistant + - clipboard + - llm + - overlay + - spellcheck + - suggestions + - transcription + - translation + - typing + - uiautomation + - utility +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/b7s/Plume/0.1.0/b7s.Plume.yaml b/manifests/b/b7s/Plume/0.1.0/b7s.Plume.yaml new file mode 100644 index 0000000000000..f1cf8faf7c9b1 --- /dev/null +++ b/manifests/b/b7s/Plume/0.1.0/b7s.Plume.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: b7s.Plume +PackageVersion: 0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.installer.yaml b/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.installer.yaml new file mode 100644 index 0000000000000..32e688d1df202 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.703 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-07-14" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.703/ipsw_3.1.703_windows_arm64.zip + InstallerSha256: 2e72114893f661461d17ec7ca1df2467df5e9e05d9afd31b3678f88810fad7d9 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.703/ipsw_3.1.703_windows_x86_64.zip + InstallerSha256: 697a616be32ec822063158861b47d305cbdbca80702b6bc0095c6f8d2c10354a + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.locale.en-US.yaml b/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.locale.en-US.yaml new file mode 100644 index 0000000000000..0402ca91e26fb --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.703 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipsw +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: iOS/macOS Research Swiss Army Knife +Moniker: ipsw +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.yaml b/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.yaml new file mode 100644 index 0000000000000..2e454207e824f --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.703 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/blacktop/ipswd/3.1.703/blacktop.ipswd.installer.yaml b/manifests/b/blacktop/ipswd/3.1.703/blacktop.ipswd.installer.yaml new file mode 100644 index 0000000000000..08e60f6745604 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.703/blacktop.ipswd.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.703 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-07-14" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.703/ipswd_3.1.703_windows_x86_64.zip + InstallerSha256: f0e13d016f73419b773366dbe720f1c5911cf24f0770897edad47ac7bc0c131e + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.703/ipswd_3.1.703_windows_arm64.zip + InstallerSha256: 0776322cc986eb48200afa554ad2b2f5ee277953cef181fbe8af9b69d1f4e0e4 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/blacktop/ipswd/3.1.703/blacktop.ipswd.locale.en-US.yaml b/manifests/b/blacktop/ipswd/3.1.703/blacktop.ipswd.locale.en-US.yaml new file mode 100644 index 0000000000000..c85209be9fc52 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.703/blacktop.ipswd.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.703 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipswd +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: ipsw - Daemon +Moniker: ipswd +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/blacktop/ipswd/3.1.703/blacktop.ipswd.yaml b/manifests/b/blacktop/ipswd/3.1.703/blacktop.ipswd.yaml new file mode 100644 index 0000000000000..227e43eb24a34 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.703/blacktop.ipswd.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.703 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/ChannelCorporation/ChannelTalkforDesktop/12.0.1/ChannelCorporation.ChannelTalkforDesktop.installer.yaml b/manifests/c/ChannelCorporation/ChannelTalkforDesktop/12.0.1/ChannelCorporation.ChannelTalkforDesktop.installer.yaml new file mode 100644 index 0000000000000..b2ea18f4a0710 --- /dev/null +++ b/manifests/c/ChannelCorporation/ChannelTalkforDesktop/12.0.1/ChannelCorporation.ChannelTalkforDesktop.installer.yaml @@ -0,0 +1,25 @@ +# Automatically updated by the winget bot at 2026/Jul/14 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ChannelCorporation.ChannelTalkforDesktop +PackageVersion: 12.0.1 +InstallerType: exe +InstallModes: +- silent +InstallerSwitches: + Silent: -s +Installers: +- Architecture: x64 + InstallerUrl: https://channel.io/download/windows-64 + InstallerSha256: 3B359EE7AE8446CB923F04D67B76AE2DAF2E0FC4A38C351F25EE867EE8300E03 + AppsAndFeaturesEntries: + - Publisher: Channel Corporation + ProductCode: Channel +- Architecture: x86 + InstallerUrl: https://channel.io/download/windows + InstallerSha256: C34BF9774E858CB6ADD5F2844C2857AB5359553FCF8B1792B1F577D6F9102FE4 + AppsAndFeaturesEntries: + - Publisher: Channel Corporation + ProductCode: Channel +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/ChannelCorporation/ChannelTalkforDesktop/12.0.1/ChannelCorporation.ChannelTalkforDesktop.locale.en-US.yaml b/manifests/c/ChannelCorporation/ChannelTalkforDesktop/12.0.1/ChannelCorporation.ChannelTalkforDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..09bc2b431e894 --- /dev/null +++ b/manifests/c/ChannelCorporation/ChannelTalkforDesktop/12.0.1/ChannelCorporation.ChannelTalkforDesktop.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2026/Jul/14 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ChannelCorporation.ChannelTalkforDesktop +PackageVersion: 12.0.1 +PackageLocale: en-US +Publisher: Channel Corporation +PublisherUrl: https://channel.io/ +PrivacyUrl: https://channel.io/privacy +PackageName: Channel Talk for Desktop +License: Proprietary +Copyright: Copyright © 2024 Channel Corporation +ShortDescription: Channel Talk for Desktop +Moniker: channeltalk +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/ChannelCorporation/ChannelTalkforDesktop/12.0.1/ChannelCorporation.ChannelTalkforDesktop.yaml b/manifests/c/ChannelCorporation/ChannelTalkforDesktop/12.0.1/ChannelCorporation.ChannelTalkforDesktop.yaml new file mode 100644 index 0000000000000..90dc9405e28ee --- /dev/null +++ b/manifests/c/ChannelCorporation/ChannelTalkforDesktop/12.0.1/ChannelCorporation.ChannelTalkforDesktop.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/Jul/14 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ChannelCorporation.ChannelTalkforDesktop +PackageVersion: 12.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.installer.yaml b/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.installer.yaml new file mode 100644 index 0000000000000..2c777bd5a60a0 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.installer.yaml @@ -0,0 +1,21 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Chromium.ChromeDriver +PackageVersion: 150.0.7871.124 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2026-07-13 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win32/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/150.0.7871.124/win32/chromedriver-win32.zip + InstallerSha256: 4FB5C3B320C3812015212D3C0DF3CD0A91ADBA73458BA3AF31F8F5AC918F72D0 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win64/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/150.0.7871.124/win64/chromedriver-win64.zip + InstallerSha256: EFAAD86697E9CAE04AEA24B8A49DB49605E276F5B308C8AD903868977DCEE793 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.locale.en-US.yaml b/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.locale.en-US.yaml new file mode 100644 index 0000000000000..eb95c1e1b2d01 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Chromium.ChromeDriver +PackageVersion: 150.0.7871.124 +PackageLocale: en-US +Publisher: Chromium +PublisherUrl: https://www.chromium.org/ +PackageName: ChromeDriver +PackageUrl: https://chromedriver.chromium.org/ +License: Proprietary +Copyright: Copyright 2015 The Chromium Authors +ShortDescription: An open source tool for automated testing of webapps across many browsers +Description: WebDriver is an open source tool for automated testing of webapps across many browsers. It provides capabilities for navigating to web pages, user input, JavaScript execution, and more. ChromeDriver is a standalone server that implements the W3C WebDriver standard. ChromeDriver is available for Chrome on Android and Chrome on Desktop (Mac, Linux, Windows and ChromeOS). +Documentations: +- DocumentUrl: https://chromedriver.chromium.org/documentation +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.yaml b/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.yaml new file mode 100644 index 0000000000000..46662ffc978c4 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Chromium.ChromeDriver +PackageVersion: 150.0.7871.124 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.installer.yaml b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.installer.yaml new file mode 100644 index 0000000000000..1982f850433fe --- /dev/null +++ b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.CallCenterEdition +PackageVersion: 6.2.16.20260615 +InstallerType: msi +InstallerSwitches: + InstallLocation: INSTALLDIR="" +FileExtensions: +- rxs +- tid +ProductCode: '{321E30CA-A06E-4A14-814B-CB626D80E33F}' +AppsAndFeaturesEntries: +- DisplayName: RSIGuard Stretch Edition +Installers: +- Architecture: x86 + InstallerUrl: https://www.rsiguard.com/download/pkgs/Trials/RSIGuard-Install-v6.2.16CC.msi + InstallerSha256: 628FFAF16A101F2B0B96281230A2610008B3D2C9FE27ED21DCE32B0F76660691 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.locale.en-US.yaml b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.locale.en-US.yaml new file mode 100644 index 0000000000000..9ed27cbac794a --- /dev/null +++ b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.CallCenterEdition +PackageVersion: 6.2.16.20260615 +PackageLocale: en-US +Publisher: Cority +PublisherUrl: https://rsiguard.com/ +PublisherSupportUrl: https://rsiguard.com/productsupport/ +PrivacyUrl: https://www.cority.com/legal-center/privacy-policy/ +Author: Cority Software Inc +PackageName: RSIGuard Call Center Edition +PackageUrl: https://www.rsiguard.com/download/pkg.php?id=wincce +License: Proprietary +# LicenseUrl: +Copyright: Copyright 1999 - 2026 Cority, Inc. +# CopyrightUrl: +ShortDescription: A proven solution for repetitive Strain Injuries +Description: |- + Cority’s RSIGuard is award-winning desktop ergonomic software that helps prevent and manage repetitive strain injuries (RSI) for computer users. + It includes tools to promote healthier computer use, reduce exposure, and identify ways you can lower your risk. + Around the globe, health and safety managers, ergonomists, health practitioners, and individual computer users rely on RSIGuard’s comprehensive set of tools. +# Moniker: +Tags: +- health +- wellbeing +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://www.rsiguard.com/purchase/instant.php +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.locale.zh-CN.yaml b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..bea26aa5a06bf --- /dev/null +++ b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.CallCenterEdition +PackageVersion: 6.2.16.20260615 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 针对重复性累积损伤的成熟解决方案 +Description: |- + Cority 的 RSIGuard 是一款屡获殊荣的桌面人体工程学软件,旨在帮助电脑用户预防和管理重复性劳损 (RSI)。 + 它包含了一系列工具,用于提倡更健康的电脑使用习惯、减少风险接触,并识别降低风险的方法。 + 在全球范围内,健康与安全经理、人体工程学专家、健康从业者以及个人电脑用户都信赖 RSIGuard 提供的整套综合工具。 +# Moniker: +Tags: +- 健康 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.yaml b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.yaml new file mode 100644 index 0000000000000..0241e671c8f3a --- /dev/null +++ b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.CallCenterEdition +PackageVersion: 6.2.16.20260615 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.installer.yaml b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.installer.yaml new file mode 100644 index 0000000000000..93c5c611d9d7a --- /dev/null +++ b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.StretchEdition +PackageVersion: 6.2.16.20260615 +InstallerType: msi +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +FileExtensions: +- rxs +- tid +ProductCode: '{2A155957-B4A2-434F-BF88-5FEA121B72DE}' +Installers: +- Architecture: x86 + InstallerUrl: https://www.rsiguard.com/download/pkgs/Trials/RSIGuard-Install-v6.2.16SB.msi + InstallerSha256: D802BD0283A0424AB3DFE38EB1494E0272F3AA62F1DF08B143976D880B601FC3 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.locale.en-US.yaml b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.locale.en-US.yaml new file mode 100644 index 0000000000000..31b24023e714a --- /dev/null +++ b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.StretchEdition +PackageVersion: 6.2.16.20260615 +PackageLocale: en-US +Publisher: Cority +PublisherUrl: https://rsiguard.com/ +PublisherSupportUrl: https://rsiguard.com/productsupport/ +PrivacyUrl: https://www.cority.com/legal-center/privacy-policy/ +Author: Cority Software Inc +PackageName: RSIGuard Stretch Edition +PackageUrl: https://www.rsiguard.com/download/pkg.php?id=winse +License: Proprietary +# LicenseUrl: +Copyright: Copyright 1999 - 2026 Cority, Inc. +# CopyrightUrl: +ShortDescription: A proven solution for repetitive Strain Injuries +Description: |- + Cority’s RSIGuard is award-winning desktop ergonomic software that helps prevent and manage repetitive strain injuries (RSI) for computer users. + It includes tools to promote healthier computer use, reduce exposure, and identify ways you can lower your risk. + Around the globe, health and safety managers, ergonomists, health practitioners, and individual computer users rely on RSIGuard’s comprehensive set of tools. +# Moniker: +Tags: +- health +- wellbeing +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://www.rsiguard.com/purchase/instant.php +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.locale.zh-CN.yaml b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..97ccfaa1a2c42 --- /dev/null +++ b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.StretchEdition +PackageVersion: 6.2.16.20260615 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 针对重复性累积损伤的成熟解决方案 +Description: |- + Cority 的 RSIGuard 是一款屡获殊荣的桌面人体工程学软件,旨在帮助电脑用户预防和管理重复性劳损 (RSI)。 + 它包含了一系列工具,用于提倡更健康的电脑使用习惯、减少风险接触,并识别降低风险的方法。 + 在全球范围内,健康与安全经理、人体工程学专家、健康从业者以及个人电脑用户都信赖 RSIGuard 提供的整套综合工具。 +# Moniker: +Tags: +- 健康 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.yaml b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.yaml new file mode 100644 index 0000000000000..2ed24a1b3eb77 --- /dev/null +++ b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.StretchEdition +PackageVersion: 6.2.16.20260615 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.installer.yaml b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.installer.yaml new file mode 100644 index 0000000000000..b5986a134cfb8 --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: can1357.oh-my-pi +PackageVersion: 16.5.1 +InstallerType: portable +Commands: +- omp +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/can1357/oh-my-pi/releases/download/v16.5.1/omp-windows-x64.exe + InstallerSha256: C995730443A29EC7A5149B681BC23057B0C5DDC50B7FF39D2E67905F88780EA0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.locale.en-US.yaml b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.locale.en-US.yaml new file mode 100644 index 0000000000000..4be4689d28c6d --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: can1357.oh-my-pi +PackageVersion: 16.5.1 +PackageLocale: en-US +Publisher: Can Bölük +PublisherUrl: https://can.ac/ +PublisherSupportUrl: https://github.com/can1357/oh-my-pi/issues +Author: Can Bölük +PackageName: oh-my-pi +PackageUrl: https://omp.sh/ +License: MIT +LicenseUrl: https://github.com/can1357/oh-my-pi/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2025 Mario Zechner + Copyright (c) 2025-2026 Can Bölük +ShortDescription: ⌥ AI Coding agent for the terminal — hash-anchored edits, optimized tool harness, LSP, Python, browser, subagents, and more +Description: |- + omp is a terminal-first coding agent that runs on your machine, talks to any provider, and treats sessions like git branches. + omp (pronounced “oh-em-pi”, binary omp) is a fork of Mario Zechner’s Pi. It runs as a single Bun process, drives any model provider you have credentials for, and ships a flat tool surface the model uses to read code, run commands, edit files, drive a debugger, and spawn subagents that coordinate over an in-process IRC bus. + Sessions persist as JSONL under ~/.omp/agent/sessions/. You resume, fork, branch, and share them. Settings, credentials, plugins, and caches all live under ~/.omp/agent/. Nothing leaves the machine unless you call a tool that does. +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- programming +ReleaseNotesUrl: https://github.com/can1357/oh-my-pi/releases/tag/v16.5.1 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://omp.sh/docs +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.locale.zh-CN.yaml b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d7ff2047c6d0f --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: can1357.oh-my-pi +PackageVersion: 16.5.1 +PackageLocale: zh-CN +ShortDescription: ⌥ 用于终端的 AI 编码智能体 —— 哈希锚定编辑、优化的工具集成、LSP、Python、浏览器、子智能体等更多功能 +Description: |- + omp 是一个以终端为先的编码智能体,运行在你的机器上,可连接任意提供商,并将会话视为 git 分支处理。 + omp(读作“oh-em-pi”,二进制名为 omp)是 Mario Zechner 的 Pi 项目的一个分支。它作为一个独立的 Bun 进程运行,驱动任何你拥有凭据的模型提供商,并提供一个扁平化的工具接口,供模型用于读取代码、执行命令、编辑文件、控制调试器,以及生成通过进程内 IRC 总线进行协作的子智能体。 + 会话以 JSONL 格式持久化存储在 ~/.omp/agent/sessions/ 目录下。你可以恢复、分叉、分支和共享这些会话。设置、凭据、插件和缓存全部存放在 ~/.omp/agent/ 目录中。除非你调用某个会向外传输数据的工具,否则没有任何内容会离开你的机器。 +Tags: +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://omp.sh/docs +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.yaml b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.yaml similarity index 76% rename from manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.yaml rename to manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.yaml index 95788653c17ac..f12899c43e650 100644 --- a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.yaml +++ b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: GaoyangZhang.EasyClaw -PackageVersion: 1.7.1 +PackageIdentifier: can1357.oh-my-pi +PackageVersion: 16.5.1 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.installer.yaml b/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.installer.yaml new file mode 100644 index 0000000000000..8b89950cc2b26 --- /dev/null +++ b/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.installer.yaml @@ -0,0 +1,21 @@ +PackageIdentifier: chuccp.win-sshpass +PackageVersion: 0.6.2 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: win-sshpass.exe +Scope: machine +Commands: +- win-sshpass +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/chuccp/win-sshpass/releases/download/v0.6.2/win-sshpass-v0.6.2-amd64.zip + InstallerSha256: 4F391B8D4867D923600D49CF6ED0803C80464A3362C664518B33B6B319999F28 +- Architecture: arm64 + InstallerUrl: https://github.com/chuccp/win-sshpass/releases/download/v0.6.2/win-sshpass-v0.6.2-arm64.zip + InstallerSha256: 75FE2A33BBE87EBD3E2B160253DA98A653E5424715522716034D6C29F7D01732 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.locale.en-US.yaml b/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.locale.en-US.yaml new file mode 100644 index 0000000000000..37affaaf12d99 --- /dev/null +++ b/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.locale.en-US.yaml @@ -0,0 +1,22 @@ +PackageIdentifier: chuccp.win-sshpass +PackageVersion: 0.6.2 +PackageLocale: en-US +Publisher: chuccp +PublisherUrl: https://github.com/chuccp +PackageName: win-sshpass +PackageUrl: https://github.com/chuccp/win-sshpass +License: Apache-2.0 +LicenseUrl: https://github.com/chuccp/win-sshpass/blob/main/LICENSE +ShortDescription: Windows SSHpass - SSH with password authentication from the command line +Description: A Windows implementation of sshpass, providing password or private key authentication for SSH, SFTP file transfer, SCP/rsync-style file transfer, interactive shell with raw terminal mode, and config file support. +Tags: + - ssh + - sshpass + - sftp + - scp + - rsync + - cli + - windows +ReleaseNotesUrl: https://github.com/chuccp/win-sshpass/releases/tag/v0.6.2 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.yaml b/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.yaml new file mode 100644 index 0000000000000..822419729bcae --- /dev/null +++ b/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.yaml @@ -0,0 +1,5 @@ +PackageIdentifier: chuccp.win-sshpass +PackageVersion: 0.6.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/d/DavidEngelhart/Termpolis/1.26.1/DavidEngelhart.Termpolis.installer.yaml b/manifests/d/DavidEngelhart/Termpolis/1.26.1/DavidEngelhart.Termpolis.installer.yaml new file mode 100644 index 0000000000000..438017c6111fc --- /dev/null +++ b/manifests/d/DavidEngelhart/Termpolis/1.26.1/DavidEngelhart.Termpolis.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DavidEngelhart.Termpolis +PackageVersion: 1.26.1 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 7bff3240-c600-54e1-9164-19e9bb016508 +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/codedev-david/termpolis/releases/download/v1.26.1/Termpolis.Setup.1.26.1.exe + InstallerSha256: 0DFB5CE536D812554824B462A4BE38C85279D48D94A49328096A05D807E98A61 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DavidEngelhart/Termpolis/1.26.1/DavidEngelhart.Termpolis.locale.en-US.yaml b/manifests/d/DavidEngelhart/Termpolis/1.26.1/DavidEngelhart.Termpolis.locale.en-US.yaml new file mode 100644 index 0000000000000..f79ccd4a462e9 --- /dev/null +++ b/manifests/d/DavidEngelhart/Termpolis/1.26.1/DavidEngelhart.Termpolis.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DavidEngelhart.Termpolis +PackageVersion: 1.26.1 +PackageLocale: en-US +Publisher: Termpolis +PublisherUrl: https://github.com/codedev-david +PublisherSupportUrl: https://github.com/codedev-david/termpolis/issues +PrivacyUrl: https://github.com/codedev-david/termpolis/blob/HEAD/PRIVACY.md +Author: David Engelhart +PackageName: Termpolis +PackageUrl: https://termpolis.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/codedev-david/termpolis/blob/HEAD/LICENSE +Copyright: Copyright 2026 David Engelhart +ShortDescription: The open-source multi-agent terminal where Claude, Codex, Gemini, and Qwen work together as a team — without your source code leaving the machine. +Description: |- + Termpolis is a cross-platform desktop terminal manager (Windows, macOS, Linux) built on Electron + React + TypeScript with node-pty powering the underlying shells. It ships as a native app, code signed on Windows, notarized on macOS. + What makes it different: + - Secure AI-assisted development. Built-in AI Security Center auto-scans every AI prompt against 70+ secret patterns, enforces Gemini paid-tier mode, and keeps an auditable JSONL log of every AI-agent terminal launch — every check runs locally. + - Multi-agent swarm. Claude Code, Codex, Gemini CLI, and Qwen Code work together on a task. A dedicated Claude Code instance acts as the conductor. + - MCP server baked in. AI agents control Termpolis via Model Context Protocol, open terminals, run commands, send messages. + - Transparent routing. Every subtask shows which agent got it, why, and what it cost. + - Activity observability. Every token, every tool call, every message from every agent is visible in real time. + - Intervention controls. Pause, cancel, or steer any agent mid-task without leaving the feed. + - Shared memory. A RAG-backed memory store that any agent can read and write via MCP. + - MCP-native end to end. All four agents speak MCP — no terminal-output parsers, no glue scripts, no bridge code paths. + - Share-ready output. One shortcut from terminal to Slack, Teams, or a PR — see Copy for Slack / Teams / PRs. +Tags: +- ai +- command-line +- console +- terminal +ReleaseNotes: |- + Full Changelog: https://github.com/codedev-david/termpolis/compare/v1.26.0...v1.26.1 + Full Changelog: https://github.com/codedev-david/termpolis/compare/v1.26.0...v1.26.1 + Full Changelog: https://github.com/codedev-david/termpolis/compare/v1.26.0...v1.26.1 +ReleaseNotesUrl: https://github.com/codedev-david/termpolis/releases/tag/v1.26.1 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://termpolis.com/docs.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DavidEngelhart/Termpolis/1.26.1/DavidEngelhart.Termpolis.locale.zh-CN.yaml b/manifests/d/DavidEngelhart/Termpolis/1.26.1/DavidEngelhart.Termpolis.locale.zh-CN.yaml new file mode 100644 index 0000000000000..34cb05007f18b --- /dev/null +++ b/manifests/d/DavidEngelhart/Termpolis/1.26.1/DavidEngelhart.Termpolis.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: DavidEngelhart.Termpolis +PackageVersion: 1.26.1 +PackageLocale: zh-CN +ShortDescription: 这是一个让 Claude、Codex、Gemini 和 Qwen 协同工作的开源多智能体终端——您的源代码完全不会离开本机。 +Description: |- + Termpolis 是一款基于 Electron + React + TypeScript 构建的跨平台桌面终端管理器(支持 Windows、macOS、Linux 系统),由 node-pty 提供底层终端服务支持。它以原生应用形式发布,在 Windows 平台完成代码签名,在 macOS 平台完成公证。 + 它的差异化特点: + - 安全的人工智能辅助开发。内置 AI 安全中心,可针对超过 70 种密钥模式自动扫描每一条 AI 提示,强制启用 Gemini 付费层级模式,并为每一次 AI 智能体终端启动留存可审计的 JSONL 日志——所有检查均在本地运行。 + - 多智能体协作集群。Claude Code、Codex、Gemini CLI 与 Qwen Code 可协同完成一项任务,由专属的 Claude Code 实例担任调度协调者。 + - 内置 MCP 服务器。AI 智能体可通过模型上下文协议(Model Context Protocol)控制 Termpolis,打开终端、运行命令、发送消息。 + - 路由透明化。每一项子任务都会明确显示由哪个智能体承接、承接原因以及产生的成本。 + - 活动可观测。所有智能体产生的每一个 token、每一次工具调用、每一条消息都支持实时查看。 + - 人工干预控制。无需退出任务流,即可在任务执行中途暂停、取消或引导任意智能体。 + - 共享存储。基于检索增强生成(RAG)构建的存储库,所有智能体都可通过 MCP 进行读写。 + - 端到端原生支持 MCP。四款智能体均原生支持 MCP——无需终端输出解析器、无需粘合脚本、无需桥接代码路径。 + - 输出可直接分享。只需一次快捷键操作,即可将终端内容分享至 Slack、Teams 或拉取请求——详见「复制至 Slack/Teams/拉取请求」功能。 +Tags: +- 人工智能 +- 命令行 +- 控制台 +- 终端 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://termpolis.com/docs.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DavidEngelhart/Termpolis/1.26.1/DavidEngelhart.Termpolis.yaml b/manifests/d/DavidEngelhart/Termpolis/1.26.1/DavidEngelhart.Termpolis.yaml new file mode 100644 index 0000000000000..fcff0e66efa78 --- /dev/null +++ b/manifests/d/DavidEngelhart/Termpolis/1.26.1/DavidEngelhart.Termpolis.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: DavidEngelhart.Termpolis +PackageVersion: 1.26.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.installer.yaml b/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.installer.yaml new file mode 100644 index 0000000000000..61b45c509cfed --- /dev/null +++ b/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DeskRipple.DeskRipple +PackageVersion: 0.1.2 +InstallerLocale: en-US +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ReleaseDate: 2026-06-25 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DeskRipple/deskripple/releases/download/v0.1.2/DeskRipple-beta-Setup.exe + InstallerSha256: 23863E505FF82644BDB28B3761C29A7B435036129CC0AE36F08DC4E58530EA0D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.locale.en-US.yaml b/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.locale.en-US.yaml new file mode 100644 index 0000000000000..776d6d56861d1 --- /dev/null +++ b/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DeskRipple.DeskRipple +PackageVersion: 0.1.2 +PackageLocale: en-US +Publisher: DeskRipple +PublisherUrl: https://deskripple.com/ +PublisherSupportUrl: https://github.com/DeskRipple/deskripple/issues +PrivacyUrl: https://github.com/DeskRipple/deskripple/blob/main/PRIVACY.md +Author: DeskRipple +PackageName: DeskRipple +PackageUrl: https://deskripple.com/ +License: Proprietary +LicenseUrl: https://github.com/DeskRipple/deskripple/blob/main/EULA.md +Copyright: Copyright (c) 2026 DeskRipple +ShortDescription: Expandable desktop folders for Windows 11. +Description: DeskRipple puts folder icons directly on your Windows 11 desktop — they sit behind your windows like native icons and expand into shortcut panels on hover or click, then collapse back to a single icon. Five expand styles (Grid, Fan, Column, Row, Ring), acrylic-blur panels, live desktop-grid snapping, and Per-Monitor V2 DPI awareness. Drag in .lnk shortcuts, .url web links, files, and Microsoft Store apps; DeskRipple keeps its own copy so a dock survives the original being moved or deleted. Dragging a desktop shortcut into a dock safely archives the original (it returns when you remove the entry or uninstall). Switch between named desktop profiles. Free during the public beta; a one-time paid version is planned later. +Moniker: deskripple +Tags: +- desktop +- dock +- folders +- organizer +- productivity +- shortcuts +- windows-11 +ReleaseNotesUrl: https://github.com/DeskRipple/deskripple/releases/tag/v0.1.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.yaml b/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.yaml new file mode 100644 index 0000000000000..626c715e33e93 --- /dev/null +++ b/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: DeskRipple.DeskRipple +PackageVersion: 0.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.installer.yaml b/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.installer.yaml new file mode 100644 index 0000000000000..b0148fb3e1f68 --- /dev/null +++ b/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.installer.yaml @@ -0,0 +1,47 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Devolutions.UniGetUI +PackageVersion: 2026.2.3 +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{889610CC-4337-4BDB-AC3B-4F21806C0BDE}_is1' +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- ProductCode: '{889610CC-4337-4BDB-AC3B-4F21806C0BDE}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://cdn.devolutions.net/download/Devolutions.UniGetUI.win-x64.2026.2.3.0.exe + InstallerSha256: D82581E538C96FB0D1AAB3A3C36BD3B44D10C1DF1357EBD4F18F37454B748DEE + InstallerSwitches: + Custom: /CURRENTUSER /NoWinGet /NoAutoStart +- Architecture: x64 + Scope: machine + InstallerUrl: https://cdn.devolutions.net/download/Devolutions.UniGetUI.win-x64.2026.2.3.0.exe + InstallerSha256: D82581E538C96FB0D1AAB3A3C36BD3B44D10C1DF1357EBD4F18F37454B748DEE + InstallerSwitches: + Custom: /ALLUSERS /NoWinGet /NoAutoStart + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\UniGetUI' +- Architecture: arm64 + Scope: user + InstallerUrl: https://cdn.devolutions.net/download/Devolutions.UniGetUI.win-arm64.2026.2.3.0.exe + InstallerSha256: 4CDE5D7AB842E294389998AA11FBFB440FC63CB1B509A6E4B97D35728D467157 + InstallerSwitches: + Custom: /CURRENTUSER /NoWinGet /NoAutoStart +- Architecture: arm64 + Scope: machine + InstallerUrl: https://cdn.devolutions.net/download/Devolutions.UniGetUI.win-arm64.2026.2.3.0.exe + InstallerSha256: 4CDE5D7AB842E294389998AA11FBFB440FC63CB1B509A6E4B97D35728D467157 + InstallerSwitches: + Custom: /ALLUSERS /NoWinGet /NoAutoStart + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\UniGetUI' +ManifestType: installer +ManifestVersion: 1.12.0 + diff --git a/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.locale.en-US.yaml b/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.locale.en-US.yaml new file mode 100644 index 0000000000000..182682387eb66 --- /dev/null +++ b/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Devolutions.UniGetUI +PackageVersion: 2026.2.3 +PackageLocale: en-US +Publisher: Devolutions Inc. +PublisherUrl: https://devolutions.net/ +PublisherSupportUrl: https://devolutions.net/support/ +PackageName: UniGetUI +PackageUrl: https://devolutions.net/unigetui/ +License: MIT +LicenseUrl: https://github.com/Devolutions/UniGetUI/blob/HEAD/LICENSE +ShortDescription: The Graphical Interface for your package managers. +Description: UniGetUI is an intuitive GUI for the most common CLI package managers on Windows, including WinGet, Scoop, Chocolatey, Pip, Npm, .NET Tool, PowerShell Gallery, and more. With UniGetUI, you can discover, install, update, and uninstall software from multiple package managers through one interface. +Moniker: unigetui +Tags: +- chocolatey +- dotnet-tool +- microsoft-store +- npm +- pip +- powershell-gallery +- scoop +- uniget-ui +- winget +- winget-ui +- wingetui +Copyright: Copyright (c) 2026 Devolutions Inc. +ReleaseNotesUrl: https://github.com/Devolutions/UniGetUI/releases/tag/v2026.2.3 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 + diff --git a/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.yaml b/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.yaml new file mode 100644 index 0000000000000..e1e5114250b9c --- /dev/null +++ b/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Devolutions.UniGetUI +PackageVersion: 2026.2.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 + diff --git a/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.installer.yaml b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.installer.yaml new file mode 100644 index 0000000000000..7e3d85ab96bcd --- /dev/null +++ b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DigiDNA.iMazingProfileEditor +PackageVersion: 2.0.4.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- mobileconfig +ProductCode: '{75D09EE4-516E-418F-8F16-71C9666D2E3E}_is1' +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://downloads.imazing.com/windows/iMazing-Profile-Editor/2.0.4/iMazing_Profile_Editor_2.0.4.exe + InstallerSha256: 1BD94AD14D40321761A2C6415C6BC716FE975117C845DD24E1A81787FE1BB6A9 +- Architecture: x64 + InstallerUrl: https://downloads.imazing.com/windows/iMazing-Profile-Editor/2.0.4/iMazing_Profile_Editor_2.0.4.exe + InstallerSha256: 1BD94AD14D40321761A2C6415C6BC716FE975117C845DD24E1A81787FE1BB6A9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.locale.en-US.yaml b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.locale.en-US.yaml new file mode 100644 index 0000000000000..e2e9021e512e4 --- /dev/null +++ b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DigiDNA.iMazingProfileEditor +PackageVersion: 2.0.4.0 +PackageLocale: en-US +Publisher: DigiDNA +PublisherUrl: https://digidna.ch/ +PublisherSupportUrl: https://support.imazing.com/ +PrivacyUrl: https://imazing.com/privacy-policy +Author: DigiDNA SARL +PackageName: iMazing Profile Editor +PackageUrl: https://imazing.com/profile-editor +License: Freeware +LicenseUrl: https://imazing.com/uploads/iMazing-EULA.pdf +Copyright: Copyright © DigiDNA SARL, 2008-2026. All rights reserved. +ShortDescription: Create, Edit, and Sign Apple Configuration Profiles +Description: iMazing Profile Editor is a free app to easily define settings for deployment on Apple devices. +Tags: +- apple +- configuration +- configuration-profile +- configurator +- deploy +- deployment +- ios +- ipad +- iphone +- ipod +- mobileconfig +- profile +ReleaseNotes: |- + Fixes in 2.0.4 + - Fixed an issue that led to an app crash when working with files on external drives +ReleaseNotesUrl: https://downloads.imazing.com/windows/iMazing-Profile-Editor/2.0.4/release-notes.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.locale.zh-CN.yaml b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d55edb4e4631e --- /dev/null +++ b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: DigiDNA.iMazingProfileEditor +PackageVersion: 2.0.4.0 +PackageLocale: zh-CN +Publisher: DigiDNA +PublisherUrl: https://digidna.ch/ +PublisherSupportUrl: https://support.imazing.com/ +PrivacyUrl: https://imazing.com/privacy-policy +Author: DigiDNA SARL +PackageName: iMazing Profile Editor +PackageUrl: https://imazing.com/zh/profile-editor +License: 免费软件 +LicenseUrl: https://imazing.com/uploads/iMazing-EULA.pdf +Copyright: Copyright © DigiDNA SARL, 2008-2026. All rights reserved. +ShortDescription: 创建、编辑和签署 Apple 配置描述文件 +Description: iMazing Profile Editor 是一款免费应用,可轻松定义 Apple 设备上的部署设置。 +Tags: +- ios +- ipad +- iphone +- ipod +- mobileconfig +- 描述文件 +- 苹果 +- 部署 +- 配置 +ReleaseNotesUrl: https://downloads.imazing.com/windows/iMazing-Profile-Editor/2.0.4/release-notes.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.yaml b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.yaml new file mode 100644 index 0000000000000..f2d41c3bf3a2f --- /dev/null +++ b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: DigiDNA.iMazingProfileEditor +PackageVersion: 2.0.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.1041/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.1041/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..e5d0348b94158 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.1041/Discord.Discord.Canary.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.1041 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordCanary +Installers: +- Architecture: x64 + InstallerUrl: https://canary.dl2.discordapp.net/distro/app/canary/win/x64/1.0.1041/DiscordCanarySetup.exe + InstallerSha256: F75EFE8A283EC8A595BE81591FB432C0D313401794FAE1F96C9DEA06448216BD +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.1041/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.1041/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..d214ea5fa5ac9 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.1041/Discord.Discord.Canary.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.1041 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-canary +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.1041/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.1041/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..44b62d8e96147 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.1041/Discord.Discord.Canary.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.1041 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.1041/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.1041/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..5eca2caf4ec04 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.1041/Discord.Discord.Canary.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.1041 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/arm64/1.0.374/Discord.Discord.Canary.arm64.installer.yaml b/manifests/d/Discord/Discord/Canary/arm64/1.0.374/Discord.Discord.Canary.arm64.installer.yaml new file mode 100644 index 0000000000000..9c449b178fe2f --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/arm64/1.0.374/Discord.Discord.Canary.arm64.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary.arm64 +PackageVersion: 1.0.374 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordCanary +Installers: +- Architecture: arm64 + InstallerUrl: https://canary.dl2.discordapp.net/distro/app/canary/win/arm64/1.0.374/DiscordCanarySetup.exe + InstallerSha256: 6788747D339C13C4EE49F4E632CF7CE98ADB226FE834B701B7D9C1845F8F1AF1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/arm64/1.0.374/Discord.Discord.Canary.arm64.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/arm64/1.0.374/Discord.Discord.Canary.arm64.locale.en-US.yaml new file mode 100644 index 0000000000000..57f2b835ebeb0 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/arm64/1.0.374/Discord.Discord.Canary.arm64.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary.arm64 +PackageVersion: 1.0.374 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary (arm64) +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-canary +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/arm64/1.0.374/Discord.Discord.Canary.arm64.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/arm64/1.0.374/Discord.Discord.Canary.arm64.locale.zh-CN.yaml new file mode 100644 index 0000000000000..775f825d394ff --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/arm64/1.0.374/Discord.Discord.Canary.arm64.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary.arm64 +PackageVersion: 1.0.374 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/arm64/1.0.374/Discord.Discord.Canary.arm64.yaml b/manifests/d/Discord/Discord/Canary/arm64/1.0.374/Discord.Discord.Canary.arm64.yaml new file mode 100644 index 0000000000000..161e65b636ac0 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/arm64/1.0.374/Discord.Discord.Canary.arm64.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary.arm64 +PackageVersion: 1.0.374 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.installer.yaml b/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.installer.yaml new file mode 100644 index 0000000000000..70917fe474067 --- /dev/null +++ b/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DiskInternals.LinuxReader +PackageVersion: '5.1' +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +FileExtensions: +- e01 +- e02 +- eve +- hds +- vdi +- vhd +- vhdx +- vmdk +ProductCode: DiskInternals Linux Reader +ReleaseDate: 2026-07-10 +AppsAndFeaturesEntries: +- Publisher: DiskInternals + ProductCode: DiskInternals Linux Reader +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\DiskInternals\LinuxReader' +Installers: +- Architecture: x86 + InstallerUrl: https://eu.diskinternals.com/download/Linux_Reader.exe + InstallerSha256: 9FD51FDA237B4E1D5030C335B832CDD721E61321748F305CB0B5694FC122F175 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.locale.en-US.yaml b/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.locale.en-US.yaml new file mode 100644 index 0000000000000..00f5969c5e4b8 --- /dev/null +++ b/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.locale.en-US.yaml @@ -0,0 +1,59 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DiskInternals.LinuxReader +PackageVersion: '5.1' +PackageLocale: en-US +Publisher: DiskInternals Research +PublisherUrl: https://www.diskinternals.com/ +PublisherSupportUrl: https://www.diskinternals.com/support/ +PrivacyUrl: https://www.diskinternals.com/privacy/ +Author: DiskInternals, Ltd. +PackageName: DiskInternals Linux Reader +PackageUrl: https://www.diskinternals.com/linux-reader/ +License: Freemium +Copyright: Copyright @ 2003-2025, DiskInternals +ShortDescription: Access files and folders on Ext, UFS, HFS, ReiserFS, or APFS file systems from Windows +Description: |- + Linux Reader™ is a popular and free software product, and it remains non-commercial freeware. Since version 4.0, there are extra features that are available as Linux Reader Pro™. + + With Linux Reader Pro™, you can read files from even more file systems, get remote access through an SSH connection, create a virtual drive, export files via FTP, and more. + + All significant features of Linux Reader™ remain free: no annoying advertising, no trial mode, no restrictions. + + Linux Reader™ and Linux Reader Pro™ provide you with access to files on the following file systems: + - Ext2/3/4 + - ReiserFS, Reiser4 + - HFS, HFS+(reader) + - FAT, exFAT + - NTFS, ReFS + - UFS2 + - RomFS(reader) + - RAID 0, 1, 4, 5, 50, 10, and JBOD + - APFS (reader mode) + - ZFS (preview only*) + - XFS (preview only*) + - Hikvision NAS and DVR (preview only*) + * Linux Reader Pro™ license is required to obtain full access to files. + + In addition to the file systems mentioned above, Linux Reader Pro™ provides full access to these additional file systems: ZFS, Encrypted APFS, XFS, Hikvision NAS and DVR, Encrypted BitLocker disks, Moniker: linuxreader +Tags: +- apfs +- bitlocker +- ext2 +- ext3 +- ext4 +- fat +- filesystems +- hfs +- linux +- raid +- refs +- reiserfs +- romfs +- ufs2 +- xfs +- zfs +PurchaseUrl: https://store.payproglobal.com/checkout?products%5B1%5D%5Bid%5D=56003&addons=46183 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.yaml b/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.yaml new file mode 100644 index 0000000000000..895dc77435522 --- /dev/null +++ b/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: DiskInternals.LinuxReader +PackageVersion: '5.1' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/dprint/dprint/0.55.2/dprint.dprint.installer.yaml b/manifests/d/dprint/dprint/0.55.2/dprint.dprint.installer.yaml new file mode 100644 index 0000000000000..2feef0243ffc5 --- /dev/null +++ b/manifests/d/dprint/dprint/0.55.2/dprint.dprint.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: dprint.dprint +PackageVersion: 0.55.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: dprint.exe +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dprint/dprint/releases/download/0.55.2/dprint-x86_64-pc-windows-msvc.zip + InstallerSha256: 12E8C26ABC8C436223E70F5A30A2864001C92FA356A859EB93E06B97AB7DBD12 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/dprint/dprint/0.55.2/dprint.dprint.locale.en-US.yaml b/manifests/d/dprint/dprint/0.55.2/dprint.dprint.locale.en-US.yaml new file mode 100644 index 0000000000000..bdcde7669ed9e --- /dev/null +++ b/manifests/d/dprint/dprint/0.55.2/dprint.dprint.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: dprint.dprint +PackageVersion: 0.55.2 +PackageLocale: en-US +Publisher: dsherret +PublisherUrl: https://github.com/dprint +PublisherSupportUrl: https://github.com/dprint/dprint/issues +PackageName: dprint +PackageUrl: https://github.com/dprint/dprint +License: MIT +LicenseUrl: https://github.com/dprint/dprint/blob/HEAD/LICENSE +ShortDescription: Pluggable and configurable code formatting platform written in Rust. +Tags: +- formatter +ReleaseNotes: |- + Changes + - fix: build linux gnu binaries against glibc 2.17 (#1203) + Install + Run dprint upgrade or see https://dprint.dev/install/ + Checksums + ───────────────────────────────────────────┬──────────────────────────────────────────────────────────────── + Artifact │SHA-256 Checksum + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-x86_64-apple-darwin.zip │b7074cf6c814f995b783b5baa7e516b34e783c42c9baf7af553dbad731adb3a7 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-aarch64-apple-darwin.zip │e9ba8ed7988f3350501a8cf8af92da616cdec8d9d5c831c069293c587311b49d + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-x86_64-pc-windows-msvc.zip │12e8c26abc8c436223e70f5a30a2864001c92fa356a859eb93e06b97ab7dbd12 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-x86_64-pc-windows-msvc-installer.exe│60ecca3c071224d3097570dc07148457e86b97a85aba868cd0714377208825cd + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-aarch64-pc-windows-msvc.zip │65846975b2a8f4e36982ddff875147157c2c9b04c6eb17134d6655ed51e3a931 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-x86_64-unknown-linux-gnu.zip │d7ccde62d789dfb048717252d259e21253e32feffe4cbf2dab9954eeab492219 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-x86_64-unknown-linux-musl.zip │45fc0eef3216af21c4c22c6e7e233aa45c3080fac07b6e94db7008a5c8e5c67a + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-aarch64-unknown-linux-gnu.zip │299923f2b56d66756ad2c7c220650c72f26437fd3f48b3fb6c0df664073eb1d1 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-aarch64-unknown-linux-musl.zip │f0101217dd0abc94f1ac01b83d306d0288aeee8a501e8614a5e2bbe037500be0 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-riscv64gc-unknown-linux-gnu.zip │ed70faf3ecfbb67786470c62fd3eee44172451fa91166f660c7a52a9d9c36979 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-loongarch64-unknown-linux-gnu.zip │9dccf17fd3d79885ece6b3442639cb62cc1ac3852d9a30467fb2f18b4c0997f4 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-loongarch64-unknown-linux-musl.zip │11eb0a855e862bc27c002b863125e96fa794b8d149f919759639fd76d6f31032 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-powerpc64le-unknown-linux-gnu.zip │bb7b367b0ad41b413d4b0828cf96d5344e0686e14ab3bb1705a0705b340dd3ec + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-powerpc64le-unknown-linux-musl.zip │7973e0203bd5ca23fa50b75c45c61284080500fa50ec45b7ba422bd0f1dad0ed + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-aarch64-linux-android.zip │879a8de2c7e2b17dfd36fff855807803793fefdf8da9b1f69bc07c0a31f94ca3 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-x86_64-linux-android.zip │986c5f1926d9a1ae5049ac87c03f0d4cd7fdb823840d47af4fc6080725f3db32 + ───────────────────────────────────────────┴──────────────────────────────────────────────────────────────── +ReleaseNotesUrl: https://github.com/dprint/dprint/releases/tag/0.55.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/dprint/dprint/0.55.2/dprint.dprint.yaml b/manifests/d/dprint/dprint/0.55.2/dprint.dprint.yaml new file mode 100644 index 0000000000000..7d685e395a218 --- /dev/null +++ b/manifests/d/dprint/dprint/0.55.2/dprint.dprint.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: dprint.dprint +PackageVersion: 0.55.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.installer.yaml b/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.installer.yaml new file mode 100644 index 0000000000000..fb421ffb792eb --- /dev/null +++ b/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.installer.yaml @@ -0,0 +1,20 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: drkbugs.rusticker +PackageVersion: 1.1.5 +MinimumOSVersion: 10.0.0.0 +InstallerType: zip +NestedInstallerType: portable +Commands: + - rusticker + - stickerize +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/drkblog/rusticker/releases/download/v1.1.5/rusticker-v1.1.5-windows-x64.zip + InstallerSha256: de1c1a385d4072645f3ee562a4ff117d9022e37a32c1de279234d936590cfd11 + NestedInstallerFiles: + - RelativeFilePath: rusticker.exe + PortableCommandAlias: rusticker + - RelativeFilePath: stickerize.exe + PortableCommandAlias: stickerize +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.locale.en-US.yaml b/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.locale.en-US.yaml new file mode 100644 index 0000000000000..bd8fd936e6d37 --- /dev/null +++ b/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.locale.en-US.yaml @@ -0,0 +1,26 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: drkbugs.rusticker +PackageVersion: 1.1.5 +PackageLocale: en-US +Publisher: drkbugs +PublisherUrl: https://github.com/drkblog +PublisherSupportUrl: https://github.com/drkblog/rusticker/issues +Author: drkbugs +PackageName: rusticker +PackageUrl: https://github.com/drkblog/rusticker +License: MIT +LicenseUrl: https://github.com/drkblog/rusticker/blob/main/LICENSE +Copyright: Copyright (c) 2026 drkbugs +ShortDescription: A command-line tool for generating A4 grid layouts of stickers in PDF format and removing background from images. +Description: rusticker is a high-precision CLI layout tool for generating sticker sheets. It prints transparent raster images with custom contour outlines for easy die-cutting. +Moniker: rusticker +Tags: + - sticker + - pdf + - layout + - CLI + - print + - background-remover + - birefnet +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.yaml b/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.yaml new file mode 100644 index 0000000000000..1190f982edbcc --- /dev/null +++ b/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: drkbugs.rusticker +PackageVersion: 1.1.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.installer.yaml b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.installer.yaml new file mode 100644 index 0000000000000..40d58f2b360a2 --- /dev/null +++ b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: EarendilWorks.pi +PackageVersion: 0.80.7 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: pi.exe +Commands: +- pi +ReleaseDate: 2026-07-14 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/earendil-works/pi/releases/download/v0.80.7/pi-windows-x64.zip + InstallerSha256: 38AFE9451D4BC8B2465D6123A452ABB4713EB0B28C70E7917FC7060A8908A3DD +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.locale.en-US.yaml b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.locale.en-US.yaml new file mode 100644 index 0000000000000..c8e53789b86f8 --- /dev/null +++ b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.locale.en-US.yaml @@ -0,0 +1,62 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: EarendilWorks.pi +PackageVersion: 0.80.7 +PackageLocale: en-US +Publisher: EARENDIL INC. +PublisherUrl: https://github.com/earendil-works +PublisherSupportUrl: https://github.com/earendil-works/pi/issues +Author: Mario Zechner +PackageName: pi +PackageUrl: https://github.com/earendil-works/pi +License: MIT +LicenseUrl: https://github.com/earendil-works/pi/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Mario Zechner +ShortDescription: AI coding assistant with read, bash, edit, write tools +Description: |- + Pi is a minimal terminal coding harness. Adapt pi to your workflows, not the other way around, without having to fork and modify pi internals. Extend it with TypeScript Extensions, Skills, Prompt Templates, and Themes. Put your extensions, skills, prompt templates, and themes in Pi Packages and share them with others via npm or git. + Pi ships with powerful defaults but skips features like sub agents and plan mode. Instead, you can ask pi to build what you want or install a third party pi package that matches your workflow. + Pi runs in four modes: interactive, print or JSON, RPC for process integration, and an SDK for embedding in your own apps. See openclaw/openclaw for a real-world SDK integration. +Moniker: pi +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- programming +ReleaseNotes: |- + Breaking Changes + - Removed the openai-responses compat.sendSessionIdHeader flag from models.json. Session-affinity behavior is now controlled by compat.sessionAffinityFormat ("openai", "openai-nosession", or "openrouter"). Replace sendSessionIdHeader: false with sessionAffinityFormat: "openai-nosession" (#6496 by @petrroll). + New Features + - Cache-friendly dynamic tool loading - Extensions can add tools during execution while supported Anthropic and OpenAI Responses models preserve prompt-cache prefixes. See Dynamic Tool Loading. + - Message copy shortcut - Ctrl+X copies the last assistant message in the transcript or the selected message in /tree, making older and branched messages directly copyable. See Display and Message Queue. + - Fable 5 xhigh and max thinking - Native xhigh and max thinking levels are available across generated provider catalogs. See Model Options. + Added + - Added cache-friendly dynamic tool loading for extension tools activated by tool results. Supported Anthropic and OpenAI Responses models load definitions where they become available, preserving the cached prompt prefix. See Dynamic Tool Loading (#6474). + - Added inherited native xhigh and max thinking levels for Claude Fable 5 across all generated provider catalogs (#6490 by @davidbrai). + - Added Ctrl+X to copy the last assistant message, or the selected message in /tree. + - Added inherited toolChoice support for OpenAI and Codex Responses, including required and named tool selection (#6588 by @xl0). + Fixed + - Fixed inherited OpenRouter model context windows to use the top provider's actual context length (#6481 by @davidbrai). + - Fixed inherited OpenRouter OpenAI-compatible session IDs to use the x-session-id header instead of OpenAI-specific session-affinity fields (#6496 by @petrroll). + - Fixed Ctrl+V to paste clipboard text when the pasteboard does not contain an image. + - Fixed /login amazon-bedrock to prompt for and save a Bedrock API key instead of only displaying ambient AWS credential setup instructions. + - Fixed inherited Amazon Bedrock ambient AWS credentials to keep using SigV4 authentication, including for custom model IDs (#6532 by @ribelo). + - Fixed inherited Cloudflare Workers AI and AI Gateway authentication to use ambient account and gateway IDs when stored credentials contain only an API key (#6292 by @markphelps). + - Fixed inherited legacy terminal decoding for Alt+symbol key combinations such as Alt+, and Alt+. (#6523 by @ribelo). + - Fixed the GitHub Copilot mai-code-1-flash-picker model to route through the /responses endpoint (#6544 by @petrroll). + - Fixed branch summaries to work with providers that use ambient authentication instead of API keys (#6595 by @davidbrai). + - Fixed inherited Amazon Bedrock errors to report unhandled provider stop reasons instead of only An unknown error occurred (#6598 by @davidbrai). + - Fixed npm package removal when installed packages have conflicting peer dependencies (#6604 by @davidbrai). + - Fixed inherited Azure OpenAI Responses reasoning replay when encrypted_content appears only in the terminal response event (#6608 by @davidbrai). + - Fixed inherited Anthropic-compatible proxies that omit usage from message_delta events (#6611 by @davidbrai). + - Fixed inherited OpenCode OpenAI Responses models to omit the unsupported session-id header while preserving other cache-affinity data (#6645 by @davidbrai). + - Fixed system prompt cache invalidation across dates by removing the current date from the default prompt (#6621). +ReleaseNotesUrl: https://github.com/earendil-works/pi/releases/tag/v0.80.7 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.locale.zh-CN.yaml b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e792b3860a36e --- /dev/null +++ b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.locale.zh-CN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: EarendilWorks.pi +PackageVersion: 0.80.7 +PackageLocale: zh-CN +ShortDescription: 具备读取、Bash、编辑、写入工具的 AI 编程助手 +Description: |- + Pi 是一款轻量型终端编码工具集。无需复刻并修改 Pi 的内部代码,就能让 Pi 适配你的工作流,而非反过来让你迁就 Pi。你可以通过 TypeScript 扩展、技能模块、提示词模板和主题对 Pi 进行拓展。把你开发的扩展、技能模块、提示词模板和主题打包为 Pi 包,即可通过 npm 或 git 分享给其他用户。 + Pi 默认搭载的功能十分强大,但未内置子代理、计划模式这类功能。你可以让 Pi 生成你需要的功能,或是安装适配你工作流的第三方 Pi 包即可。 + Pi 支持四种运行模式:交互模式、打印/JSON 输出模式、用于流程集成的 RPC 模式,以及可嵌入你自有应用的 SDK 模式。实际的 SDK 集成案例可参考 openclaw/openclaw 项目。 +Tags: +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.yaml b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.yaml new file mode 100644 index 0000000000000..e80d4c8f14689 --- /dev/null +++ b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: EarendilWorks.pi +PackageVersion: 0.80.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/eduVPN/Client/4.6/eduVPN.Client.installer.yaml b/manifests/e/eduVPN/Client/4.6/eduVPN.Client.installer.yaml index 4bb92fce8b8e9..deecf21cbfcec 100644 --- a/manifests/e/eduVPN/Client/4.6/eduVPN.Client.installer.yaml +++ b/manifests/e/eduVPN/Client/4.6/eduVPN.Client.installer.yaml @@ -6,7 +6,7 @@ PackageVersion: 4.6 Installers: - Architecture: arm64 InstallerType: wix - InstallerUrl: https://codeberg.org/eduVPN/windows/releases/download/4.6/eduVPNClient_4.6_ARM64.msi + InstallerUrl: https://app.eduvpn.org/windows/eduVPNClient_4.6_ARM64.msi InstallerSha256: f546d9e69660d7cb4f83c2179e17bae5c0d59a1b827636e91850bfed532d5c82 AppsAndFeaturesEntries: - ProductCode: '{5F0A9747-2CD2-4E1C-9E20-E426DBF988A8}' @@ -14,7 +14,7 @@ Installers: UpgradeCode: '{02EBD828-2565-4BCD-ABFF-E3F48C3F9A23}' - Architecture: x64 InstallerType: wix - InstallerUrl: https://codeberg.org/eduVPN/windows/releases/download/4.6/eduVPNClient_4.6_x64.msi + InstallerUrl: https://app.eduvpn.org/windows/eduVPNClient_4.6_x64.msi InstallerSha256: 3035ffa94283dfeab00227041099436c41b6354d524e01831003d0697101ffb4 AppsAndFeaturesEntries: - ProductCode: '{5F0A9747-2CD2-4E1C-9E10-E426DBF988A8}' @@ -22,7 +22,7 @@ Installers: UpgradeCode: '{02EBD828-2565-4BCD-ABFF-E3F48C3F9A23}' - Architecture: x86 InstallerType: wix - InstallerUrl: https://codeberg.org/eduVPN/windows/releases/download/4.6/eduVPNClient_4.6_x86.msi + InstallerUrl: https://app.eduvpn.org/windows/eduVPNClient_4.6_x86.msi InstallerSha256: f340f65919d019c977f0ffd7e6be287a2e2b069d3599ff01b1492da7e9fd8575 AppsAndFeaturesEntries: - ProductCode: '{5F0A9747-2CD2-4E1C-9E00-E426DBF988A8}' diff --git a/manifests/f/Fly-io/flyctl/0.4.71/Fly-io.flyctl.installer.yaml b/manifests/f/Fly-io/flyctl/0.4.71/Fly-io.flyctl.installer.yaml new file mode 100644 index 0000000000000..a32edeb1ff5f3 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.4.71/Fly-io.flyctl.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.4.71 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: flyctl.exe +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.4.71/flyctl_0.4.71_Windows_x86_64.zip + InstallerSha256: 596D1EB10CE516DA5D17CF914D57FAE5FF7154F900FC481C55A552B71B67B8BC +- Architecture: arm64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.4.71/flyctl_0.4.71_Windows_arm64.zip + InstallerSha256: 0EB7044EB6BAF8F77823F2B159A82C4B2E3A4C7626968DC7D9E81B3D9FEDBADE +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/Fly-io/flyctl/0.4.71/Fly-io.flyctl.locale.en-US.yaml b/manifests/f/Fly-io/flyctl/0.4.71/Fly-io.flyctl.locale.en-US.yaml new file mode 100644 index 0000000000000..3e985f193121f --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.4.71/Fly-io.flyctl.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.4.71 +PackageLocale: en-US +Publisher: Fly.io +PublisherUrl: https://fly.io/ +PublisherSupportUrl: https://community.fly.io/ +PrivacyUrl: https://fly.io/legal/privacy-policy +PackageName: flyctl +PackageUrl: https://github.com/superfly/flyctl +License: Apache-2.0 +LicenseUrl: https://github.com/superfly/flyctl/blob/HEAD/LICENSE +ShortDescription: Command line tools for fly.io services +Tags: +- cli +- fly +- heroku +ReleaseNotes: |- + Changelog + - 56c828f chore(deps): bump docker/login-action from 4.2.0 to 4.4.0 (#4996) + - cf27349 chore(deps): bump github.com/depot/depot-go from 0.5.2 to 0.5.3 (#5003) + - 19d46f6 Show app network in fly status and fly apps list +ReleaseNotesUrl: https://github.com/superfly/flyctl/releases/tag/v0.4.71 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Fly-io/flyctl/0.4.71/Fly-io.flyctl.locale.ko-KR.yaml b/manifests/f/Fly-io/flyctl/0.4.71/Fly-io.flyctl.locale.ko-KR.yaml new file mode 100644 index 0000000000000..8a2251e064516 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.4.71/Fly-io.flyctl.locale.ko-KR.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.4.71 +PackageLocale: ko-KR +Publisher: Fly.io +PublisherUrl: https://fly.io/ +PublisherSupportUrl: https://community.fly.io/ +PrivacyUrl: https://fly.io/legal/privacy-policy +PackageName: flyctl +PackageUrl: https://github.com/superfly/flyctl +License: Apache-2.0 +LicenseUrl: https://github.com/superfly/flyctl/blob/HEAD/LICENSE +ShortDescription: fly.io 서비스를 위한 커맨드 라인 도구 +Tags: +- cli +- fly +- heroku +ReleaseNotes: |- + f2d3a9f8 Revert "Even more remote heartbeat improvements (#3594)" (#3618) + f2416e1a Hide sentry from launch plan unless selected (#3616) + 61fa0095 Add Rails + Tigris support to fly launch (#3598) + d970980d Implement unit test with in-memory server implementation. (#3613) +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Fly-io/flyctl/0.4.71/Fly-io.flyctl.yaml b/manifests/f/Fly-io/flyctl/0.4.71/Fly-io.flyctl.yaml new file mode 100644 index 0000000000000..ace44c8876e42 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.4.71/Fly-io.flyctl.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.4.71 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/Forkgram/Forkgram/7.0.1/Forkgram.Forkgram.installer.yaml b/manifests/f/Forkgram/Forkgram/7.0.1/Forkgram.Forkgram.installer.yaml new file mode 100644 index 0000000000000..fb067cb1658d4 --- /dev/null +++ b/manifests/f/Forkgram/Forkgram/7.0.1/Forkgram.Forkgram.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Forkgram.Forkgram +PackageVersion: 7.0.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: Telegram.exe +UpgradeBehavior: install +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/forkgram/tdesktop/releases/download/v7.0.1/Telegram.zip + InstallerSha256: 68A7F206DB5E8BA32812C91510366EAC79FDC105CF9F75D7E075DB319F3D2F6B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/Forkgram/Forkgram/7.0.1/Forkgram.Forkgram.locale.en-US.yaml b/manifests/f/Forkgram/Forkgram/7.0.1/Forkgram.Forkgram.locale.en-US.yaml new file mode 100644 index 0000000000000..a5138959ca11e --- /dev/null +++ b/manifests/f/Forkgram/Forkgram/7.0.1/Forkgram.Forkgram.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Forkgram.Forkgram +PackageVersion: 7.0.1 +PackageLocale: en-US +Publisher: Forkgram +PublisherUrl: https://github.com/forkgram +PublisherSupportUrl: https://github.com/forkgram/tdesktop/issues +PackageName: Forkgram +PackageUrl: https://github.com/forkgram/tdesktop +License: GPL-3.0 +LicenseUrl: https://github.com/forkgram/tdesktop/blob/HEAD/LICENSE +ShortDescription: Fork of Telegram Desktop messaging app. +Description: Forkgram is a fork of the official Telegram Desktop application. It does not fundamentally change the official client and adds only some useful small features. +Moniker: forkgram +Tags: +- fork +- forkgram +- messenger +- telegram +- telegram-desktop +ReleaseNotes: — Updated version to 7.0.1. +ReleaseNotesUrl: https://github.com/forkgram/tdesktop/releases/tag/v7.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Forkgram/Forkgram/7.0.1/Forkgram.Forkgram.yaml b/manifests/f/Forkgram/Forkgram/7.0.1/Forkgram.Forkgram.yaml new file mode 100644 index 0000000000000..724fe2e3d5bf1 --- /dev/null +++ b/manifests/f/Forkgram/Forkgram/7.0.1/Forkgram.Forkgram.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Forkgram.Forkgram +PackageVersion: 7.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/Formlabs/PreForm/3.60.3.641/Formlabs.PreForm.installer.yaml b/manifests/f/Formlabs/PreForm/3.60.3.641/Formlabs.PreForm.installer.yaml new file mode 100644 index 0000000000000..4877648aa278e --- /dev/null +++ b/manifests/f/Formlabs/PreForm/3.60.3.641/Formlabs.PreForm.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Formlabs.PreForm +PackageVersion: 3.60.3.641 +InstallerType: burn +Scope: machine +UpgradeBehavior: install +Protocols: +- preform +FileExtensions: +- form +- obj +- stl +ProductCode: '{04535d3e-71cc-49fc-9346-f90912f40028}' +AppsAndFeaturesEntries: +- ProductCode: '{04535d3e-71cc-49fc-9346-f90912f40028}' + UpgradeCode: '{958D43B4-AB83-40EF-936B-B404C3505353}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Formlabs\PreForm' +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.formlabs.com/PreForm/Release/3.60.3/PreForm_win_3.60.3_release_releaser_641_125136.exe + InstallerSha256: 57350943A9576B9C8C8522C9AD62F00818B79573B7B33055D89D4B2F0B2A6A21 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/Formlabs/PreForm/3.60.3.641/Formlabs.PreForm.locale.en-US.yaml b/manifests/f/Formlabs/PreForm/3.60.3.641/Formlabs.PreForm.locale.en-US.yaml new file mode 100644 index 0000000000000..29afc826c7cba --- /dev/null +++ b/manifests/f/Formlabs/PreForm/3.60.3.641/Formlabs.PreForm.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Formlabs.PreForm +PackageVersion: 3.60.3.641 +PackageLocale: en-US +Publisher: Formlabs +PublisherUrl: https://formlabs.com/ +PublisherSupportUrl: https://support.formlabs.com/ +PrivacyUrl: https://formlabs.com/privacy-policy/ +Author: Formlabs Inc. +PackageName: PreForm +PackageUrl: https://formlabs.com/software/preform/ +License: Freeware +LicenseUrl: https://formlabs.com/terms-of-service/ +Copyright: Copyright © 2012-2026 Formlabs Inc. All rights reserved. +CopyrightUrl: https://formlabs.com/terms-of-service/ +ShortDescription: PreForm is the 3D printing software that prepares your models for printing on Formlabs 3D printers in just a few minutes. +Tags: +- 3d-printing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Formlabs/PreForm/3.60.3.641/Formlabs.PreForm.locale.zh-CN.yaml b/manifests/f/Formlabs/PreForm/3.60.3.641/Formlabs.PreForm.locale.zh-CN.yaml new file mode 100644 index 0000000000000..54b2df4506ef2 --- /dev/null +++ b/manifests/f/Formlabs/PreForm/3.60.3.641/Formlabs.PreForm.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Formlabs.PreForm +PackageVersion: 3.60.3.641 +PackageLocale: zh-CN +PublisherUrl: https://formlabs3d.cn/ +PublisherSupportUrl: https://support.formlabs.com/s/?language=zh_CN +PrivacyUrl: https://formlabs3d.cn/privacy-policy/ +PackageUrl: https://formlabs3d.cn/software/preform/ +License: 免费软件 +LicenseUrl: https://formlabs3d.cn/terms-of-service/ +Copyright: Copyright © 2012-2026 Formlabs Inc. 保留所有权利。 +CopyrightUrl: https://formlabs3d.cn/terms-of-service/ +ShortDescription: PreForm 是一款 3D 打印软件,可在数分钟内完成使用 Formlabs 3D 打印机的模型准备工作。 +Tags: +- 3d打印 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Formlabs/PreForm/3.60.3.641/Formlabs.PreForm.yaml b/manifests/f/Formlabs/PreForm/3.60.3.641/Formlabs.PreForm.yaml new file mode 100644 index 0000000000000..a3fd1a174b55e --- /dev/null +++ b/manifests/f/Formlabs/PreForm/3.60.3.641/Formlabs.PreForm.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Formlabs.PreForm +PackageVersion: 3.60.3.641 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.installer.yaml b/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.installer.yaml deleted file mode 100644 index 9b57cd50d352e..0000000000000 --- a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.EasyClaw -PackageVersion: 1.7.1 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 51492edb-6d67-582c-a781-6b48bbf5f3bf -ReleaseDate: 2026-03-18 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/gaoyangz77/rivonclaw/releases/download/v1.7.1/RivonClaw.Setup.1.7.1.exe - InstallerSha256: F045924A5223560FE1C3AAE27EDB56DBC62E44E223B3657832F2D5D15408EDE2 - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/gaoyangz77/rivonclaw/releases/download/v1.7.1/RivonClaw.Setup.1.7.1.exe - InstallerSha256: F045924A5223560FE1C3AAE27EDB56DBC62E44E223B3657832F2D5D15408EDE2 - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.locale.en-US.yaml b/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.locale.en-US.yaml deleted file mode 100644 index cc9fe3e4c9ecd..0000000000000 --- a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.locale.en-US.yaml +++ /dev/null @@ -1,54 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.EasyClaw -PackageVersion: 1.7.1 -PackageLocale: en-US -Publisher: EasyClaw -PublisherUrl: https://github.com/gaoyangz77 -PublisherSupportUrl: https://github.com/gaoyangz77/easyclaw/issues -Author: Gaoyang Zhang -PackageName: EasyClaw -PackageUrl: https://github.com/gaoyangz77/easyclaw -License: MIT -LicenseUrl: https://github.com/gaoyangz77/easyclaw/blob/HEAD/LICENSE -Copyright: Copyright (c) 2026 Gaoyang Zhang -ShortDescription: An easy-mode runtime and UI layer built on top of OpenClaw, designed to turn long-lived AI agents into personal digital butlers. -Description: |- - OpenClaw is a powerful agent runtime — but it's built for engineers. Setting it up means editing config files, managing processes, and juggling API keys from the terminal. For non-programmers (designers, operators, small business owners), that barrier is too high. - EasyClaw wraps OpenClaw into a desktop app that anyone can use: install, launch from the system tray, and manage everything through a local web panel. Write rules in plain language instead of code, configure LLM providers and messaging channels with a few clicks, and let the agent learn your preferences over time. No terminal required. - In short: OpenClaw is the engine; EasyClaw is the cockpit. - - Features - - Natural Language Rules: Write rules in plain language—they compile to policy, guards, or skills and take effect immediately (no restart) - - Multi-Provider LLM Support: 20+ providers (OpenAI, Anthropic, Google Gemini, DeepSeek, Zhipu/Z.ai, Moonshot/Kimi, Qwen, Groq, Mistral, xAI, OpenRouter, MiniMax, Venice AI, Xiaomi/MiMo, Volcengine/Doubao, Amazon Bedrock, NVIDIA NIM, etc.) plus subscription/coding plans (Claude, Gemini, Zhipu Coding, Qwen Coding, Kimi Code, MiniMax Coding, Volcengine Coding) and Ollama for local models - - OAuth & Subscription Plans: Sign in with Google for free-tier Gemini access or connect Claude/Anthropic subscription—no API key needed. Auto-detects or installs CLI credentials - - Per-Provider Proxy Support: Configure HTTP/SOCKS5 proxies per LLM provider or API key, with automatic routing and hot reload—essential for restricted regions - - Multi-Account Channels: Configure Telegram, WhatsApp, Discord, Slack, Google Chat, Signal, iMessage, Feishu/Lark, LINE, Matrix, Mattermost, Microsoft Teams, and more through UI with secure secret storage (Keychain/DPAPI) - - Token Usage Tracking: Real-time statistics by model and provider, auto-refreshed from OpenClaw session files - - Speech-to-Text: Region-aware STT integration for voice messages (Groq, Volcengine) - - Visual Permissions: Control file read/write access through UI - - Zero-Restart Updates: API key, proxy, and channel changes apply instantly via hot reload—no gateway restart needed - - Local-First & Private: All data stays on your machine; secrets never stored in plaintext - - Chat with Agent: Real-time WebSocket chat with markdown rendering, emoji picker, image attachments, model switching, and persistent conversation history - - Skills Marketplace: Browse, search, and install community skills from a built-in marketplace; manage installed skills with one click - - Auto-Update: Client update checker with static manifest hosting - - Privacy-First Telemetry: Optional anonymous usage analytics—no PII collected - - How File Permissions Work - EasyClaw enforces file access permissions through an OpenClaw plugin that intercepts tool calls before they execute. Here's what's protected: - - File access tools (read, write, edit, image, apply-patch): Fully protected—paths are validated against your configured permissions - - Command execution (exec, process): Working directory is validated, but paths inside command strings (like cat /etc/passwd) cannot be inspected - Coverage: ~85-90% of file access scenarios. For maximum security, consider restricting or disabling exec tools through Rules. - Technical note: The file permissions plugin uses OpenClaw's before_tool_call hook—no vendor source code modifications needed, so EasyClaw can cleanly pull upstream OpenClaw updates. -Tags: -- agent -- agentic -- ai -- chatbot -- claw -- large-language-model -- llm -ReleaseNotesUrl: https://github.com/gaoyangz77/rivonclaw/releases/tag/v1.7.1 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.locale.zh-CN.yaml b/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.locale.zh-CN.yaml deleted file mode 100644 index 6e45ac42a977b..0000000000000 --- a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.locale.zh-CN.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.EasyClaw -PackageVersion: 1.7.1 -PackageLocale: zh-CN -ShortDescription: 基于 OpenClaw 构建的简易模式运行时与 UI 层,旨在将长生命周期 AI 智能体转化为个人数字管家。 -Description: |- - OpenClaw 是一款功能强大的智能体运行时,但它专为工程师打造:配置需编辑配置文件、管理进程,并在终端中调度各类 API 密钥。对非程序员(如设计师、运营人员、小企业主)而言,这一门槛过高。 - EasyClaw 将 OpenClaw 封装为桌面应用,人人可用:安装后从系统托盘启动,通过本地 Web 面板管理一切。用自然语言编写规则而非代码,只需几次点击即可配置大语言模型(LLM)提供商与消息渠道,并让智能体随时间学习您的偏好。无需终端。 - 简言之:OpenClaw 是引擎,EasyClaw 是驾驶舱。 - - 功能特性 - - 自然语言规则:用通俗语言编写规则,自动编译为策略、防护器或技能,即时生效(无需重启) - - 多提供商 LLM 支持:支持 20+ 提供商(OpenAI、Anthropic、Google Gemini、DeepSeek、智谱/Z.ai、Moonshot/Kimi、通义千问/Qwen、Groq、Mistral、xAI、OpenRouter、MiniMax、Venice AI、小米/MiMo、火山引擎/豆包、Amazon Bedrock、NVIDIA NIM 等),另含订阅/编码计划(Claude、Gemini、智谱编码、通义编码、Kimi Code、MiniMax 编码、火山引擎编码),并支持 Ollama 本地模型 - - OAuth 与订阅计划:使用 Google 登录即可免费访问 Gemini,或连接 Claude/Anthropic 订阅——无需 API 密钥;自动检测或安装 CLI 凭证 - - 每提供商代理支持:为每个 LLM 提供商或 API 密钥单独配置 HTTP/SOCKS5 代理,支持自动路由与热重载——对受限地区至关重要 - - 多账号消息渠道:通过图形界面配置 Telegram、WhatsApp、Discord、Slack、Google Chat、Signal、iMessage、飞书/Lark、LINE、Matrix、Mattermost、Microsoft Teams 等,并提供安全的密钥存储(Keychain/DPAPI) - - Token 用量追踪:按模型与提供商实时统计用量,基于 OpenClaw 会话文件自动刷新 - - 语音转文字(STT):集成区域感知的 STT 功能,支持语音消息处理(Groq、火山引擎) - - 可视化权限控制:通过图形界面管理文件读写访问权限 - - 零重启更新:API 密钥、代理及渠道变更通过热重载即时生效,无需重启网关 - - 本地优先与隐私保护:所有数据留存于本机,敏感信息绝不以明文存储 - - 与智能体对话:基于 WebSocket 的实时聊天,支持 Markdown 渲染、表情选择器、图片附件、模型切换及持久化对话历史 - - 技能市场:内置市场可浏览、搜索并安装社区技能,一键管理已安装技能 - - 自动更新:客户端更新检查器,支持静态清单托管 - - 隐私优先遥测:可选的匿名使用分析,不收集任何个人身份信息(PII) - - 文件权限工作原理 - EasyClaw 通过一个 OpenClaw 插件强制执行文件访问权限,该插件在工具调用执行前进行拦截。受保护内容包括: - - 文件访问工具(读取、写入、编辑、图像处理、应用补丁):全面保护——路径将对照您配置的权限进行验证 - - 命令执行(exec、process):工作目录会被验证,但命令字符串内部的路径(例如 cat /etc/passwd)无法被检查 - 覆盖范围:约 85–90% 的文件访问场景。为实现最高安全性,建议通过规则限制或禁用 exec 工具。 - 技术说明:文件权限插件利用 OpenClaw 的 before_tool_call 钩子实现,无需修改厂商源代码,因此 EasyClaw 可干净地拉取上游 OpenClaw 更新。 -Tags: -- 人工智能 -- 大语言模型 -- 智能体 -- 聊天机器人 -- 自主智能 -- 龙虾 -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.installer.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.installer.yaml new file mode 100644 index 0000000000000..a2f158d70f975 --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GitHub.Copilot.Prerelease +PackageVersion: v1.0.71-1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: copilot.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.PowerShell + MinimumVersion: 7.0.0 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.71-1/copilot-win32-x64.zip + InstallerSha256: E73DABEC2FA80D0D99AADA500D033F0E35CB72B584E5E9288BD623CCE9EA27EC +- Architecture: arm64 + InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.71-1/copilot-win32-arm64.zip + InstallerSha256: 1F665C97C6BB582F3059D8C4B1399FDF0F669E1C102B4AADC738C52D56CE2BE2 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.locale.en-US.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.locale.en-US.yaml new file mode 100644 index 0000000000000..87586caeb084e --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GitHub.Copilot.Prerelease +PackageVersion: v1.0.71-1 +PackageLocale: en-US +Publisher: GitHub, Inc. +PublisherUrl: https://github.com/home/ +PublisherSupportUrl: https://support.github.com/ +PrivacyUrl: https://docs.github.com/site-policy/privacy-policies/github-privacy-statement +PackageName: Copilot CLI (Preview) +PackageUrl: https://github.com/github/copilot-cli +License: Proprietary +LicenseUrl: https://docs.github.com/en/site-policy/github-terms/github-pre-release-license-terms +Copyright: Copyright (c) GitHub 2025. All rights reserved. +CopyrightUrl: https://github.com/github/copilot-cli?tab=License-1-ov-file +ShortDescription: GitHub Copilot CLI brings the power of Copilot coding agent directly to your terminal. +Description: GitHub Copilot CLI brings AI-powered coding assistance directly to your command line, enabling you to build, debug, and understand code through natural language conversations. Powered by the same agentic harness as GitHub's Copilot coding agent, it provides intelligent assistance while staying deeply integrated with your GitHub workflow. +Moniker: copilot-prerelease +Tags: +- cli +- copilot +- github +ReleaseNotesUrl: https://github.com/github/copilot-cli/releases/tag/v1.0.71-1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/github/copilot-cli/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.yaml new file mode 100644 index 0000000000000..5dc9d999b684d --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: GitHub.Copilot.Prerelease +PackageVersion: v1.0.71-1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.installer.yaml b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.installer.yaml new file mode 100644 index 0000000000000..b5188428f1be4 --- /dev/null +++ b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.installer.yaml @@ -0,0 +1,58 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GitHub.GitHubDesktop +PackageVersion: 3.6.3 +UpgradeBehavior: install +Protocols: +- github-windows +- x-github-client +- x-github-desktop-auth +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://desktop.githubusercontent.com/releases/3.6.3-931da4a1/GitHubDesktopSetup-x64.exe + InstallerSha256: 71E939B98B8BDD77B8178362399D5A6A49BC24D8CF7882F4AB1030BE3E14D435 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: GitHubDesktop +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://desktop.githubusercontent.com/releases/3.6.3-931da4a1/GitHubDesktopSetup-x64.msi + InstallerSha256: 62613AF0723746130D17E415175A9C312929A06CE232EC34DA476912CC2E11C3 + ProductCode: '{77BE69BD-B847-4AAA-8D06-E6C6DDB4B68A}' + AppsAndFeaturesEntries: + - DisplayName: GitHub Desktop Deployment Tool + ProductCode: '{77BE69BD-B847-4AAA-8D06-E6C6DDB4B68A}' + UpgradeCode: '{00D8E2EE-13EA-5BEB-87F0-70EFC46A7D4A}' +- Architecture: arm64 + InstallerType: exe + Scope: user + InstallerUrl: https://desktop.githubusercontent.com/releases/3.6.3-931da4a1/GitHubDesktopSetup-arm64.exe + InstallerSha256: 5B79429C8B43A2AA722A82241E3391F8D14F9EC118F2861D9A98180B8914041B + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: GitHubDesktop +- Architecture: arm64 + InstallerType: wix + Scope: machine + InstallerUrl: https://desktop.githubusercontent.com/releases/3.6.3-931da4a1/GitHubDesktopSetup-arm64.msi + InstallerSha256: A69C53BCD4BDDF02E981DD3EFC40B2D6D760ADC4282A2DCE2300C3DB0B2B9E3A + ProductCode: '{3128EA02-3D62-4E95-9C0A-9DBE26E7578D}' + AppsAndFeaturesEntries: + - DisplayName: GitHub Desktop Deployment Tool + ProductCode: '{3128EA02-3D62-4E95-9C0A-9DBE26E7578D}' + UpgradeCode: '{00D8E2EE-13EA-5BEB-87F0-70EFC46A7D4A}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.locale.en-US.yaml b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..928971351ff98 --- /dev/null +++ b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GitHub.GitHubDesktop +PackageVersion: 3.6.3 +PackageLocale: en-US +Publisher: GitHub, Inc. +PublisherUrl: https://github.com/ +PublisherSupportUrl: https://github.com/desktop/desktop/issues +PrivacyUrl: https://docs.github.com/github/site-policy/github-privacy-statement +Author: GitHub, Inc. +PackageName: GitHub Desktop +PackageUrl: https://github.com/apps/desktop +License: MIT +LicenseUrl: https://github.com/desktop/desktop/blob/HEAD/LICENSE +Copyright: Copyright (c) GitHub, Inc. +ShortDescription: Focus on what matters instead of fighting with Git. +Description: GitHub Desktop is an open-source Electron-based GitHub app. It is written in TypeScript and uses React. +Moniker: github-desktop +Tags: +- git +- github +ReleaseNotes: |- + [Fixed] Resolve error that prevented Copilot-based features from working correctly on Windows - #22509 + [Fixed] Keep commit message @-mention autocomplete from surfacing users without a profile name when typing queries like "@null" - #22414. Thanks @sukanth! + [Fixed] Resolve a crash where the truncated repository path text could enter an infinite re-render loop - #22458 + [Fixed] Fall back to the main worktree so a repository no longer appears as missing when its linked worktree folder was deleted outside Desktop - #22474 + [Fixed] Keep files visible in the Changes list after Desktop returns from being backgrounded - #22497 + [Fixed] Show an error dialog instead of silently doing nothing when Copilot fails to generate a commit message due to a git error - #22496 + [Fixed] Copilot sessions from generating commit messages or resolving conflicts do not show up in VS Code - #22443 + [Fixed] Repository list scrolling no longer gets stuck or jitters when scrolling over tall groups (e.g. large organizations) - #22438. Thanks @peteski22! + [Improved] Clarify the line-ending conversion warning to explain that Git will automatically convert the file's line endings on next checkout, with a link to learn more - #21446. Thanks @Whitebrim! +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.github.com/desktop +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.locale.zh-CN.yaml b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b59fff1ea2021 --- /dev/null +++ b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: GitHub.GitHubDesktop +PackageVersion: 3.6.3 +PackageLocale: zh-CN +Publisher: GitHub, Inc. +PublisherUrl: https://github.com/ +PublisherSupportUrl: https://github.com/desktop/desktop/issues +PrivacyUrl: https://docs.github.com/github/site-policy/github-privacy-statement +Author: GitHub, Inc. +PackageName: GitHub Desktop +PackageUrl: https://github.com/apps/desktop +License: MIT +LicenseUrl: https://github.com/desktop/desktop/blob/HEAD/LICENSE +Copyright: Copyright (c) GitHub, Inc. +ShortDescription: 专注于重要的事情,而不是与 Git 对着干。 +Description: GitHub Desktop 是一款基于 Electron 的开源 GitHub 应用。它由 TypeScript 编写,并使用了 React。 +Tags: +- git +- github +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.github.com/desktop +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.yaml b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.yaml new file mode 100644 index 0000000000000..7cbde0ea0df55 --- /dev/null +++ b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: GitHub.GitHubDesktop +PackageVersion: 3.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/Glide01/BoxPilot/1.13.0/Glide01.BoxPilot.installer.yaml b/manifests/g/Glide01/BoxPilot/1.13.0/Glide01.BoxPilot.installer.yaml new file mode 100644 index 0000000000000..943afe0c3dc0b --- /dev/null +++ b/manifests/g/Glide01/BoxPilot/1.13.0/Glide01.BoxPilot.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Glide01.BoxPilot +PackageVersion: 1.13.0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{CE2E2447-FB90-44A3-B8B1-71B6FA6FA33C}' +ReleaseDate: 2026-07-03 +AppsAndFeaturesEntries: +- ProductCode: '{CE2E2447-FB90-44A3-B8B1-71B6FA6FA33C}' + UpgradeCode: '{F7A8C9D1-2E3B-4F5A-6B7C-8D9E0F1A2B3C}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/BoxPilot' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Glide01/BoxPilot/releases/download/v1.13.0/box_pilot_gui-1.13.0-x86_64.msi + InstallerSha256: AC88677C85DD329CD7D475DE74BE88DDFD6AD723289ECC3625FEA651FFE90819 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/Glide01/BoxPilot/1.13.0/Glide01.BoxPilot.locale.en-US.yaml b/manifests/g/Glide01/BoxPilot/1.13.0/Glide01.BoxPilot.locale.en-US.yaml new file mode 100644 index 0000000000000..571c62e07a670 --- /dev/null +++ b/manifests/g/Glide01/BoxPilot/1.13.0/Glide01.BoxPilot.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Glide01.BoxPilot +PackageVersion: 1.13.0 +PackageLocale: en-US +Publisher: BoxPilot Contributors +PublisherUrl: https://github.com/Glide01 +PublisherSupportUrl: https://github.com/Glide01/BoxPilot/issues +PackageName: BoxPilot +PackageUrl: https://github.com/Glide01/BoxPilot +License: MIT +LicenseUrl: https://github.com/Glide01/BoxPilot/blob/main/LICENSE +ShortDescription: A GUI manager for the sing-box proxy program +Moniker: boxpilot +ReleaseNotes: |- + BoxPilot v1.13.0 — sing-box 1.13.14 bundled in the MSI. + Install via winget: winget install Glide01.BoxPilot + BoxPilot is MIT licensed. The bundled sing-box.exe is the official + SagerNet/sing-box release binary, + distributed under its own GPL-3.0-or-later license. +ReleaseNotesUrl: https://github.com/Glide01/BoxPilot/releases/tag/v1.13.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Glide01/BoxPilot/1.13.0/Glide01.BoxPilot.yaml b/manifests/g/Glide01/BoxPilot/1.13.0/Glide01.BoxPilot.yaml new file mode 100644 index 0000000000000..d4b3910126bc0 --- /dev/null +++ b/manifests/g/Glide01/BoxPilot/1.13.0/Glide01.BoxPilot.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Glide01.BoxPilot +PackageVersion: 1.13.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.installer.yaml b/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.installer.yaml new file mode 100644 index 0000000000000..0a1bfa649e05c --- /dev/null +++ b/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.installer.yaml @@ -0,0 +1,35 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GodotEngine.GodotEngine.Mono +PackageVersion: 4.7.1 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: Godot_v4.7.1-stable_mono_win32/Godot_v4.7.1-stable_mono_win32.exe + PortableCommandAlias: godot + - RelativeFilePath: Godot_v4.7.1-stable_mono_win32/Godot_v4.7.1-stable_mono_win32_console.exe + PortableCommandAlias: godot_console + InstallerUrl: https://github.com/godotengine/godot/releases/download/4.7.1-stable/Godot_v4.7.1-stable_mono_win32.zip + InstallerSha256: EEE10A399C1C924169487BDADE80FAB45DE78B04E01A1EA18F345EC3E569BA92 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: Godot_v4.7.1-stable_mono_win64/Godot_v4.7.1-stable_mono_win64.exe + PortableCommandAlias: godot + - RelativeFilePath: Godot_v4.7.1-stable_mono_win64/Godot_v4.7.1-stable_mono_win64_console.exe + PortableCommandAlias: godot_console + InstallerUrl: https://github.com/godotengine/godot/releases/download/4.7.1-stable/Godot_v4.7.1-stable_mono_win64.zip + InstallerSha256: 764A089809FB1A6F745686CE9F6D3CA83ADCE8FB60FB9A4E2324B63BAAEBAA45 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: Godot_v4.7.1-stable_mono_windows_arm64/Godot_v4.7.1-stable_mono_windows_arm64.exe + PortableCommandAlias: godot + - RelativeFilePath: Godot_v4.7.1-stable_mono_windows_arm64/Godot_v4.7.1-stable_mono_windows_arm64_console.exe + PortableCommandAlias: godot_console + InstallerUrl: https://github.com/godotengine/godot/releases/download/4.7.1-stable/Godot_v4.7.1-stable_mono_windows_arm64.zip + InstallerSha256: B6095E7866181157A32C5AF12A6A5E516B26752CE344AE9DA882C8EEC49A3277 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.locale.en-US.yaml b/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.locale.en-US.yaml new file mode 100644 index 0000000000000..34466fd279de9 --- /dev/null +++ b/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GodotEngine.GodotEngine.Mono +PackageVersion: 4.7.1 +PackageLocale: en-US +Publisher: Godot Engine +PublisherUrl: https://godotengine.org/ +PublisherSupportUrl: https://github.com/godotengine/godot/issues +PrivacyUrl: https://godotengine.org/privacy-policy +Author: Godot Engine +PackageName: Godot Engine (Mono) +PackageUrl: https://github.com/godotengine/godot +License: MIT +LicenseUrl: https://github.com/godotengine/godot/blob/HEAD/LICENSE.txt +Copyright: |- + Copyright (c) 2014-present Godot Engine contributors. + Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. +CopyrightUrl: https://godotengine.org/license +ShortDescription: The Mono version of the Godot Engine +Moniker: godot-mono +Tags: +- game-development +- game-engine +- gamedev +- godot +- godotengine +- hacktoberfest +- multi-platform +- open-source +ReleaseNotes: |- + Godot 4.7.1 is a maintenance release addressing stability and usability issues, and fixing all sorts of bugs. Maintenance releases are compatible with previous releases and are recommended for adoption. + Report bugs on GitHub after checking that they haven't been reported: + - https://github.com/godotengine/godot/issues + - Release notes + - Complete changelog + - Curated changelog + - Download (GitHub): Expand Assets below +ReleaseNotesUrl: https://github.com/godotengine/godot/releases/tag/4.7.1-stable +InstallationNotes: |- + Note when running WinGet to Install This Package *Without Admin Privileges*: + WinGet *Can Not* Create Command Line Alias(es) unless Admin Privileges are provided, as without Admin Privileges Winget *Can Not* Create Symbolic Links for those Command Lines Aliases. + More Details: + https://github.com/microsoft/winget-cli/issues/549 + https://github.com/microsoft/winget-cli/issues/361 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.godotengine.org/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.yaml b/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.yaml new file mode 100644 index 0000000000000..5148e6a83d04f --- /dev/null +++ b/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: GodotEngine.GodotEngine.Mono +PackageVersion: 4.7.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.installer.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.installer.yaml deleted file mode 100644 index 260b8365a477c..0000000000000 --- a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.installer.yaml +++ /dev/null @@ -1,74 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 138.0.7204.169 -InstallerType: exe -InstallModes: -- silent -InstallerSwitches: - Log: --verbose-logging --log-file="" -ExpectedReturnCodes: -- InstallerReturnCode: 60 - ReturnResponse: installInProgress -- InstallerReturnCode: 22 - ReturnResponse: cancelledByUser -- InstallerReturnCode: 4 - ReturnResponse: downgrade -- InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled -UpgradeBehavior: install -Protocols: -- http -- https -- mailto -- tel -FileExtensions: -- htm -- html -- pdf -- shtml -- svg -- webp -- xht -- xhtml -ProductCode: Google Chrome -Installers: -- Architecture: x86 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ek3q6pvih7wdijttbn22hfkhsq_138.0.7204.169/138.0.7204.169_chrome_installer_uncompressed.exe - InstallerSha256: 9CA54578D79E3E7C1EFAA9EDD4A08B6051B1950466CE532BDA192ACB5686ED5B - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: x86 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ek3q6pvih7wdijttbn22hfkhsq_138.0.7204.169/138.0.7204.169_chrome_installer_uncompressed.exe - InstallerSha256: 9CA54578D79E3E7C1EFAA9EDD4A08B6051B1950466CE532BDA192ACB5686ED5B - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -- Architecture: x64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ac2j67h3odyq3s2qkw2j5lhcieia_138.0.7204.169/138.0.7204.169_chrome_installer_uncompressed.exe - InstallerSha256: F650792667F5A2F5C482D8514914A7FC12D8BAF4D265339D635738DD9A91BAFF - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: x64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ac2j67h3odyq3s2qkw2j5lhcieia_138.0.7204.169/138.0.7204.169_chrome_installer_uncompressed.exe - InstallerSha256: F650792667F5A2F5C482D8514914A7FC12D8BAF4D265339D635738DD9A91BAFF - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -- Architecture: arm64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ackkrhunfob57xwk7tx7gpzcngjq_138.0.7204.169/138.0.7204.169_chrome_installer_uncompressed.exe - InstallerSha256: F19A60A139364C5BA95038C980A387CCDCFE8E5F29ADAC97C290D929D79AD54C - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: arm64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ackkrhunfob57xwk7tx7gpzcngjq_138.0.7204.169/138.0.7204.169_chrome_installer_uncompressed.exe - InstallerSha256: F19A60A139364C5BA95038C980A387CCDCFE8E5F29ADAC97C290D929D79AD54C - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.en-US.yaml deleted file mode 100644 index 5bbfa3ad09a19..0000000000000 --- a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 138.0.7204.169 -PackageLocale: en-US -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/ -PrivacyUrl: https://policies.google.com/privacy -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/chrome/ -License: Freeware -LicenseUrl: https://www.google.com/chrome/terms -Copyright: Copyright 2024 Google LLC. All rights reserved. -ShortDescription: The browser built by Google -Description: A more simple, secure, and faster web browser than ever, with Google’s smarts built-in. -Tags: -- browser -- chromium -- internet -- web -- webpage -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.nb-NO.yaml deleted file mode 100644 index a93e862c60413..0000000000000 --- a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 138.0.7204.169 -PackageLocale: nb-NO -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=no -PrivacyUrl: https://policies.google.com/privacy?hl=no -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/intl/no/chrome/ -License: Gratis Programvare -LicenseUrl: https://www.google.com/intl/no/chrome/terms -Copyright: Copyright 2024 Google LLC. Med enerett. -ShortDescription: Nettleseren fra Google -Description: Enklere, tryggere og raskere enn noensinne – med Googles smarte funksjoner. -Tags: -- chromium -- nettleseren -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.zh-CN.yaml deleted file mode 100644 index 1ed1f8dc5206e..0000000000000 --- a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 138.0.7204.169 -PackageLocale: zh-CN -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=zh-Hans -PrivacyUrl: https://policies.google.com/privacy?hl=zh-CN -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/intl/zh-CN/chrome/ -License: 免费软件 -LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms -Copyright: 版权所有 2024 Google LLC. 保留所有权利。 -ShortDescription: 由 Google 打造的浏览器 -Description: 得益于 Google 智能工具,Chrome 现在更易用、更安全、更快速。 -Tags: -- chromium -- 互联网 -- 浏览器 -- 网页 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.installer.yaml b/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.installer.yaml deleted file mode 100644 index a281f37383629..0000000000000 --- a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.installer.yaml +++ /dev/null @@ -1,74 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 139.0.7258.155 -InstallerType: exe -InstallModes: -- silent -InstallerSwitches: - Log: --verbose-logging --log-file="" -ExpectedReturnCodes: -- InstallerReturnCode: 60 - ReturnResponse: installInProgress -- InstallerReturnCode: 22 - ReturnResponse: cancelledByUser -- InstallerReturnCode: 4 - ReturnResponse: downgrade -- InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled -UpgradeBehavior: install -Protocols: -- http -- https -- mailto -- tel -FileExtensions: -- htm -- html -- pdf -- shtml -- svg -- webp -- xht -- xhtml -ProductCode: Google Chrome -Installers: -- Architecture: x86 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/acbj57wq2k6dcqdfm67khvqhuasq_139.0.7258.155/139.0.7258.155_chrome_installer_uncompressed.exe - InstallerSha256: DD67FE6B6EA6CE94EDF27D7F9A0C8110668CD221EF7F88A1369492AE6E33661A - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: x86 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/acbj57wq2k6dcqdfm67khvqhuasq_139.0.7258.155/139.0.7258.155_chrome_installer_uncompressed.exe - InstallerSha256: DD67FE6B6EA6CE94EDF27D7F9A0C8110668CD221EF7F88A1369492AE6E33661A - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -- Architecture: x64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ac3tly6emuya6wht2jjcdao4aubq_139.0.7258.155/139.0.7258.155_chrome_installer_uncompressed.exe - InstallerSha256: 12A00A63171EDDBB4DDBB6864CA44458A2D737B1E85095D9272EECBABD1D232E - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: x64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ac3tly6emuya6wht2jjcdao4aubq_139.0.7258.155/139.0.7258.155_chrome_installer_uncompressed.exe - InstallerSha256: 12A00A63171EDDBB4DDBB6864CA44458A2D737B1E85095D9272EECBABD1D232E - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -- Architecture: arm64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ic5wmwmaa5tedqys5p462emclu_139.0.7258.155/139.0.7258.155_chrome_installer_uncompressed.exe - InstallerSha256: 5768D96AFD31EAE00578213944B4E90B4B594D5DB6A7E1D755158DBB76976368 - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: arm64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ic5wmwmaa5tedqys5p462emclu_139.0.7258.155/139.0.7258.155_chrome_installer_uncompressed.exe - InstallerSha256: 5768D96AFD31EAE00578213944B4E90B4B594D5DB6A7E1D755158DBB76976368 - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.en-US.yaml deleted file mode 100644 index 95b0a06345028..0000000000000 --- a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 139.0.7258.155 -PackageLocale: en-US -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/ -PrivacyUrl: https://policies.google.com/privacy -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/chrome/ -License: Freeware -LicenseUrl: https://www.google.com/chrome/terms -Copyright: Copyright 2024 Google LLC. All rights reserved. -ShortDescription: The browser built by Google -Description: A more simple, secure, and faster web browser than ever, with Google’s smarts built-in. -Tags: -- browser -- chromium -- internet -- web -- webpage -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.nb-NO.yaml deleted file mode 100644 index 1fb60e2bc82f3..0000000000000 --- a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 139.0.7258.155 -PackageLocale: nb-NO -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=no -PrivacyUrl: https://policies.google.com/privacy?hl=no -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/intl/no/chrome/ -License: Gratis Programvare -LicenseUrl: https://www.google.com/intl/no/chrome/terms -Copyright: Copyright 2024 Google LLC. Med enerett. -ShortDescription: Nettleseren fra Google -Description: Enklere, tryggere og raskere enn noensinne – med Googles smarte funksjoner. -Tags: -- chromium -- nettleseren -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.zh-CN.yaml deleted file mode 100644 index e68e2872ef753..0000000000000 --- a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 139.0.7258.155 -PackageLocale: zh-CN -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=zh-Hans -PrivacyUrl: https://policies.google.com/privacy?hl=zh-CN -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/intl/zh-CN/chrome/ -License: 免费软件 -LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms -Copyright: 版权所有 2024 Google LLC. 保留所有权利。 -ShortDescription: 由 Google 打造的浏览器 -Description: 得益于 Google 智能工具,Chrome 现在更易用、更安全、更快速。 -Tags: -- chromium -- 互联网 -- 浏览器 -- 网页 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.installer.yaml b/manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.installer.yaml similarity index 94% rename from manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.installer.yaml rename to manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.installer.yaml index fec104b81f398..5e93e4db14baf 100644 --- a/manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.installer.yaml +++ b/manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Google.CloudSDK -PackageVersion: 575.0.1 +PackageVersion: 576.0.0 InstallerType: nullsoft Scope: machine InstallModes: diff --git a/manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.locale.en-US.yaml b/manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.locale.en-US.yaml similarity index 95% rename from manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.locale.en-US.yaml rename to manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.locale.en-US.yaml index 33b49d52c8fd5..99a8f446cc8a6 100644 --- a/manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.locale.en-US.yaml +++ b/manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Google.CloudSDK -PackageVersion: 575.0.1 +PackageVersion: 576.0.0 PackageLocale: en-US Publisher: Google LLC PublisherUrl: https://cloud.google.com/ diff --git a/manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.yaml b/manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.yaml similarity index 88% rename from manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.yaml rename to manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.yaml index 1b2185b0c75ee..6d8fc8d351bc9 100644 --- a/manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.yaml +++ b/manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Google.CloudSDK -PackageVersion: 575.0.1 +PackageVersion: 576.0.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.installer.yaml b/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.installer.yaml new file mode 100644 index 0000000000000..6df010a9f58b2 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 1.1.1 +InstallerType: portable +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: terragrunt.exe + PortableCommandAlias: terragrunt +Commands: +- terragrunt +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v1.1.1/terragrunt_windows_386.exe + InstallerSha256: B9F1064B30CC72727F164494E8C4BECF063A973417F0FFB52A906AE53DE2D506 +- Architecture: x64 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v1.1.1/terragrunt_windows_amd64.exe + InstallerSha256: 0AE2806AD974FCD3E75680B6B702BEC85A1F62B23F30202E58D4D2D38795E3EA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.locale.en-US.yaml b/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.locale.en-US.yaml new file mode 100644 index 0000000000000..cb1dcf99a4589 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.locale.en-US.yaml @@ -0,0 +1,100 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 1.1.1 +PackageLocale: en-US +Publisher: Gruntwork +PublisherUrl: https://terragrunt.gruntwork.io/ +PublisherSupportUrl: https://terragrunt.gruntwork.io/docs/community/support +PrivacyUrl: https://gruntwork.io/legal/privacy-policy +PackageName: Terragrunt +PackageUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.68.9 +License: MIT +LicenseUrl: https://github.com/gruntwork-io/terragrunt/blob/HEAD/LICENSE.txt +Copyright: © 2024 Gruntwork, Inc. All rights reserved. +ShortDescription: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Description: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Tags: +- IaC +- Infrastructure as Code +- Terraform +- Terraform Wrapper +- terragrunt +ReleaseNotes: |- + 🐛 Bug Fixes + Chained role assumption for the S3 backend + When AWS credentials were supplied through --auth-provider-cmd or environment variables, Terragrunt ignored the assume_role attribute of the remote_state block for its own backend operations, such as bootstrapping the state bucket. In cross-account setups this caused access errors, even though OpenTofu/Terraform itself assumed the role correctly during runs. + Terragrunt now uses the supplied credentials as the source identity and assumes the configured role on top of them. The same applies to roles configured via the iam_role attribute or the --iam-assume-role flag, and to fetching dependency outputs directly from S3 state. + Safer temporary clone directories for terragrunt catalog + Terragrunt now creates a fresh temporary clone directory for each catalog load, rejects symlinked clone roots, and removes catalog clones when the TUI session exits. + Resolve dependency outputs for units that reference a dependency in a hook, extra_arguments, or remote_state block + Resolving a unit's dependency outputs for a downstream unit no longer fails when that unit references its own dependency in: + - a before_hook, after_hook, or error_hook + - an extra_arguments block + - a remote_state block + Previously these raised There is no variable named "dependency" on the downstream unit, and a remote_state reference could crash Terragrunt. + Limit IaC engine archive extraction + Terragrunt now protects developer machines and CI runners from engine archives that expand into unexpectedly large amounts of data. If an IaC engine package is unusually large or contains too many files, Terragrunt stops processing it before it can consume excessive disk space. + --filter-allow-destroy with ...[] dependent-traversal filters no longer fails + --filter-allow-destroy --filter '...[HEAD~1...HEAD]' failed with "Too many command line arguments" or hung when the deleted unit had dependents. Terragrunt now correctly plans and destroys deleted units regardless of whether dependents are included in the run. + Fix find and list missing units inside generated stacks for Git-based filters + terragrunt find and terragrunt list with a Git-based filter (for example --filter '[HEAD^1...HEAD]') now detect units inside generated stacks. Previously they did not generate stacks in the worktrees they create for the comparison, so no unit nested in a generated stack was ever surfaced, while terragrunt run --all with the same filter targeted those units correctly. + This affected every change that lands inside a generated stack, including a modified terragrunt.stack.hcl, a change to a unit's own files, and a change to a file the stack reads via read_terragrunt_config or mark_glob_as_read. + Stacks are generated only inside the comparison worktrees; find and list still do not generate stacks in your current working directory by default. + Treat Git source ref values strictly as references + Terragrunt now passes the ref from a Git module source to git strictly as a reference when downloading through content-addressable storage. Previously a source whose ref began with a git option (for example a value starting with --) could be interpreted by git as an option rather than a reference while fetching the source. + Terragrunt now terminates git option parsing before the repository and reference arguments in its fetch, clone, and ls-remote invocations, so these values can only ever be read as the repository and reference they are meant to be. Normal refs, branches, tags, and commit SHAs continue to work unchanged. + hcl validate resolves get_original_terragrunt_dir() to the discovered unit + terragrunt hcl validate and terragrunt hcl validate --inputs now resolve get_original_terragrunt_dir() to each discovered unit's own directory instead of the directory the command was launched from. Previously, when the command ran from a parent directory that discovered units in subdirectories, any read_terragrunt_config() call that built a path relative to get_original_terragrunt_dir() resolved against the wrong directory and failed with "You attempted to run terragrunt in a folder that does not contain a terragrunt.hcl file", even though plan, apply, and run validate worked on the same configuration. + Both commands now set the original config path per discovered unit before parsing, matching the behavior of run and backend bootstrap, so relative paths resolve against the unit that owns them. + Respect -lockfile=readonly during provider caching + When you pass -lockfile=readonly to init, Terragrunt no longer generates or updates .terraform.lock.hcl while warming the provider cache. Previously the cache step could write the lock file before OpenTofu/Terraform ran, so the read-only check always passed and silently defeated the flag. + Terragrunt now leaves the lock file untouched and lets OpenTofu/Terraform enforce it, failing when the lock file is missing or incomplete. The flag is honored whether it is supplied on the command line or through the TF_CLI_ARGS or TF_CLI_ARGS_init environment variables. + run --all no longer crashes on dependency discovery with graph filters + Running run --all with a filter that expands a git range through the dependency graph (for example [HEAD~1...HEAD]...) could fail during dependency discovery, reporting that a component "is missing its working directory". Whether it happened depended on the size and shape of the changed unit's dependency closure, so the same filter succeeded on smaller branches and find was unaffected. + A dependency reached from several units at once could become visible to discovery before its working directory was set, so a concurrent traversal could read it before it was complete. Dependencies now have their working directory set before they become visible, so run --all behaves the same regardless of graph size. + terraform_binary respected by run --all when both tofu and terraform are on PATH + run --all ignored a unit's terraform_binary setting and fell back to the auto-detected default (OpenTofu when both binaries are on PATH). The per-unit options used to execute each unit are cloned from the stack options, whose binary path is the auto-detected default, and the configured value was never applied to them. + Each unit now honors its own terraform_binary, matching the behavior of a single run. Setting --tf-path or TG_TF_PATH still takes precedence over the config value. + S3 bucket creation failures report the underlying error + When creating the state bucket failed during backend bootstrap, the reported error was a misleading NoSuchBucket from a follow-up access check, hiding the actual cause. The original creation error, such as AccessDenied, is now part of the reported message. + Allow empty locals blocks in terragrunt.stack.hcl + Fixed a bug where an empty locals {} block in a stack configuration could break stack generate. + Clear error when terraform.source references a dependency output + A terraform.source that references dependency..outputs. is now rejected with a message explaining that the module source must be resolvable before dependencies are evaluated. + Terragrunt resolves the source while discovering units and building the run queue, before any dependency has run, so such a source can never be satisfied. Previously it surfaced a cryptic decode error. + 🧪 Experiments Added + oci - Module sources from OCI registries + The oci experiment has been added as the gate for downloading source code (including OpenTofu modules) from OCI Distribution registries using oci:// schema URLs in Terragrunt configurations (including terraform.source attributes). This targets the same registries OpenTofu 1.10 supports natively, such as Amazon ECR, GitHub Container Registry, Azure Container Registry, Google Artifact Registry, and self-hosted or air-gapped registries. + Enabling the experiment has no behavioral effect yet: the getter that will resolve oci:// sources is not wired into source downloading, so oci:// sources still fail to download. Functional support will land in follow-up releases, gated by this experiment. + For setup steps, see the experiment documentation. + version-attribute - Resolve registry modules from a version constraint + The version-attribute experiment has been added to gate a new version attribute on the terraform block. It holds a version constraint (such as ~> 3.3 or >= 1.0.0, < 2.0.0) for a tfr:// registry module, and Terragrunt resolves it to the highest published version that satisfies the constraint before downloading: + terraform { + source = "tfr://registry.opentofu.org/terraform-aws-modules/vpc/aws" + version = "~> 3.3" + } + This brings the terraform block to parity with the version argument on OpenTofu and Terraform module blocks. The attribute applies to tfr:// sources only, and cannot be combined with an inline ?version= on the same source. + Enable it with --experiment version-attribute. For setup steps and the criteria for stabilization, see the experiment documentation. + ⚙️ Process Updates + Friendly panic reports + Terragrunt now writes a terragrunt-crash-YYYYMMDDTHHMMSSZ-.log file when it crashes. + The report includes runtime details, the command line, the panic message, and the stack trace. You can conveniently share this file (after reviewing for sensitive information) to report panics if Terragrunt crashes. + Pull Requests + ✨ Features + - feat: terragrunt panic reporting by @denis256 in #6120 + - feat(experiment): introduce oci experiment flag for OCI module sources by @denis256 in #6461 + - feat(getter): add OCIGetter by @denis256 in #6478 + - feat: Add and validate the version attribute on the terraform block by @yhakbar in #6475 + - feat: Gate and resolve the version constraint at download time by @yhakbar in #6477 + 🐛 Bug Fixes + - fix: Avoiding generation of the lockfile when users supply -lockfile=readonly by @yhakbar in #6358 + - fix: Fixing combination of --filter-allow-destroy with graph + Git expression combo by @yhakbar in #6322 + - fix: use updated/correct GTM tag by @ZachGoldberg in #6439 +ReleaseNotesUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v1.1.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/gruntwork-io/terragrunt/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.yaml b/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.yaml new file mode 100644 index 0000000000000..cc6897f2c40e3 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 1.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.installer.yaml b/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.installer.yaml new file mode 100644 index 0000000000000..18e2017c6e721 --- /dev/null +++ b/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.installer.yaml @@ -0,0 +1,38 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: gg.ai.ggcode-cli +PackageVersion: 1.3.152 +Platform: +- Windows.Desktop +InstallerType: wix +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- ggcode +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/topcheer/ggcode/releases/download/v1.3.152/ggcode_1.3.152_windows_x64.msi + InstallerSha256: 548BCB67831D47F54AD3DF44D886182660DC93A13106B27AB5AF6D3060D82148 + ProductCode: '{F003E337-E96A-46C3-9FA6-CBE4EAD58512}' + AppsAndFeaturesEntries: + - DisplayName: ggcode + Publisher: GG AI Studio + ProductCode: '{F003E337-E96A-46C3-9FA6-CBE4EAD58512}' + UpgradeCode: '{B3C4D5E6-F7A8-9012-BCDE-F23456789012}' +- Architecture: arm64 + InstallerUrl: https://github.com/topcheer/ggcode/releases/download/v1.3.152/ggcode_1.3.152_windows_arm64.msi + InstallerSha256: 8BEB1C41459618CE960CA13A15E5A6FAEEBBECC92202ABE91785BA15B52091DC + ProductCode: '{5484BD25-BE2E-4BF7-8475-A2F3E81E176B}' + AppsAndFeaturesEntries: + - DisplayName: ggcode + Publisher: GG AI Studio + ProductCode: '{5484BD25-BE2E-4BF7-8475-A2F3E81E176B}' + UpgradeCode: '{B3C4D5E6-F7A8-9012-BCDE-F23456789012}' +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.locale.en-US.yaml b/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.locale.en-US.yaml new file mode 100644 index 0000000000000..f407f82cf307b --- /dev/null +++ b/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: gg.ai.ggcode-cli +PackageVersion: 1.3.152 +PackageLocale: en-US +Publisher: GG AI Studio +PublisherUrl: https://github.com/topcheer +PublisherSupportUrl: https://github.com/topcheer/ggcode/issues +Author: GG AI Studio +PackageName: ggcode +PackageUrl: https://github.com/topcheer/ggcode +License: MIT +LicenseUrl: https://github.com/topcheer/ggcode/blob/v1.3.52/LICENSE +ShortDescription: AI coding agent for the terminal. +Description: |- + ggcode is an AI coding agent for terminal-first workflows. It can understand + repositories, edit files, run commands, use MCP tools, and keep working with + resumable sessions inside a full-screen TUI. +Moniker: ggcode +Tags: +- ai +- cli +- coding +- developer-tools +- mcp +- terminal +ReleaseNotesUrl: https://github.com/topcheer/ggcode/releases/tag/v1.3.152 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/topcheer/ggcode/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.yaml b/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.yaml new file mode 100644 index 0000000000000..3be4bc4164ceb --- /dev/null +++ b/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: gg.ai.ggcode-cli +PackageVersion: 1.3.152 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.installer.yaml b/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.installer.yaml new file mode 100644 index 0000000000000..5c85c79c7158f --- /dev/null +++ b/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.installer.yaml @@ -0,0 +1,49 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: gg.ai.ggcode-desktop +PackageVersion: 1.3.152 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: wix +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /qn + SilentWithProgress: /qb +UpgradeBehavior: install +ProductCode: '{4652FE03-2116-419C-A034-5FCFFA00449A}' +AppsAndFeaturesEntries: +- DisplayName: GGCode Desktop + Publisher: GG AI Studio + ProductCode: '{4652FE03-2116-419C-A034-5FCFFA00449A}' + UpgradeCode: '{D4E5F6A7-B8C9-0123-CDEF-345678901234}' + InstallerType: wix +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/topcheer/ggcode/releases/download/v1.3.152/ggcode-desktop_1.3.152_windows_x64.msi + InstallerSha256: 24E41B52B9F3586142BACA6CE2D053F2E89E8A5D519810631F528E5BFDF4D887 + ProductCode: '{4652FE03-2116-419C-A034-5FCFFA00449A}' + AppsAndFeaturesEntries: + - DisplayName: GGCode Desktop + Publisher: GG AI Studio + ProductCode: '{4652FE03-2116-419C-A034-5FCFFA00449A}' + UpgradeCode: '{D4E5F6A7-B8C9-0123-CDEF-345678901234}' + InstallerType: wix +- Architecture: arm64 + InstallerUrl: https://github.com/topcheer/ggcode/releases/download/v1.3.152/ggcode-desktop_1.3.152_windows_arm64.msi + InstallerSha256: E7CA90BF79E8E1209D33CD24FDD1EFCB278AB40157E619E940F5675DDB7737E8 + ProductCode: '{D70A9CCC-2EF9-4BB2-B507-BB1A14F30ED1}' + AppsAndFeaturesEntries: + - DisplayName: GGCode Desktop + Publisher: GG AI Studio + ProductCode: '{D70A9CCC-2EF9-4BB2-B507-BB1A14F30ED1}' + UpgradeCode: '{D4E5F6A7-B8C9-0123-CDEF-345678901234}' + InstallerType: wix +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.locale.en-US.yaml b/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.locale.en-US.yaml new file mode 100644 index 0000000000000..c2edf217dfcd1 --- /dev/null +++ b/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: gg.ai.ggcode-desktop +PackageVersion: 1.3.152 +PackageLocale: en-US +Publisher: GG AI Studio +PublisherUrl: https://github.com/topcheer +PublisherSupportUrl: https://github.com/topcheer/ggcode/issues +Author: GG AI Studio +PackageName: GGCode Desktop +PackageUrl: https://github.com/topcheer/ggcode +License: MIT +LicenseUrl: https://github.com/topcheer/ggcode/blob/v1.3.52/LICENSE +ShortDescription: AI coding agent with a native desktop interface. +Description: |- + GGCode Desktop is a native graphical interface for ggcode, an AI coding agent + focused on code understanding, repo editing, command execution, MCP tools, + resumable sessions, and coding workflows. +Tags: +- ai +- coding +- desktop +- developer-tools +- mcp +- terminal +ReleaseNotesUrl: https://github.com/topcheer/ggcode/releases/tag/v1.3.152 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/topcheer/ggcode/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.yaml b/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.yaml new file mode 100644 index 0000000000000..27fa9eb7ead0c --- /dev/null +++ b/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: gg.ai.ggcode-desktop +PackageVersion: 1.3.152 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.installer.yaml b/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.installer.yaml new file mode 100644 index 0000000000000..5bd0a0b5268f0 --- /dev/null +++ b/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: goldjg.cARL +PackageVersion: 0.4.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: carl.exe + PortableCommandAlias: carl +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/goldjg/cARL/releases/download/v0.4.2/carl_0.4.2_windows_amd64.zip + InstallerSha256: C4CDAFE2026E7647E5E80C6CF0D2A644B298D05E6093506ED00B0C1C4E33A692 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.locale.en-GB.yaml b/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.locale.en-GB.yaml new file mode 100644 index 0000000000000..9953b54ca7361 --- /dev/null +++ b/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.locale.en-GB.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: goldjg.cARL +PackageVersion: 0.4.2 +PackageLocale: en-GB +Publisher: goldjg +PackageName: cARL +License: MIT +ShortDescription: Cognitive Agent Runtime Layer for AI coding agents +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.yaml b/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.yaml new file mode 100644 index 0000000000000..bcc92aca12ff5 --- /dev/null +++ b/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: goldjg.cARL +PackageVersion: 0.4.2 +DefaultLocale: en-GB +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.installer.yaml b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.installer.yaml new file mode 100644 index 0000000000000..bed7a9d806945 --- /dev/null +++ b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: HaiYing.AionUi +PackageVersion: 2.1.35 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.35/AionUi-2.1.35-win-x64.exe + InstallerSha256: 8C40D53EDABE5F0BDDD258B461B0096AF3A8C125DF338DCA5DA05EEB10486560 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.35/AionUi-2.1.35-win-x64.exe + InstallerSha256: 8C40D53EDABE5F0BDDD258B461B0096AF3A8C125DF338DCA5DA05EEB10486560 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.35/AionUi-2.1.35-win-arm64.exe + InstallerSha256: FC468220CB05F3C1A49090A49224E6AA4354F3E51ACC1C155422E37326F65F21 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.locale.en-US.yaml b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.locale.en-US.yaml new file mode 100644 index 0000000000000..13159418d7e18 --- /dev/null +++ b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: HaiYing.AionUi +PackageVersion: 2.1.35 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + Highlights + This is a stability release that hardens sending, startup, packaging, and message rendering. + Bug Fixes + - Sending to a busy conversation is handled gracefully across all runtimes: instead of surfacing a raw conflict error, AionUi now recognizes "conversation is busy" responses and recovers the queued message properly. + - Fixed messages being truncated when the text happened to mention the internal file-attachment marker — attachment parsing now only applies to actual attachment blocks on your own messages. + - If assistant data fails to load at startup, AionUi now treats it as a repairable local-data issue and guides you through recovery instead of failing with a generic error. + - Bug reports filed from a team page now include the team context, making team issues easier to diagnose. + - The installer verifies bundled resources against a manifest, catching corrupted or incomplete installs before they cause runtime errors. + What's Changed + - fix(startup): classify assistant bootstrap failures as local data issues by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/3583 + - chore(docs): update WeChat group QR code to wx-16 by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/3588 + - fix(packaging): verify bundled resources from manifest by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3587 + - fix(feedback): attach team route context by @jiahe0510 in https://github.com/iOfficeAI/AionUi/pull/3586 + - fix(conversation): handle busy send conflicts by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3589 + - fix(renderer): restrict message file marker parsing by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3590 + - chore: bump version to 2.1.35 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3591 + New Contributors + - @jiahe0510 made their first contribution in https://github.com/iOfficeAI/AionUi/pull/3586 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v2.1.34...v2.1.35 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v2.1.35 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.locale.zh-CN.yaml b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f2442e14a3323 --- /dev/null +++ b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: HaiYing.AionUi +PackageVersion: 2.1.35 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.yaml b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.yaml new file mode 100644 index 0000000000000..61ae8250d518f --- /dev/null +++ b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: HaiYing.AionUi +PackageVersion: 2.1.35 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.installer.yaml b/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.installer.yaml new file mode 100644 index 0000000000000..c1508c7807c81 --- /dev/null +++ b/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: HishamMedhat.PortPeek +PackageVersion: 1.0.0 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/HishamM1/portpeek/releases/download/v1.0.0/PortPeek_1.0.0_x64-setup.exe + InstallerSha256: 35A736FEC6035E5F50109BE54C4501397D5E106011E622A963777A899A356482 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.locale.en-US.yaml b/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.locale.en-US.yaml new file mode 100644 index 0000000000000..fcb7445d4d7dd --- /dev/null +++ b/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: HishamMedhat.PortPeek +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: Hisham Medhat +PublisherUrl: https://github.com/HishamM1 +PublisherSupportUrl: https://github.com/HishamM1/portpeek/issues +PrivacyUrl: https://github.com/HishamM1/portpeek#privacy +Author: Hisham Medhat +PackageName: PortPeek +PackageUrl: https://github.com/HishamM1/portpeek +License: MIT License +LicenseUrl: https://github.com/HishamM1/portpeek/blob/main/LICENSE +Copyright: Copyright (c) 2026 Hisham Medhat +CopyrightUrl: https://github.com/HishamM1/portpeek/blob/main/LICENSE +ShortDescription: See what's listening on your local ports, and free a busy one in a click. +Description: A small Windows tray app that lists every process listening on a local port — with its │ +Moniker: portpeek +Tags: +- port +- ports +- localhost +- netstat +- tray +- devtools +- developer-tools +ReleaseNotes: https://github.com/HishamM1/portpeek/releases/tag/v1.0.0 +ReleaseNotesUrl: https://github.com/HishamM1/portpeek/releases/tag/v1.0.0 +InstallationNotes: PortPeek runs in the system tray — click the tray icon to open it. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.yaml b/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.yaml new file mode 100644 index 0000000000000..176a157cd7b79 --- /dev/null +++ b/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: HishamMedhat.PortPeek +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.installer.yaml b/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.installer.yaml deleted file mode 100644 index 1cd5d1155d81b..0000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.installer.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.3 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -Commands: -- cjc -- cjc-frontend -- cjcov -- cjdb -- cjfmt -- cjlint -- cjpm -- cjtrace-recover -ProductCode: Cangjie -ReleaseDate: 2025-10-10 -Installers: -- Architecture: x64 - InstallerUrl: https://cangjie-lang.cn/v1/files/auth/downLoad?nsId=142267&fileName=cangjie-sdk-windows-x64-1.0.3.exe&objectKey=68e724d33115f673ef1280f8 - InstallerSha256: CB0F95223C04865FD47DB35EE0AAFF6CDD577772A2F8C9D43FC7816E0B20A9EE -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.locale.en-US.yaml b/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.locale.en-US.yaml deleted file mode 100644 index fae1d923759dc..0000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.locale.en-US.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.3 -PackageLocale: en-US -# Publisher: -PublisherUrl: https://cangjie-lang.cn/en -# PublisherSupportUrl: -# PrivacyUrl: -# Author: -# PackageName: -PackageUrl: https://cangjie-lang.cn/en/download -# License: -# LicenseUrl: -# Copyright: -# CopyrightUrl: -ShortDescription: A new-generation programming language oriented to full-scenario intelligence -Description: The Cangjie programming language is a new-generation programming language oriented to full-scenario intelligence. It features native intelligence, being naturally suitable for all scenarios, high performance and strong security. It is mainly applied in scenarios such as native applications and service applications of HarmonyOS NEXT, providing developers with a good programming experience. -# Moniker: -Tags: -- harmonyos -- language -- oniro -- openharmony -- programming -- programming-language -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: Docs - DocumentUrl: https://cangjie-lang.cn/en/docs -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.locale.zh-CN.yaml b/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.locale.zh-CN.yaml deleted file mode 100644 index e8abffa8fd956..0000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.locale.zh-CN.yaml +++ /dev/null @@ -1,99 +0,0 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.3 -PackageLocale: zh-CN -Publisher: Huawei Technologies Co., Ltd. -PublisherUrl: https://cangjie-lang.cn/ -# PublisherSupportUrl: -PrivacyUrl: https://cangjie-lang.cn/pages/privacy -Author: Huawei Technologies Co., Ltd. -PackageName: Cangjie -PackageUrl: https://cangjie-lang.cn/download -License: Apache-2.0 -LicenseUrl: https://gitcode.com/Cangjie/cangjie_build/blob/dev/LICENSE -Copyright: Copyright Huawei Technologies Co., Ltd. 2022-2025. All rights reserved. -# CopyrightUrl: -ShortDescription: 面向全场景智能的新一代编程语言 -Description: 仓颉编程语言是一款面向全场景智能的新一代编程语言,主打原生智能化、天生全场景、高性能、强安全。主要应用于鸿蒙原生应用及服务应用等场景中,为开发者提供良好的编程体验。 -# Moniker: -Tags: -- harmonyos -- oniro -- openharmony -- 编程 -- 编程语言 -- 语言 -- 鸿蒙 -ReleaseNotes: |- - 0. 版本介绍 - 本版本为 Cangjie 语言 LTS 1.0.0 版本的更新版本(LTS 版本定义及维护周期详见仓颉社区版本生命周期管理规范,版本号为 Cangjie 1.0.3,主要解决部分发现的 Bug,以及对某些功能进行优化。版本包含了仓颉应用开发必须的能力,包括编译器,运行时,标准库,和工具链。欢迎各位开发者使用,如有任何问题,欢迎在 Cangjie 社区提出 issue,我们会第一时间处理。以下介绍本版本相比 LTS 1.0.3 版本的更新。 - 1. 语言特性 - 修复部分问题,无特性新增。 - 2. 编译器 - 修复部分问题,无特性新增。 - 3. 运行时 - 修复部分问题,无特性新增。 - 4. 标准库 - 修复部分问题,无特性新增。 - 5. 工具链 - 1 IDE 插件 - 修复部分问题,无特性新增。 - 2 cjpm - 修复部分问题,无特性新增。 - 3 cjdb - 修复部分问题,无特性新增。 - 4 cjfmt - 修复部分问题,无特性新增。 - 5 cjlint - 无变化。 - 6 cjcov - 无变化。 - 7 cjprof - 无变化。 - 8 cjtrace-recover - 无变化。 - 6. 修复问题 - -【issue-2170】运行时崩溃"Thread 'out' catched unhandled SIGSEGV (Segmentation fault) from managed frame." - -【issue-2336】【LSP】cjpm.toml 中 target 的顺序会导致 vscode 插件无法识别 stdx。 - -【issue-2167】windows 环境下,Directory.isEmpty()执行报错。 - -【issue-2328】【文档】编译器@!格式的注解没有文档说明。 - -【issue-2308】【LSP】【代码高亮】多行原始字符串高亮效果不正确。 - -【issue-2359】编译时发生 Internal Compiler Error, Error Code:13。 - -【issue-2322】项目 cjpm build 编译报错 command failed。 - -【issue-2337】cjpm build 时误报 unused import。 - -【issue-2352】AST 的 visitor 无法访问 block 节点。 - -【issue-2266】if 表达式中存在流程控制语句,并且表达式的类型为?String,if 表达式的计算结果有误。 - -【issue-2255】泛型推断错误。 - -【issue-2319】报错信息英文描述不准确。 - -【issue-2351】【文档】文档没有提到抽象函数 open 函数 接口实例函数可以是泛型函数。 - -【issue-1866】项目运行 cjpm build 报错 semantic error。 - -【issue-2307】多层级继承+扩展接口时发生 ICE。 - -【issue-2280】使用 @Derive 宏后 VSCode 插件误标错。 - -【issue-2190】代码编译时 sema 应该报错,实际程序无响应。 - -【issue-2323】代码符合 cjlint G.VAR.02 规则,但是出现误报,预期结果应该是无告警。 - -【非社区问题】cjpm test --coverage 崩溃,出现内部编译器错误:Broken llvm ir! (存储值类型与指针操作数类型不匹配!)。 - -【非社区问题】编译 cjpm 工程发生 ICE。 - -【非社区问题】【stdx】【http】偶现 stream 计数错误和 http 写超时。 - 7. 遗留问题 - windows 下编译 cjpm test 报错 - 【问题现象】windows 下编译 cjpm test,提示找不到 openssl 相关的动态库错误。 【规避措施】手动增加 cjpm test 时的-L 地址。 - 使用 exe 安装导致系统中原本的环境变量 path 丢失 - 【问题现象】当环境变量 path 长度(添加前长度,或者加上 Cangjie 环境变量后)超过 1024 位时,使用 exe 安装会导致系统中原本的环境变量 path 丢失。 【规避措施】使用 zip 安装包进行安装并手动配置环境变量。 - 8. 文档变更说明 - 开发指南 - - 注解>自定义注解”中补充预留语法“@!Annotation”说明。 - - 补充“包和模块管理”章节。 - 标准库 API - - 无变化。 - 工具指南 - - 无变化。 -ReleaseNotesUrl: https://docs.cangjie-lang.cn/docs/1.0.3/release_notes.html -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://cangjie-lang.cn/docs -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.yaml b/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.yaml deleted file mode 100644 index 925e9aa5eeca1..0000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.3 -DefaultLocale: zh-CN -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.installer.yaml b/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.installer.yaml deleted file mode 100644 index e0f618be15517..0000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.installer.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.4 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -Commands: -- cjc -- cjc-frontend -- cjcov -- cjdb -- cjfmt -- cjlint -- cjpm -- cjtrace-recover -ProductCode: Cangjie -ReleaseDate: 2025-11-10 -Installers: -- Architecture: x64 - InstallerUrl: https://cangjie-lang.cn/v1/files/auth/downLoad?nsId=142267&fileName=cangjie-sdk-windows-x64-1.0.4.exe&objectKey=691154a3a1061e7e7ef142dc - InstallerSha256: 4384273A237484DD1EE0E93332A54BBB69FDE924E609129220FF66829E04A7AD -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.locale.en-US.yaml b/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.locale.en-US.yaml deleted file mode 100644 index 7c5df7ce2c698..0000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.4 -PackageLocale: en-US -PublisherUrl: https://cangjie-lang.cn/en -PackageUrl: https://cangjie-lang.cn/en/download -ShortDescription: A new-generation programming language oriented to full-scenario intelligence -Description: The Cangjie programming language is a new-generation programming language oriented to full-scenario intelligence. It features native intelligence, being naturally suitable for all scenarios, high performance and strong security. It is mainly applied in scenarios such as native applications and service applications of HarmonyOS NEXT, providing developers with a good programming experience. -Tags: -- harmonyos -- language -- oniro -- openharmony -- programming -- programming-language -Documentations: -- DocumentLabel: Docs - DocumentUrl: https://cangjie-lang.cn/en/docs -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.locale.zh-CN.yaml b/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.locale.zh-CN.yaml deleted file mode 100644 index d7ffa19383496..0000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.locale.zh-CN.yaml +++ /dev/null @@ -1,134 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.4 -PackageLocale: zh-CN -Publisher: Huawei Technologies Co., Ltd. -PublisherUrl: https://cangjie-lang.cn/ -PrivacyUrl: https://cangjie-lang.cn/pages/privacy -Author: Huawei Technologies Co., Ltd. -PackageName: Cangjie -PackageUrl: https://cangjie-lang.cn/download -License: Apache-2.0 -LicenseUrl: https://gitcode.com/Cangjie/cangjie_build/blob/dev/LICENSE -Copyright: Copyright Huawei Technologies Co., Ltd. 2022-2025. All rights reserved. -ShortDescription: 面向全场景智能的新一代编程语言 -Description: 仓颉编程语言是一款面向全场景智能的新一代编程语言,主打原生智能化、天生全场景、高性能、强安全。主要应用于鸿蒙原生应用及服务应用等场景中,为开发者提供良好的编程体验。 -Tags: -- harmonyos -- oniro -- openharmony -- 编程 -- 编程语言 -- 语言 -- 鸿蒙 -ReleaseNotes: |- - 0. 版本介绍 - 本版本为 Cangjie 语言 LTS 1.0.0 版本的更新版本(LTS 版本定义及维护周期详见仓颉社区版本生命周期管理规范,版本号为 Cangjie 1.0.4,主要解决部分发现的 Bug,以及对某些功能进行优化。版本包含了仓颉应用开发必须的能力,包括编译器,运行时,标准库,和工具链。欢迎各位开发者使用,如有任何问题,欢迎在 Cangjie 社区提出 issue,我们会第一时间处理。以下介绍本版本相比 LTS 1.0.3 版本的更新。 - 1. 语言特性 - 无特性新增。 - 2. 编译器 - 本版本仅修复问题,无特性新增。修复问题如下: - -【issue-105】let 变量在 lambda 中被赋值了两次,未编译报错 - -【issue-2591】当同一个包不同文件中存在同名私有函数时,无法编译 - -【issue-2533】项目 cjpm build -g 编译失败,cjpm test --coverage 编译崩溃,报错 Error Code: 13 - -【issue-2565】【缺陷】Option 作为返回值时,当 T 为 Array,ArrayList 时,多层 API 调用时返回值不对 - 3. 运行时 - 本版本仅修复问题,无特性新增。修复问题如下: - -【issue-2395】新项目 MacOS26 报 SG_READ_ONLY 缺失,修复 MacOS26 编译失败问题 - -【issue-2649】在运行 GC 场景中,长时间压测情况下,偶现 cangjie 进程卡死现象问题解决 - 4. 标准库 - 本版本仅修复问题,无特性新增。修复问题如下: - -【issue-2242】修复在 Timer 的定时任务中调用 cancel()时后不能以预期的方式取消的问题 - -【issue-2408】修复 TreeMap 和 TreeSet 中出现同一 key 值多次出现的问题 - 5. 工具链 - 1 IDE 插件 - 本版本仅修复问题,无特性新增。修复问题如下: - -【issue-1961】codeArts 编译错误信息的中文内容显示为 - -【issue-6】codeArts 编译错误信息的中文内容显示为乱码 - 2 cjpm - 新增支持 lto-combined 功能,详情请参见工具指南。 - 本版本修复问题如下: - -【issue-2373】优化 cjpm init 报错信息 - -【issue-2650】tr5-2 交叉编译场景下,cjpm 宏包依赖出现错误 - 3 cjdb - 无变化。 - 4 cjfmt - 本版本仅修复问题,无特性新增:修复问题如下: - -【issue-2385】cjfmt 文档缺少 cangjie-format.toml 配置的介绍 - 5 cjlint - 本版本仅修复问题,无特性新增:修复问题如下: - -【issue-2433】cjlint 的 G.VAR.02 规则误报,预期无警告 - 6 cjcov - 无变化。 - 7 cjprof - 无变化。 - 8 cjtrace-recover - 无变化。 - 6. 遗留问题 - windows 下编译 cjpm test 报错 - 【问题现象】windows 下编译 cjpm test,提示找不到 openssl 相关的动态库错误。 - 【规避措施】手动增加 cjpm test 时的-L 地址。 - 在 lanbda body 体内修改 lambda 参数,编译崩溃 - 【问题现象】在 lambda body 体内误修改 lambda 参数,可能会导致 ICE,ErrorCode 为 12。 - 【规避措施】不要错误的在 lambda body 体内修改 lambda 参数 - 调用被扩展的接口函数的部分场景会导致运行时崩溃的问题 - 【问题现象】当存在一个泛型类 A 扩展了某个泛型接口 I,且存在另一个非泛型类 B 继承了实例化版本的类 A,将 B 的实例赋值给 I 类型变量且调用接口 I 函数时可能导致运行时崩溃。 样例: - interface I { - func foo() {} - } - - open class A {} - extend A <: I {} - - class B <: A {} - - main() { - let i: I = B() - i.foo() // 此处调用会发生运行阶段崩溃 - return 0 - } - 【规避措施】 方案一:若类 A 定义在本包,可以不使用扩展,通过 A 直接继承接口 I 以规避该问题。 规避样例: - interface I { - func foo() {} - } - open class A <: I {} // 使 A 继承 I - open class B <: A {} - - main() { - let i: I = B() - i.foo() - return 0 - } - 方案二:若类 A 是导入自其它包,可以将类 B 定义为泛型类以规避该问题。 规避样例: - import pkgA.A - - interface I { - func foo() {} - } - extend A <: I {} - - open class B <: A {} // 将类 B 定义为泛型类 - - main() { - let i: I = B() - i.foo() - return 0 - } - 7. 文档变更说明 - 开发指南 - - 程序结构章节新增说明:函数和 lambda 中的静态成员变量赋值,编译器无法判断函数或者 lambda 是否会被执行,因此采用保守策略,即编译报错。 - - 普通 try 表达式中新增说明:当在 try 块中可能发生内存溢出错误时,应避免在 catch 或 finally 块中执行任何内存分配操作,以免再次触发溢出并导致未定义行为。一旦检测到内存溢出,建议在 catch 块中立即终止程序(例如调用 exit 函数),以确保系统稳定性并防止进一步错误。 - - 新增编译选项--compile-as-exe 相关内容。 - 标准库 API - - 无变化。 - 工具指南 - - 格式化工具 cjfmt 章节新增说明:CANGJIE_HOME 环境下的默认格式化工具配置文件路径为 CANGJIE_HOME/tools/config。 - - cjpm 工具中的模块配置文件说明增加支持工程级 LTO 相关说明。 -ReleaseNotesUrl: https://cangjie-lang.cn/docs?url=/1.0.4/release_notes.html -Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://cangjie-lang.cn/docs -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.installer.yaml b/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.installer.yaml new file mode 100644 index 0000000000000..4d757bbeb5cb4 --- /dev/null +++ b/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: hidecode365.WinLauncher +PackageVersion: 0.1.0 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hidecode365/win-launcher/releases/download/v0.1.0/win-launcher_0.1.0_x64-setup.exe + InstallerSha256: A8E0DEAD98E589B24AEA36B007F5263C353F7698D1CF771FA96A8D65E311BE0C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.locale.en-US.yaml b/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.locale.en-US.yaml new file mode 100644 index 0000000000000..84687820f1f39 --- /dev/null +++ b/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: hidecode365.WinLauncher +PackageVersion: 0.1.0 +PackageLocale: en-US +Publisher: hidecode365 +PackageName: WinLauncher +License: MIT +ShortDescription: A fast, keyboard-driven launcher for Windows 11 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.yaml b/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.yaml new file mode 100644 index 0000000000000..ee6932ecc978c --- /dev/null +++ b/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: hidecode365.WinLauncher +PackageVersion: 0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.installer.yaml b/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.installer.yaml new file mode 100644 index 0000000000000..eb1d3eec4cf06 --- /dev/null +++ b/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.installer.yaml @@ -0,0 +1,20 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Intel.IntelDriverAndSupportAssistant +PackageVersion: 26.2.0.7 +InstallerType: burn +Scope: machine +InstallerSwitches: + Custom: /q +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- ProductCode: '{039CECE9-B083-4114-AFC7-5CDBA4321241}' + UpgradeCode: '{E220B4DB-8AE5-49E2-90EA-BF47D7E813D0}' +Installers: +- Architecture: x86 + InstallerUrl: https://dsadata.intel.com/installer + InstallerSha256: 2FD7C01B67F8EF9D7C7687591CB651C80542F9C62FE9D41C3FAE359C532BD59D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml b/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml new file mode 100644 index 0000000000000..861e356e68009 --- /dev/null +++ b/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Intel.IntelDriverAndSupportAssistant +PackageVersion: 26.2.0.7 +PackageLocale: en-US +Publisher: Intel +Author: Intel +PackageName: Intel® Driver & Support Assistant +License: Proprietary +Copyright: Copyright (c) Intel Corporation +ShortDescription: The Intel® Driver & Support Assistant enables you to scan computing devices for the latest drivers available from Intel. +Moniker: intel-dsa +Tags: +- assistant +- driver +- support +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.yaml b/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.yaml new file mode 100644 index 0000000000000..afa9a00c8afc9 --- /dev/null +++ b/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Intel.IntelDriverAndSupportAssistant +PackageVersion: 26.2.0.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.installer.yaml b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.installer.yaml new file mode 100644 index 0000000000000..3f79462982bc6 --- /dev/null +++ b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: iFlytek.iFlyRecSI +PackageVersion: 5.1.5 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: 28570c1d-6efa-5206-8e03-947b069cec3c +ReleaseDate: 2026-07-13 +Installers: +- Architecture: x64 + InstallerUrl: https://tongchuan.iflyrec.com/download/tjhz/windows/TJTC001/tjtc_TJTC001_setup_5.1.5_2442.exe + InstallerSha256: 57E47CE49BA8AF5900F421B23574D39DB9EA1ED25ACE9FC1D7D2177EB9426D4B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.locale.en-US.yaml b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.locale.en-US.yaml new file mode 100644 index 0000000000000..1cf3309441833 --- /dev/null +++ b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: iFlytek.iFlyRecSI +PackageVersion: 5.1.5 +PackageLocale: en-US +Author: Anhui Iflyrec Co., Ltd. +License: Proprietary +ShortDescription: An AI simultaneous interpretation software integrated with multilingual real-time transcription and translation, subtitle display, human assistance and live meeting. +Description: Based on iFlytek's cutting-edge intelligent speech and language technology, iFlyRec Simultaneous Interpretation provides multilingual simultaneous interpretation and various customized services for all scenarios. It offers personal floating subtitles and enterprise simultaneous interpretation services for scenarios such as conferences, exhibitions, office entertainment and live streaming to construct a multi-level ecosystem for iFlyRec Simultaneous Interpretation. It provides real-time transcription and translation between multiple languages, as well as various simultaneous interpretation services such as on-screen display, customized conferences, multilingual human simultaneous interpretation, multilingual speech synthesis, conference shorthand, conference live streaming and conference recording sharing through simultaneous interpretation products. iFlyRec Simultaneous Interpretation features efficiency, professionalism, and intelligence and has successfully provided services for thousands of different kinds of conferences, press conferences, and professional academic conferences all over the world. +Tags: +- caption +- chinese +- conference +- english +- meeting +- simultaneous-interpreting +- subtitle +- translate +- translation +- translator +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.locale.zh-CN.yaml b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6cb51d839cc62 --- /dev/null +++ b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: iFlytek.iFlyRecSI +PackageVersion: 5.1.5 +PackageLocale: zh-CN +Publisher: 安徽听见科技有限公司 +PublisherUrl: https://www.iflyrec.com/ +PublisherSupportUrl: https://tongchuan.iflyrec.com/index/helpcenter +PrivacyUrl: https://static.iflyrec.com/v1/iflyrectjpt/publicread01/privacyPolicy/huizhan/productPrivacyPolicy.html +Author: 安徽听见科技有限公司 +PackageName: 讯飞听见同传 +PackageUrl: https://tongchuan.iflyrec.com/ +License: 专有软件 +LicenseUrl: https://static.iflyrec.com/v1/iflyrectjpt/publicread01/privacyPolicy/huizhan/userPrivacyPolicy.html +Copyright: Copyright © 2026 安徽听见科技有限公司 +CopyrightUrl: https://www.iflyrec.com/html/helpCenter/legal.html +ShortDescription: 多语种实时转写翻译、字幕投屏、人工保障、会议直播一体化 AI 同传软件 +Description: 讯飞听见同传,基于科大讯飞世界前沿水平的智能语音和语言技术,提供全场景多语种同传及各类定制服务。面向会议、展会、办公娱乐、直播看剧等场景提供个人悬浮字幕、企业同传服务,构建讯飞听见同传的多层次生态的服务体系,通过同传产品提供多国语种的实时转写翻译及上屏展示、会议定制、多国语种人工同传、多国语种语音合成、会议速记、会议直播和会议记录分享等一体化同传服务。讯飞听见同传以高效、专业、智能为特色,已成功为国内外万余场大中型会议、发布会、专业学术会议提供服务。 +Tags: +- 中文 +- 会议 +- 同传 +- 同声传译 +- 字幕 +- 汉语 +- 翻译 +- 英文 +- 英语 +PurchaseUrl: https://tongchuan.iflyrec.com/index/recharge/refill-card-list +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.yaml b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.yaml new file mode 100644 index 0000000000000..60f3e6145b30e --- /dev/null +++ b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: iFlytek.iFlyRecSI +PackageVersion: 5.1.5 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.installer.yaml b/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.installer.yaml new file mode 100644 index 0000000000000..eeb3518e947db --- /dev/null +++ b/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.installer.yaml @@ -0,0 +1,28 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: icsharpcode.ILSpy +PackageVersion: 10.1.1.8388 +InstallerType: wix +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.10 +ProductCode: '{A12FDAB1-731B-4A98-9749-D4816E96A270}' +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- ProductCode: '{A12FDAB1-731B-4A98-9749-D4816E96A270}' + UpgradeCode: '{A12FDAB1-731B-4A98-9749-D481CE8692AB}' +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%/Programs/ILSpy' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/icsharpcode/ILSpy/releases/download/v10.1.1/ILSpy_Installer_10.1.1.8388-x64.msi + InstallerSha256: AF66FA7C15CCC7B6DA45218502A55E741DDF99F40F376D52EEFFFBAF469A58E7 +- Architecture: arm64 + InstallerUrl: https://github.com/icsharpcode/ILSpy/releases/download/v10.1.1/ILSpy_Installer_10.1.1.8388-arm64.msi + InstallerSha256: F999F98FEFD98EA0ADF3FC3781D7143A1F2C518748274D3A775FDE3D65CA6BA2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.locale.en-US.yaml b/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.locale.en-US.yaml new file mode 100644 index 0000000000000..ff5c7ff19f26a --- /dev/null +++ b/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: icsharpcode.ILSpy +PackageVersion: 10.1.1.8388 +PackageLocale: en-US +Publisher: ICSharpCode Team +PublisherUrl: https://github.com/icsharpcode/ILSpy +PublisherSupportUrl: https://github.com/icsharpcode/ILSpy/issues +PackageName: ILSpy +PackageUrl: https://github.com/icsharpcode/ILSpy +License: MIT +LicenseUrl: https://github.com/icsharpcode/ILSpy/blob/HEAD/LICENSE +Copyright: Copyright 2011-2023 AlphaSierraPapa for the ILSpy team +CopyrightUrl: https://github.com/icsharpcode/ILSpy/blob/master/doc/ILSpyAboutPage.txt +ShortDescription: Cross-Platform .NET assembly browser and decompiler. +Tags: +- c-sharp +- decompile +- decompiler +- decompiler-engine +- dotnet +- dotnetcore +- ilspy +- mono +- pdb +- unity +ReleaseNotes: |- + Warning + We DO NOT own the domain ilspy[.]org See #3709 + Download ILSpy only from GitHub Releases! + This release is based on .NET 10.0. Please make sure that you have it installed on your machine beforehand. + Bug Fixes + - Fix: Stop the assembly list from disposing removed assemblies +ReleaseNotesUrl: https://github.com/icsharpcode/ILSpy/releases/tag/v10.1.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/icsharpcode/ILSpy/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.yaml b/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.yaml new file mode 100644 index 0000000000000..0c05b72f087cd --- /dev/null +++ b/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: icsharpcode.ILSpy +PackageVersion: 10.1.1.8388 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 0000000000000..1dcc09de7f40b --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 29.28.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17134.0 +InstallerType: msix +PackageFamilyName: ohmyposh.cli_96v55e8n804z4 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v29.28.0/install-x64.msix + InstallerSha256: 45B4639A5AE6F64A4A1A60C95F43DFCF39B2163BD0F3E52480007DF718F304CC + SignatureSha256: E7AF4768C5B18179FD186B9E73DFA91A1783C7DAE5B5D1D14DF3C7CD7E6194C8 +- Architecture: arm64 + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v29.28.0/install-arm64.msix + InstallerSha256: 90B3EF104EB340078BCF3E537EA026D3A028B34876E906BA5C6C6B8A11E80D12 + SignatureSha256: C8AFC52B546E53EB03E6AC906717696D24F5C8D59D226902AD8BA648C286999E +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 0000000000000..e92cc443613cf --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 29.28.0 +PackageLocale: en-US +Publisher: Jan De Dobbeleer +PublisherUrl: https://github.com/JanDeDobbeleer +PublisherSupportUrl: https://github.com/JanDeDobbeleer/oh-my-posh/issues +Author: Jan De Dobbeleer +PackageName: Oh My Posh +PackageUrl: https://ohmyposh.dev/ +License: MIT +LicenseUrl: https://github.com/JanDeDobbeleer/oh-my-posh/raw/main/COPYING +ShortDescription: Prompt theme engine for any shell +Tags: +- bash +- cmd +- git +- nerd-fonts +- nushell +- powershell +- starship +- tooltips +- console +- command-line +- shell +- wsl +- developer-tools +- utilities +- cli +- terminal +ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v29.28.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.yaml new file mode 100644 index 0000000000000..a33c14c34c5b7 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 29.28.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/KDE/Chessament/0.1/KDE.Chessament.installer.yaml b/manifests/k/KDE/Chessament/0.1/KDE.Chessament.installer.yaml index 3eb0ca1424f88..d18a3e62d8f5b 100644 --- a/manifests/k/KDE/Chessament/0.1/KDE.Chessament.installer.yaml +++ b/manifests/k/KDE/Chessament/0.1/KDE.Chessament.installer.yaml @@ -9,14 +9,14 @@ ProductCode: Chessament Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/games/chessament/master/windows/chessament-master-740-windows-cl-msvc2022-x86_64.exe - InstallerSha256: C06B5162D5BF232EB9D2C72DFEDB539005CEC397BDC8FFEC7F7280FB7C58D821 + InstallerUrl: https://cdn.kde.org/ci-builds/games/chessament/master/windows/chessament-master-741-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 37ED48D8D6AF96153FFD279157CAA33063994C48D6DF78C89963EFAA726ECD48 InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/games/chessament/master/windows/chessament-master-740-windows-cl-msvc2022-x86_64.exe - InstallerSha256: C06B5162D5BF232EB9D2C72DFEDB539005CEC397BDC8FFEC7F7280FB7C58D821 + InstallerUrl: https://cdn.kde.org/ci-builds/games/chessament/master/windows/chessament-master-741-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 37ED48D8D6AF96153FFD279157CAA33063994C48D6DF78C89963EFAA726ECD48 InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/KDE/Minuet/26.11.70/KDE.Minuet.installer.yaml b/manifests/k/KDE/Minuet/26.11.70/KDE.Minuet.installer.yaml index 30dd2ad42f893..577752a123971 100644 --- a/manifests/k/KDE/Minuet/26.11.70/KDE.Minuet.installer.yaml +++ b/manifests/k/KDE/Minuet/26.11.70/KDE.Minuet.installer.yaml @@ -9,14 +9,14 @@ ProductCode: minuet Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/education/minuet/master/windows/minuet-master-1211-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 4ED27A4568FFADC1DB5620D31DF020978C5B3E931EBEA1B83CE070EE977A1337 + InstallerUrl: https://cdn.kde.org/ci-builds/education/minuet/master/windows/minuet-master-1215-windows-cl-msvc2022-x86_64.exe + InstallerSha256: C3EF93BE2C252C06173BC48274D69440F534F70B5940491C841786DFC401FEF4 InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/education/minuet/master/windows/minuet-master-1211-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 4ED27A4568FFADC1DB5620D31DF020978C5B3E931EBEA1B83CE070EE977A1337 + InstallerUrl: https://cdn.kde.org/ci-builds/education/minuet/master/windows/minuet-master-1215-windows-cl-msvc2022-x86_64.exe + InstallerSha256: C3EF93BE2C252C06173BC48274D69440F534F70B5940491C841786DFC401FEF4 InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/Kado/Cin/0.1.6/Kado.Cin.installer.yaml b/manifests/k/Kado/Cin/0.1.6/Kado.Cin.installer.yaml new file mode 100644 index 0000000000000..687178904c4df --- /dev/null +++ b/manifests/k/Kado/Cin/0.1.6/Kado.Cin.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: Kado.Cin +PackageVersion: 0.1.6 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-06-27" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cin.exe + PortableCommandAlias: cin + InstallerUrl: https://github.com/kado-so/cin/releases/download/v0.1.6/cin_0.1.6_windows_amd64.zip + InstallerSha256: 13192a81b34d470d59cca98d53a5b3c788ea0dce6304cb203687d80ae18ffef5 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cin.exe + PortableCommandAlias: cin + InstallerUrl: https://github.com/kado-so/cin/releases/download/v0.1.6/cin_0.1.6_windows_arm64.zip + InstallerSha256: 7186b34a6e74f9a60ace18a4c23fea6bff5974cad70c3591814cf32b2b4a5316 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kado/Cin/0.1.6/Kado.Cin.locale.en-US.yaml b/manifests/k/Kado/Cin/0.1.6/Kado.Cin.locale.en-US.yaml new file mode 100644 index 0000000000000..ecfd1bcdcdb3e --- /dev/null +++ b/manifests/k/Kado/Cin/0.1.6/Kado.Cin.locale.en-US.yaml @@ -0,0 +1,22 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: Kado.Cin +PackageVersion: 0.1.6 +PackageLocale: en-US +Publisher: Kado +PublisherUrl: https://github.com/kado-so +PublisherSupportUrl: https://github.com/kado-so/cin/issues/new +PackageName: cin +PackageUrl: https://github.com/kado-so/cin +License: MIT +Copyright: Kado +ShortDescription: Config management CLI for encrypted app config +Description: Config management CLI for encrypted app config +Moniker: cin +Tags: + - config + - secrets + - cli +ReleaseNotesUrl: https://github.com/kado-so/cin/releases/tag/v0.1.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kado/Cin/0.1.6/Kado.Cin.yaml b/manifests/k/Kado/Cin/0.1.6/Kado.Cin.yaml new file mode 100644 index 0000000000000..8a9c76986bb54 --- /dev/null +++ b/manifests/k/Kado/Cin/0.1.6/Kado.Cin.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: Kado.Cin +PackageVersion: 0.1.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/KeeperSecurity/KeeperDB/2.2.0/KeeperSecurity.KeeperDB.installer.yaml b/manifests/k/KeeperSecurity/KeeperDB/2.2.0/KeeperSecurity.KeeperDB.installer.yaml new file mode 100644 index 0000000000000..ddf057b9345cd --- /dev/null +++ b/manifests/k/KeeperSecurity/KeeperDB/2.2.0/KeeperSecurity.KeeperDB.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: KeeperSecurity.KeeperDB +PackageVersion: 2.2.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://keepersecurity.com/pam/keeperdb/v2.2.0/KeeperDB_2.2.0_x64_en-US.msi + InstallerSha256: cc56114baccbb09de13fda646b47569923125860b0d7e7ca85974ea84a95a32a + ProductCode: '{A1F61BB2-59F2-4CC2-B082-25D9577A3B0C}' +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/k/KeeperSecurity/KeeperDB/2.2.0/KeeperSecurity.KeeperDB.locale.en-US.yaml b/manifests/k/KeeperSecurity/KeeperDB/2.2.0/KeeperSecurity.KeeperDB.locale.en-US.yaml new file mode 100644 index 0000000000000..a55dccc8dc3d4 --- /dev/null +++ b/manifests/k/KeeperSecurity/KeeperDB/2.2.0/KeeperSecurity.KeeperDB.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: KeeperSecurity.KeeperDB +PackageVersion: 2.2.0 +PackageLocale: en-US +Publisher: Keeper Security, Inc. +PublisherUrl: https://www.keepersecurity.com/ +PublisherSupportUrl: https://www.keepersecurity.com/support.html +PackageName: KeeperDB +PackageUrl: https://www.keepersecurity.com/keeperdb/ +License: Proprietary +Copyright: Copyright (c) Keeper Security, Inc. +ShortDescription: Database management tool for Postgres, MySQL, SQLite, MSSQL, Oracle, and Redshift. +Description: KeeperDB is Keeper Security's database management tool. A single native app to connect to Postgres, MySQL, SQLite, MSSQL, Oracle, and Redshift — browse schema, run queries, edit data, monitor performance, and export results. +Moniker: keeperdb +Tags: +- database +- sql +- postgres +- mysql +- sqlite +- keeper +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/k/KeeperSecurity/KeeperDB/2.2.0/KeeperSecurity.KeeperDB.yaml b/manifests/k/KeeperSecurity/KeeperDB/2.2.0/KeeperSecurity.KeeperDB.yaml new file mode 100644 index 0000000000000..725512b4dc7f5 --- /dev/null +++ b/manifests/k/KeeperSecurity/KeeperDB/2.2.0/KeeperSecurity.KeeperDB.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: KeeperSecurity.KeeperDB +PackageVersion: 2.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.installer.yaml b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.installer.yaml new file mode 100644 index 0000000000000..4a9e2934aa600 --- /dev/null +++ b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.installer.yaml @@ -0,0 +1,27 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +# Installer manifest — nutzt den offiziellen signierten NSIS-Installer von downloads.billevo.de. +# ProductCode = electron-builder-NSIS-GUID (UUIDv5 aus appId com.kristiankiel.billevo, +# versionsstabil; verifiziert gegen den Uninstall-Registry-Key einer echten Installation). +PackageIdentifier: KristianKiel.BILLEVO +PackageVersion: 3.7.4 +InstallerLocale: de-DE +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.billevo.de/BILLEVO%20Setup%203.7.4.exe + InstallerSha256: C8F379D82BE8A0AB92C83D47931D67FBD83301171A78D17A5681FC923CE8ABDE + AppsAndFeaturesEntries: + - DisplayName: BILLEVO 3.7.4 + Publisher: Kristian Kiel + DisplayVersion: 3.7.4 + ProductCode: f21919ef-aa62-5ff6-8048-cb7bc3b49f57 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.locale.de-DE.yaml b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.locale.de-DE.yaml new file mode 100644 index 0000000000000..226f4b5516680 --- /dev/null +++ b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.locale.de-DE.yaml @@ -0,0 +1,43 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: KristianKiel.BILLEVO +PackageVersion: 3.7.4 +PackageLocale: de-DE +Publisher: Kristian Kiel +PublisherUrl: https://billevo.de +PublisherSupportUrl: https://billevo.de/support +PrivacyUrl: https://billevo.de/datenschutz +Author: Kristian Kiel +PackageName: BILLEVO +PackageUrl: https://billevo.de +License: Proprietär (Einmalkauf, 30 Tage kostenlos testen) +LicenseUrl: https://billevo.de/agb +Copyright: © 2026 Kristian Kiel +ShortDescription: Lokale Rechnungssoftware für Selbstständige und kleine Betriebe – E-Rechnung, Angebote, Mahnungen, DATEV-Export. +Description: |- + BILLEVO ist eine lokale Desktop-Rechnungssoftware für Windows – gemacht für Selbstständige, + Freiberufler und kleine Unternehmen in Deutschland. + + - E-Rechnung nach ZUGFeRD, Factur-X und XRechnung – das Original-XML bleibt jederzeit sichtbar. + - Rechnungen, Angebote, Lieferscheine, wiederkehrende & Sammelrechnungen. + - Kunden, Artikel mit einfachem Bestand, Ausgaben & Eingangsrechnungen, Zeiterfassung. + - DATEV-Export (SKR03/SKR04) für die saubere Übergabe an den Steuerberater. + - GoBD-orientiert, Kleinunternehmer-§19-tauglich, IBAN-Prüfung, Mahnwesen. + - Lokal-first: deine Daten liegen auf deinem Gerät, kein Cloud-Zwang. + + Einmalkauf statt Abo: 30 Tage kostenlos testen, danach mit einem Lizenzschlüssel von + billevo.de aktivieren. Keine laufenden Gebühren. +Moniker: billevo +Tags: +- buchhaltung +- datev +- e-rechnung +- gobd +- kleinunternehmer +- rechnung +- rechnungsprogramm +- rechnungssoftware +- xrechnung +- zugferd +ReleaseNotesUrl: https://billevo.de/updates +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.locale.en-US.yaml b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.locale.en-US.yaml new file mode 100644 index 0000000000000..360ecf84eb0fd --- /dev/null +++ b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.locale.en-US.yaml @@ -0,0 +1,40 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json +PackageIdentifier: KristianKiel.BILLEVO +PackageVersion: 3.7.4 +PackageLocale: en-US +Publisher: Kristian Kiel +PublisherUrl: https://billevo.de +PublisherSupportUrl: https://billevo.de/support +PrivacyUrl: https://billevo.de/datenschutz +Author: Kristian Kiel +PackageName: BILLEVO +PackageUrl: https://billevo.de +License: Proprietary (one-time purchase, 30-day free trial) +LicenseUrl: https://billevo.de/agb +Copyright: © 2026 Kristian Kiel +ShortDescription: Local invoicing software for freelancers and small businesses – e-invoicing, quotes, dunning, DATEV export. +Description: |- + BILLEVO is local desktop invoicing software for Windows – built for freelancers and small + businesses in Germany. + + - E-invoicing in ZUGFeRD, Factur-X and XRechnung – the underlying XML stays visible. + - Invoices, quotes, delivery notes, recurring & collective invoices. + - Customers, items with simple inventory, expenses & incoming invoices, time tracking. + - DATEV export (SKR03/SKR04) for a clean handover to your tax advisor. + - GoBD-oriented, small-business §19-ready, IBAN check, dunning. + - Local-first: your data stays on your device, no forced cloud. + + One-time purchase instead of a subscription: try free for 30 days, then activate with a + license key from billevo.de. No recurring fees. +Tags: +- accounting +- datev +- e-invoicing +- freelancer +- invoice +- invoicing +- xrechnung +- zugferd +ReleaseNotesUrl: https://billevo.de/updates +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.yaml b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.yaml new file mode 100644 index 0000000000000..aa90fab69b742 --- /dev/null +++ b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.yaml @@ -0,0 +1,9 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +# Version manifest — BILLEVO im Windows Package Manager (winget). +# Submission: PR nach microsoft/winget-pkgs unter +# manifests/k/KristianKiel/BILLEVO/3.7.4/ (alle 4 Dateien dieses Ordners) +PackageIdentifier: KristianKiel.BILLEVO +PackageVersion: 3.7.4 +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.installer.yaml b/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.installer.yaml new file mode 100644 index 0000000000000..f073ca13f60a6 --- /dev/null +++ b/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.installer.yaml @@ -0,0 +1,11 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: kulkamKakarot.DriveLens +PackageVersion: 1.0.0 +InstallerType: nullsoft +Scope: user +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kulkamKakarot/drivelens/releases/download/v1.0.0/DriveLens.Setup.1.0.0.exe + InstallerSha256: 6CE6DAEE533F7B0078C7917450A5AD3D46181C9A1DE104BBC4244BD22763DD37 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.locale.en-US.yaml b/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.locale.en-US.yaml new file mode 100644 index 0000000000000..f21ccfe8703f8 --- /dev/null +++ b/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: kulkamKakarot.DriveLens +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: kulkamKakarot +PublisherUrl: https://github.com/kulkamKakarot +PublisherSupportUrl: https://github.com/kulkamKakarot/drivelens/issues +PackageName: DriveLens +PackageUrl: https://github.com/kulkamKakarot/drivelens +License: MIT +LicenseUrl: https://github.com/kulkamKakarot/drivelens/blob/main/LICENSE +ShortDescription: Visual disk-space analyzer for Windows with an interactive treemap and safe Recycle Bin cleanup. +Description: DriveLens scans any drive or folder and shows exactly what is taking up space in an interactive, color-coded treemap. Browse folders sorted biggest-first, find the 100 largest files on a drive, and clean up safely - deleted items always go to the Recycle Bin, never permanently removed. No network access, no telemetry. Free and open source. +Moniker: drivelens +Tags: +- cleanup +- disk-analyzer +- disk-space +- disk-usage +- open-source +- treemap +ReleaseNotesUrl: https://github.com/kulkamKakarot/drivelens/releases/tag/v1.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.yaml b/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.yaml new file mode 100644 index 0000000000000..b5ff8ca507910 --- /dev/null +++ b/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +PackageIdentifier: kulkamKakarot.DriveLens +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.installer.yaml b/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.installer.yaml new file mode 100644 index 0000000000000..476c211d59ad7 --- /dev/null +++ b/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.installer.yaml @@ -0,0 +1,29 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: Laker.EasyPostman +PackageVersion: 6.0.11 +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART + SilentWithProgress: /SP- /SILENT /SUPPRESSMSGBOXES /NORESTART +UpgradeBehavior: install +ProductCode: 8B9C5D6E-7F8A-9B0C-1D2E-3F4A5B6C7D8E_is1 +ReleaseDate: 2026-07-01 +ElevationRequirement: elevatesSelf +AppsAndFeaturesEntries: +- ProductCode: 8B9C5D6E-7F8A-9B0C-1D2E-3F4A5B6C7D8E_is1 + DisplayName: EasyPostman + Publisher: Laker + DisplayVersion: 6.0.11 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\EasyPostman' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/lakernote/EasyPostman/releases/download/v6.0.11/EasyPostman-6.0.11-windows-x64.exe + InstallerSha256: EBB81E7F5C98FF7063B5BEB79F34F8AF55EFAB20FBE7294278EC8EF3A0D7B45B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.locale.en-US.yaml b/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.locale.en-US.yaml new file mode 100644 index 0000000000000..6ba7c4dc5a522 --- /dev/null +++ b/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.locale.en-US.yaml @@ -0,0 +1,28 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: Laker.EasyPostman +PackageVersion: 6.0.11 +PackageLocale: en-US +Publisher: Laker +PublisherUrl: https://github.com/lakernote +PublisherSupportUrl: https://github.com/lakernote/EasyPostman/issues +PackageName: EasyPostman +PackageUrl: https://github.com/lakernote/EasyPostman +License: Apache-2.0 +LicenseUrl: https://github.com/lakernote/EasyPostman/blob/master/LICENSE +ShortDescription: An open-source Postman-style API client and JMeter-style load testing desktop app. +Description: EasyPostman combines a Postman-style API debugging workspace with JMeter-style performance testing in one local-first desktop app. +Moniker: easypostman +Tags: +- api +- api-client +- http +- jmeter +- postman +- rest +- testing +ReleaseNotesUrl: https://github.com/lakernote/EasyPostman/releases/tag/v6.0.11 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://github.com/lakernote/EasyPostman/blob/master/docs/FEATURES.md +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.yaml b/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.yaml similarity index 56% rename from manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.yaml rename to manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.yaml index c2652e900a79d..26b1a7b35191b 100644 --- a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.yaml +++ b/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.yaml @@ -1,8 +1,6 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 139.0.7258.155 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: Laker.EasyPostman +PackageVersion: 6.0.11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/l/LetsConnect/Client/4.6/LetsConnect.Client.installer.yaml b/manifests/l/LetsConnect/Client/4.6/LetsConnect.Client.installer.yaml index 7e8ba12e09e75..3b8c5095281ae 100644 --- a/manifests/l/LetsConnect/Client/4.6/LetsConnect.Client.installer.yaml +++ b/manifests/l/LetsConnect/Client/4.6/LetsConnect.Client.installer.yaml @@ -6,7 +6,7 @@ PackageVersion: 4.6 Installers: - Architecture: arm64 InstallerType: wix - InstallerUrl: https://codeberg.org/eduVPN/windows/releases/download/4.6/LetsConnectClient_4.6_ARM64.msi + InstallerUrl: https://app.letsconnect-vpn.org/windows/LetsConnectClient_4.6_ARM64.msi InstallerSha256: 62b80d424ed9712fea163fb97222437d3c47047ac1c0e956b659a0c7c82ac5da AppsAndFeaturesEntries: - ProductCode: '{5F0A9747-2CD2-4E1C-9E21-E426DBF988A8}' @@ -14,7 +14,7 @@ Installers: UpgradeCode: '{090C24F6-1F11-4DB8-9338-68E3526139F5}' - Architecture: x64 InstallerType: wix - InstallerUrl: https://codeberg.org/eduVPN/windows/releases/download/4.6/LetsConnectClient_4.6_x64.msi + InstallerUrl: https://app.letsconnect-vpn.org/windows/LetsConnectClient_4.6_x64.msi InstallerSha256: 541d88c31219d224668c50faf30621530b2dfcd7a808af983cd687e48bddfcd2 AppsAndFeaturesEntries: - ProductCode: '{5F0A9747-2CD2-4E1C-9E11-E426DBF988A8}' @@ -22,7 +22,7 @@ Installers: UpgradeCode: '{090C24F6-1F11-4DB8-9338-68E3526139F5}' - Architecture: x86 InstallerType: wix - InstallerUrl: https://codeberg.org/eduVPN/windows/releases/download/4.6/LetsConnectClient_4.6_x86.msi + InstallerUrl: https://app.letsconnect-vpn.org/windows/LetsConnectClient_4.6_x86.msi InstallerSha256: a313501f29ea3c33bcb99170d5b01a0d9c1588e53fa08a85c916afe8baaf0506 AppsAndFeaturesEntries: - ProductCode: '{5F0A9747-2CD2-4E1C-9E01-E426DBF988A8}' diff --git a/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.installer.yaml b/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.installer.yaml new file mode 100644 index 0000000000000..c4fdea5d5b939 --- /dev/null +++ b/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: LieberLieber.LemonTree.Connect.Codebeamer +PackageVersion: 4.0.1 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: wix +NestedInstallerFiles: +- RelativeFilePath: LemonTree.Connect.Codebeamer.msi +ProductCode: '{178CE6E1-CDDD-440B-A504-B355D3976035}' +Installers: +- Architecture: x64 + InstallerUrl: https://customers.lieberlieber.com/Downloads/LemonTree/Connect/Codebeamer/LemonTree.Connect.Codebeamer_4.0.1.zip + InstallerSha256: 9FB78726481F8E1F43AB9DEB01A39096C792480853B9C789CFDA972F43BC8297 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.locale.en-US.yaml b/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.locale.en-US.yaml new file mode 100644 index 0000000000000..f8073bf28d11b --- /dev/null +++ b/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: LieberLieber.LemonTree.Connect.Codebeamer +PackageVersion: 4.0.1 +PackageLocale: en-US +Publisher: LieberLieber Software GmbH +PackageName: LemonTree.Connect.Codebeamer +License: Proprietary +ShortDescription: LemonTree.Connect for Codebeamer enables advanced integration for Systems Engineering by connecting Enterprise Architect and Codebeamer. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.yaml b/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.yaml new file mode 100644 index 0000000000000..0efb70d65ca8f --- /dev/null +++ b/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: LieberLieber.LemonTree.Connect.Codebeamer +PackageVersion: 4.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/l/Loom/Loom/0.361.0/Loom.Loom.installer.yaml b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.installer.yaml new file mode 100644 index 0000000000000..7690ccbc440b9 --- /dev/null +++ b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Loom.Loom +PackageVersion: 0.361.0 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- loomdesktop +ProductCode: 3643b966-bc28-5bc8-95ff-3d47d66438db +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.loom.com/desktop-packages/Loom%20Setup%200.361.0.exe + InstallerSha256: 4D69FC928243EDA9291A833ED886877A4941E98D3EF387ECA7126E97CF601D36 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/Loom/Loom/0.361.0/Loom.Loom.locale.en-US.yaml b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.locale.en-US.yaml new file mode 100644 index 0000000000000..439e3dfb237a1 --- /dev/null +++ b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Loom.Loom +PackageVersion: 0.361.0 +PackageLocale: en-US +Publisher: Loom, Inc. +PublisherUrl: https://www.loom.com/ +PublisherSupportUrl: https://support.loom.com/ +PrivacyUrl: https://www.loom.com/privacy-policy +Author: Loom, Inc. +PackageName: Loom +PackageUrl: https://www.loom.com/ +License: Proprietary +LicenseUrl: https://www.loom.com/terms +Copyright: © 2026, Loom, Inc. All Rights Reserved. +ShortDescription: Loom is a video messaging tool that helps you get your message across through instantly shareable videos. +Description: Loom combines the expressiveness of video with the convenience of messaging. It's a new, more effective way of communicating with co-workers and customers. With Loom, you can record your camera, microphone, and desktop simultaneously. Your video is then instantly available to share through Loom's patented technology. +Moniker: loom +Tags: +- capture +- clip +- conference +- meeting +- presentation +- record +- video +ReleaseNotesUrl: https://new.loom.com/ +PurchaseUrl: https://www.loom.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/Loom/Loom/0.361.0/Loom.Loom.locale.zh-CN.yaml b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8021c2d2d7677 --- /dev/null +++ b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Loom.Loom +PackageVersion: 0.361.0 +PackageLocale: zh-CN +Publisher: Loom, Inc. +PublisherUrl: https://www.loom.com/ +PublisherSupportUrl: https://support.loom.com/ +PrivacyUrl: https://www.loom.com/privacy-policy +Author: Loom, Inc. +PackageName: Loom +PackageUrl: https://www.loom.com/ +License: 专有软件 +LicenseUrl: https://www.loom.com/terms +Copyright: © 2026, Loom, Inc. All Rights Reserved. +ShortDescription: Loom 是一款视频信息传递工具,可帮助您通过即时分享的视频传递信息。 +Description: Loom 结合了视频的表现力和信息传递的便利性,是一种与同事和客户更有效沟通的新方式。使用 Loom,您可以同时录制您的摄像头、麦克风和桌面,然后您就可以通过 Loom 的专利技术即时分享您的视频。 +Tags: +- 会议 +- 剪辑 +- 录制 +- 录屏 +- 演示 +- 视频 +ReleaseNotesUrl: https://new.loom.com/ +PurchaseUrl: https://www.loom.com/pricing +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/Loom/Loom/0.361.0/Loom.Loom.yaml b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.yaml new file mode 100644 index 0000000000000..c03a5b6ab1677 --- /dev/null +++ b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Loom.Loom +PackageVersion: 0.361.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.installer.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.installer.yaml new file mode 100644 index 0000000000000..b01c46dabe65a --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.75 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cli-proxy-api.exe +Commands: +- cli-proxy-api +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/router-for-me/CLIProxyAPI/releases/download/v7.2.75/CLIProxyAPI_7.2.75_windows_amd64.zip + InstallerSha256: 19823868BEBAF909E34FA3341AEEF16C37B4BA4C7390121E73A4EA566536F814 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.locale.en-US.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.locale.en-US.yaml new file mode 100644 index 0000000000000..6b2150d921def --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.75 +PackageLocale: en-US +Publisher: Luis Pater +PublisherUrl: https://github.com/router-for-me +PublisherSupportUrl: https://github.com/router-for-me/CLIProxyAPI/issues +Author: Luis Pater +PackageName: CLI Proxy API +PackageUrl: https://github.com/router-for-me/CLIProxyAPI +License: MIT +LicenseUrl: https://github.com/router-for-me/CLIProxyAPI/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Luis Pater +ShortDescription: Wrap Gemini CLI, ChatGPT Codex as an OpenAI/Gemini/Claude compatible API service, allowing you to enjoy the free Gemini 2.5 Pro, GPT 5 model through API +Description: |- + A proxy server that provides OpenAI/Gemini/Claude compatible API interfaces for CLI. + It now also supports OpenAI Codex (GPT models) and Claude Code via OAuth. + so you can use local or multi‑account CLI access with OpenAI‑compatible clients and SDKs. + Now, We added the first Chinese provider: Qwen Code. +Tags: +- ai +- chatbot +- chatgpt +- claude +- claude-code +- codex +- gemini +- large-language-model +- llm +- openai +ReleaseNotes: |- + Linux release assets + - CLIProxyAPI__linux_.tar.gz is the default Linux build. It supports dynamic library plugins and is built against a GLIBC 2.17 baseline. + - CLIProxyAPI__linux__no-plugin.tar.gz is the portable Linux build for musl-based or older systems such as OpenWrt. It does not support dynamic library plugins. + FreeBSD release assets + - CLIProxyAPI__freebsd_aarch64_no-plugin.tar.gz is the FreeBSD arm64 build. It is built without CGO and does not support dynamic library plugins. + Changelog + - feat(translator): handle reasoning content and improve request serialization (3d46ede4) + - feat(logging): add deferred request body capture for error handling (e5741673) + Full Changelog: https://github.com/router-for-me/CLIProxyAPI/compare/v7.2.74...v7.2.75 +ReleaseNotesUrl: https://github.com/router-for-me/CLIProxyAPI/releases/tag/v7.2.75 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.locale.zh-CN.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4d3ae6d4cc98e --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.75 +PackageLocale: zh-CN +ShortDescription: 封装 Gemini CLI 和 ChatGPT Codex 为兼容 OpenAI/Gemini/Claude 的 API 服务,让您通过 API 畅享免费的 Gemini 2.5 Pro 和 GPT 5 模型 +Description: |- + 一个为 CLI 提供 OpenAI/Gemini/Claude 兼容 API 接口的代理服务器。 + 现已支持通过 OAuth 登录接入 OpenAI Codex(GPT 系列)和 Claude Code。 + 可与本地或多账户方式配合,使用任何 OpenAI 兼容的客户端与 SDK。 + 现在,我们添加了第一个中国提供商:Qwen Code。 +Tags: +- chatgpt +- claude +- claude-code +- codex +- gemini +- openai +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.yaml new file mode 100644 index 0000000000000..237e82ec3fa73 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.75 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.76/LuisPater.CLIProxyAPI.installer.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.76/LuisPater.CLIProxyAPI.installer.yaml new file mode 100644 index 0000000000000..b24ebbf4e068a --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.76/LuisPater.CLIProxyAPI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.76 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cli-proxy-api.exe +Commands: +- cli-proxy-api +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/router-for-me/CLIProxyAPI/releases/download/v7.2.76/CLIProxyAPI_7.2.76_windows_amd64.zip + InstallerSha256: 595CD92AC1815A6C7D848538E5CFE0DC6C4A206EDC2AB058E44E96F24E578E58 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.76/LuisPater.CLIProxyAPI.locale.en-US.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.76/LuisPater.CLIProxyAPI.locale.en-US.yaml new file mode 100644 index 0000000000000..90fe2216a9614 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.76/LuisPater.CLIProxyAPI.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.76 +PackageLocale: en-US +Publisher: Luis Pater +PublisherUrl: https://github.com/router-for-me +PublisherSupportUrl: https://github.com/router-for-me/CLIProxyAPI/issues +Author: Luis Pater +PackageName: CLI Proxy API +PackageUrl: https://github.com/router-for-me/CLIProxyAPI +License: MIT +LicenseUrl: https://github.com/router-for-me/CLIProxyAPI/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Luis Pater +ShortDescription: Wrap Gemini CLI, ChatGPT Codex as an OpenAI/Gemini/Claude compatible API service, allowing you to enjoy the free Gemini 2.5 Pro, GPT 5 model through API +Description: |- + A proxy server that provides OpenAI/Gemini/Claude compatible API interfaces for CLI. + It now also supports OpenAI Codex (GPT models) and Claude Code via OAuth. + so you can use local or multi‑account CLI access with OpenAI‑compatible clients and SDKs. + Now, We added the first Chinese provider: Qwen Code. +Tags: +- ai +- chatbot +- chatgpt +- claude +- claude-code +- codex +- gemini +- large-language-model +- llm +- openai +ReleaseNotes: |- + Linux release assets + - CLIProxyAPI__linux_.tar.gz is the default Linux build. It supports dynamic library plugins and is built against a GLIBC 2.17 baseline. + - CLIProxyAPI__linux__no-plugin.tar.gz is the portable Linux build for musl-based or older systems such as OpenWrt. It does not support dynamic library plugins. + FreeBSD release assets + - CLIProxyAPI__freebsd_aarch64_no-plugin.tar.gz is the FreeBSD arm64 build. It is built without CGO and does not support dynamic library plugins. + Changelog + - feat(translator): enhance handling of custom tool calls and improve tool call batching logic (9f62c8df) + Full Changelog: https://github.com/router-for-me/CLIProxyAPI/compare/v7.2.75...v7.2.76 +ReleaseNotesUrl: https://github.com/router-for-me/CLIProxyAPI/releases/tag/v7.2.76 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.76/LuisPater.CLIProxyAPI.locale.zh-CN.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.76/LuisPater.CLIProxyAPI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d1687d59d5363 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.76/LuisPater.CLIProxyAPI.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.76 +PackageLocale: zh-CN +ShortDescription: 封装 Gemini CLI 和 ChatGPT Codex 为兼容 OpenAI/Gemini/Claude 的 API 服务,让您通过 API 畅享免费的 Gemini 2.5 Pro 和 GPT 5 模型 +Description: |- + 一个为 CLI 提供 OpenAI/Gemini/Claude 兼容 API 接口的代理服务器。 + 现已支持通过 OAuth 登录接入 OpenAI Codex(GPT 系列)和 Claude Code。 + 可与本地或多账户方式配合,使用任何 OpenAI 兼容的客户端与 SDK。 + 现在,我们添加了第一个中国提供商:Qwen Code。 +Tags: +- chatgpt +- claude +- claude-code +- codex +- gemini +- openai +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.76/LuisPater.CLIProxyAPI.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.76/LuisPater.CLIProxyAPI.yaml new file mode 100644 index 0000000000000..8b0c6121731f5 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.76/LuisPater.CLIProxyAPI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.76 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.installer.yaml b/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.installer.yaml new file mode 100644 index 0000000000000..96edd2263cf17 --- /dev/null +++ b/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: limboprog.TaseDeck +PackageVersion: 0.1.0-alpha +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{8FA0E23B-D04E-441B-AC1D-70033D486B71}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/limboprog/TaseDeck/releases/download/v0.1.0-alpha/TaseDeck_0.1.0_x64_en-US.msi + InstallerSha256: 5359634E0B881D65E9DF2B15D1C16BD05CE788F92EE3847973555FD6CE455C30 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.locale.en-US.yaml b/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.locale.en-US.yaml new file mode 100644 index 0000000000000..1855d4fd652cf --- /dev/null +++ b/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: limboprog.TaseDeck +PackageVersion: 0.1.0-alpha +PackageLocale: en-US +Publisher: limboprog +PackageName: TaseDeck +License: MIT +ShortDescription: A cross-platform desktop application built with Tauri for managing Model Context Protocol (MCP) servers and developer utilities. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.yaml b/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.yaml new file mode 100644 index 0000000000000..f17ad557cf6f2 --- /dev/null +++ b/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: limboprog.TaseDeck +PackageVersion: 0.1.0-alpha +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/MarkEmbling/Pal/0.1.0/MarkEmbling.Pal.installer.yaml b/manifests/m/MarkEmbling/Pal/0.1.0/MarkEmbling.Pal.installer.yaml new file mode 100644 index 0000000000000..00fedcd12e029 --- /dev/null +++ b/manifests/m/MarkEmbling/Pal/0.1.0/MarkEmbling.Pal.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MarkEmbling.Pal +PackageVersion: 0.1.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: pal.exe + PortableCommandAlias: pal +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2026-04-02 +Installers: +- Architecture: x64 + InstallerUrl: https://git.markembling.info/markembling/pal/releases/download/v0.1.0/pal_0.1.0_windows_amd64.zip + InstallerSha256: 6CA68A05FE7F9AC0AFD4234185AFCE6B9BDE86B5D7F9A7D58121E8D27C6881EA +- Architecture: arm64 + InstallerUrl: https://git.markembling.info/markembling/pal/releases/download/v0.1.0/pal_0.1.0_windows_arm64.zip + InstallerSha256: 0C32E0F708915E2B026AA3402A5AD1D596A194C423585DE26886248F7FC4134F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MarkEmbling/Pal/0.1.0/MarkEmbling.Pal.locale.en-GB.yaml b/manifests/m/MarkEmbling/Pal/0.1.0/MarkEmbling.Pal.locale.en-GB.yaml new file mode 100644 index 0000000000000..2d8f03ff96727 --- /dev/null +++ b/manifests/m/MarkEmbling/Pal/0.1.0/MarkEmbling.Pal.locale.en-GB.yaml @@ -0,0 +1,15 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: MarkEmbling.Pal +PackageVersion: 0.1.0 +PackageLocale: en-GB +Publisher: Mark Embling +PublisherUrl: https://markembling.info/ +PackageName: pal +License: Proprietary +Copyright: Copyright © Mark Embling +ShortDescription: A command-line tool for working with colour palettes. +Moniker: pal +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MarkEmbling/Pal/0.1.0/MarkEmbling.Pal.yaml b/manifests/m/MarkEmbling/Pal/0.1.0/MarkEmbling.Pal.yaml new file mode 100644 index 0000000000000..a4c302a2d3aa9 --- /dev/null +++ b/manifests/m/MarkEmbling/Pal/0.1.0/MarkEmbling.Pal.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: MarkEmbling.Pal +PackageVersion: 0.1.0 +DefaultLocale: en-GB +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.installer.yaml b/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.installer.yaml new file mode 100644 index 0000000000000..2a773b7522a81 --- /dev/null +++ b/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.installer.yaml @@ -0,0 +1,20 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Matteo842.SaveState +PackageVersion: '2.9' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: SaveState.exe + PortableCommandAlias: SaveState.exe +InstallModes: +- silent +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Matteo842/SaveState/releases/download/v2.9/SaveState_v2.9_Win.zip + InstallerSha256: 027B5F552E0CC330AF00232773269E08108E02F212FF41F9084A69B706FFC58F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.locale.en-US.yaml b/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.locale.en-US.yaml new file mode 100644 index 0000000000000..cc7be8fae89ed --- /dev/null +++ b/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.locale.en-US.yaml @@ -0,0 +1,62 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Matteo842.SaveState +PackageVersion: '2.9' +PackageLocale: en-US +Publisher: Matteo842 +PublisherUrl: https://github.com/Matteo842 +PublisherSupportUrl: https://github.com/Matteo842/SaveState/issues +Author: Matteo Cioffi +PackageName: SaveState +PackageUrl: https://github.com/Matteo842/SaveState +License: GPL-3.0 +LicenseUrl: https://github.com/Matteo842/SaveState/blob/HEAD/LICENSE +ShortDescription: | + A versatile game save backup manager, featuring Steam detection, Minecraft support, drag & drop, desktop shortcuts and emulator compatible. +Description: | + A user-friendly GUI application for Windows and Linux to easily back up and restore video game save files. Perfect for games without cloud saves, managing multiple save locations, or syncing your progress across devices. +Tags: +- automation +- backup +- desktop-app +- game +- games +- gui +- minecraft +- open-source +- pyside6 +- python +- save +- save-manager +- savegame +- steam +- video-game +- windows +ReleaseNotes: |- + SaveState v2.9 - Multi-Selection & Cloud Refinement + This major release introduces flexible multi-selection workflows, a complete structural overhaul for RetroArch core discovery, and critical infrastructure improvements for Google Drive authentication—specifically targeting Linux AppImage and handheld console compatibility. + What's New: + Google Drive Authentication & AppImage Compatibility + - Manual Callback Fallback: Enhanced OAuth authentication robustness by adding a manual callback URL input fallback. If a browser running on an isolated environment or handheld cannot reach the local port (localhost), users can now manually paste the authorization URL to complete the link. + - AppImage Directory Relocation: Credentials and tokens have been moved securely to the user's system app data directory. This resolves write-persistence limitations inherent to the AppImage mounting layer and automatically handles legacy token migration. + - Concurrency & Safety Locks: Implemented a dedicated threading lock to completely block concurrent authentication requests. Improved handling, UI timeout tracking, cancellation hooks, and automatic cleanup of background auth workers. + - Advanced Error Diagnostics: Added a structured tracking property (last_auth_error) to catch, preserve, and report descriptive troubleshooting logs directly within the interface during connection issues. + Advanced Multi-Selection & Header UI Overhaul + - Tristate Checkbox Headers: Replaced binary select-all buttons with a clean, space-saving tristate checkbox integrated directly into dialog headers. This provides a clear visual indicator for partial, full, or empty multi-selection states across lists. + - Bulk Profile Generation: List widgets for Ares, RetroArch, and generic emulator configurations now utilize ExtendedSelection. You can select dozens of games simultaneously and batch-import them into active profiles in a single click. + - Unified Selection Highlight Engine: Extracted selection styling rules out of local views and into a reusable utility module (selection_utils.py). All emulator list widgets now apply consistent highlighting behavior driven by a unified ProfileSelectionDelegate. + - Optimized Drag-and-Drop Workflow: Refactored the file dropping routine to gracefully handle multiple shortcuts and game directories at once, skipping duplicate profile names automatically and silencing repetitive alert popups. + Robust RetroArch Save & Core Architecture Parsing + - Unsorted Core Detection: Introduced full support for unstructured environments (RETROARCH_UNSORTED_CORE_ID), enabling the scanner to accurately map, read, and merge flat save structures residing directly in the root directory rather than within distinct core subfolders. + - Expanded Path Discovery: Upgraded configuration tracking (retroarch.cfg) to look through a much wider sequence of default installation paths on Windows, extending coverage across AppData, LocalAppData, and Microsoft Store deployment footprints. + - Max Depth Traversal Safeguards: Replaced generic directory loops with a dedicated recursive explorer (_iter_files_recursive) governed by strict depth thresholds, calculating exact file distributions and constructing game listings without causing scan loops to hang. + immagine + Contributors & Special Thanks + A very special thank you to our community for tracking bugs and expanding platform support: + - @Andered2520 — for isolating and documenting the Google Drive authentication loop on SteamOS (Legion Go 2) running via the AppImage package layout. Your testing on Discord was invaluable for tracing local network limits! + Windows — SaveState.exe + The VirusTotal badge is automatically added when you publish this release (~300 MB, scan via GitHub CDN). +ReleaseNotesUrl: https://github.com/Matteo842/SaveState/releases/tag/v2.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.yaml b/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.yaml new file mode 100644 index 0000000000000..41363e8e90c0a --- /dev/null +++ b/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Matteo842.SaveState +PackageVersion: '2.9' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mibuw/miPDFconvert/1.0.1/Mibuw.miPDFconvert.installer.yaml b/manifests/m/Mibuw/miPDFconvert/1.0.1/Mibuw.miPDFconvert.installer.yaml new file mode 100644 index 0000000000000..3938dd3bf8cf8 --- /dev/null +++ b/manifests/m/Mibuw/miPDFconvert/1.0.1/Mibuw.miPDFconvert.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Mibuw.miPDFconvert +PackageVersion: 1.0.1 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Mibuw/miPDFconvert/releases/download/v1.0.1/miPDFconvertSetup_1.0.1.exe + InstallerSha256: F6C1CA2DE817414EDE7588C5580D96A09B608AED961DF6D7EFCF5650431247AB +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mibuw/miPDFconvert/1.0.1/Mibuw.miPDFconvert.locale.en-US.yaml b/manifests/m/Mibuw/miPDFconvert/1.0.1/Mibuw.miPDFconvert.locale.en-US.yaml new file mode 100644 index 0000000000000..a6cd41a1c2122 --- /dev/null +++ b/manifests/m/Mibuw/miPDFconvert/1.0.1/Mibuw.miPDFconvert.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Mibuw.miPDFconvert +PackageVersion: 1.0.1 +PackageLocale: en-US +Publisher: Wolfgang Mitterbucher +PublisherUrl: https://www.mitterbucher.com +PublisherSupportUrl: https://github.com/Mibuw/miPDFconvert/issues +PackageName: miPDFconvert +PackageUrl: https://github.com/Mibuw/miPDFconvert +License: AGPL-3.0 +LicenseUrl: https://github.com/Mibuw/miPDFconvert/blob/main/LICENSE +ShortDescription: Virtual PDF printer for Windows - print to PDF and hand it to a configurable target application. +Description: |- + miPDFconvert is a virtual PDF printer for Windows. Install it, print to the + miPDFconvert printer from any application, and get a PDF - either handed + automatically to a configurable target application or saved through a dialog. + Based on clawPDF/mfilemon, uses Ghostscript. Installer and binaries are + Authenticode-signed. +Moniker: mipdfconvert +Tags: +- pdf +- pdf-printer +- virtual-printer +- print-to-pdf +- ghostscript +ReleaseNotesUrl: https://github.com/Mibuw/miPDFconvert/releases/tag/v1.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mibuw/miPDFconvert/1.0.1/Mibuw.miPDFconvert.yaml b/manifests/m/Mibuw/miPDFconvert/1.0.1/Mibuw.miPDFconvert.yaml new file mode 100644 index 0000000000000..bd318dfca69e7 --- /dev/null +++ b/manifests/m/Mibuw/miPDFconvert/1.0.1/Mibuw.miPDFconvert.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Mibuw.miPDFconvert +PackageVersion: 1.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/Azd/.package b/manifests/m/Microsoft/Azd/.package new file mode 100644 index 0000000000000..e89380a8091d3 --- /dev/null +++ b/manifests/m/Microsoft/Azd/.package @@ -0,0 +1,11 @@ +{ + "schemaVersion": "0.1", + "owners": + [ + { + "type": "Bot", + "login": "esrp-winget-prod[bot]", + "id": 273969822 + } + ] +} \ No newline at end of file diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.installer.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.installer.yaml new file mode 100644 index 0000000000000..d3efa123ec8fc --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.10 +PackageVersion: 10.0.10 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.10/aspnetcore-runtime-10.0.10-win-arm64.exe + InstallerSha256: EB0418E535C8D282F6678B3E6BBEC9317BCD34B26D458504111A30AF2944E4CD + ProductCode: '{359572C7-CCDE-4F48-BFB9-F90043898696}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 10.0.10 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.36226 + ProductCode: '{359572C7-CCDE-4F48-BFB9-F90043898696}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.10/aspnetcore-runtime-10.0.10-win-x64.exe + InstallerSha256: 586BCC0CF291ECDE7BACFF811D28C1CABD36B1F3FB81801CE4D2FB788C61BC88 + ProductCode: '{9A224B5D-8663-4E4B-8815-56231D8C2261}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 10.0.10 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.36226 + ProductCode: '{9A224B5D-8663-4E4B-8815-56231D8C2261}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.10/aspnetcore-runtime-10.0.10-win-x86.exe + InstallerSha256: 66F8EB8848A1DDD1DBC6B4A9E6042761B994A0E7EF740062AE4BCFA254A49362 + ProductCode: '{5CEFBC6D-F508-46A6-8A52-E44B340CFDF6}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 10.0.10 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.36226 + ProductCode: '{5CEFBC6D-F508-46A6-8A52-E44B340CFDF6}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.locale.en-US.yaml new file mode 100644 index 0000000000000..87246fbd2e8e2 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.10 +PackageVersion: 10.0.10 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Runtime 10.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: aspnetcore-10 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET +- ASP.NET Core +- runtime +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.yaml new file mode 100644 index 0000000000000..53d47f8008a16 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.10 +PackageVersion: 10.0.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.6/Microsoft.DotNet.AspNetCore.10.installer.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.6/Microsoft.DotNet.AspNetCore.10.installer.yaml index 08f5b9f0a8aff..aa8bfc9b61c1a 100644 --- a/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.6/Microsoft.DotNet.AspNetCore.10.installer.yaml +++ b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.6/Microsoft.DotNet.AspNetCore.10.installer.yaml @@ -10,7 +10,7 @@ InstallerSwitches: Installers: - Architecture: arm64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/7e0a6c9c-8126-4b16-98f2-a93a95a68e4a/92c50ea0-829d-4f12-beca-09542b245bca/aspnetcore-runtime-10.0.6-win-arm64.exe + InstallerUrl: https://download.microsoft.com/download/95c22c6e-f4c3-4179-89d7-6520f3a9b759/176d9d23-bfac-4dcf-b821-60136cd29f8a/aspnetcore-runtime-10.0.6-win-arm64.exe InstallerSha256: C65A2DC0EE035FC606A78433E684AA44B2EE6B3574BCAD7EE6F1BEF8400DA48A ProductCode: '{104704A5-F3D6-46B3-B994-641D40ADF871}' AppsAndFeaturesEntries: @@ -20,7 +20,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/7e0a6c9c-8126-4b16-98f2-a93a95a68e4a/3349857a-e682-4f68-acd3-e520dee41357/aspnetcore-runtime-10.0.6-win-x64.exe + InstallerUrl: https://download.microsoft.com/download/95c22c6e-f4c3-4179-89d7-6520f3a9b759/b0643045-ce9d-4801-b05b-fdd892229c1f/aspnetcore-runtime-10.0.6-win-x64.exe InstallerSha256: 926A07AB16DC17B781B5F798AC507C4965B8F670E8602292DEF4B832964CC3D6 ProductCode: '{8F432FA7-DD1C-40C7-8EAE-C0D1A9D6D2D7}' AppsAndFeaturesEntries: @@ -30,7 +30,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x86 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/7e0a6c9c-8126-4b16-98f2-a93a95a68e4a/b8833a80-6072-4d58-91e7-9e805eb75e38/aspnetcore-runtime-10.0.6-win-x86.exe + InstallerUrl: https://download.microsoft.com/download/95c22c6e-f4c3-4179-89d7-6520f3a9b759/9f0e272b-3032-40cb-8612-6281e56cb83e/aspnetcore-runtime-10.0.6-win-x86.exe InstallerSha256: B1A1BA6C49BF1C47295BB4C69724790CC0D08A01E9932AA2096BED2A73335DF3 ProductCode: '{B282E493-BACE-441C-BAEE-ED6B0194D315}' AppsAndFeaturesEntries: diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.installer.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.installer.yaml new file mode 100644 index 0000000000000..7df0cba0779cb --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.8 +PackageVersion: 8.0.29 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.29/aspnetcore-runtime-8.0.29-win-arm64.exe + InstallerSha256: 4D57508E3F832AB1D240F9E6289A9D813A63714EB7EC8D111BCBDA9F719CAA26 + ProductCode: '{fbad15a2-a1a4-4c02-b998-2be05c29d56a}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core 8.0.29 - Shared Framework (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.26325 + ProductCode: '{fbad15a2-a1a4-4c02-b998-2be05c29d56a}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.29/aspnetcore-runtime-8.0.29-win-x64.exe + InstallerSha256: 4264934F253FBB689255A9A497A60588B8D51E7034AE3146C4C8BE17D336021C + ProductCode: '{6458568f-cbe1-43bf-b480-1b3901bc4c87}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core 8.0.29 - Shared Framework (x64) + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.26325 + ProductCode: '{6458568f-cbe1-43bf-b480-1b3901bc4c87}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.29/aspnetcore-runtime-8.0.29-win-x86.exe + InstallerSha256: 39DF07F7D0818A0AE206CCCBF540FF579254693CF499F77A8DB14DE0C6B913B4 + ProductCode: '{b9a57fa4-4572-45da-813d-aa4d241f988f}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core 8.0.29 - Shared Framework (x86) + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.26325 + ProductCode: '{b9a57fa4-4572-45da-813d-aa4d241f988f}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.locale.en-US.yaml new file mode 100644 index 0000000000000..b6ebae2bd66e8 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.8 +PackageVersion: 8.0.29 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Runtime 8.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: aspnetcore-8 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET +- ASP.NET Core +- runtime +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.yaml new file mode 100644 index 0000000000000..d308f2ca8a8c8 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.8 +PackageVersion: 8.0.29 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.installer.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.installer.yaml new file mode 100644 index 0000000000000..551130f6ccc17 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.9 +PackageVersion: 9.0.18 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.18/aspnetcore-runtime-9.0.18-win-arm64.exe + InstallerSha256: A50FCF49005DF6EEFC23EEB0898AEFB1ECB6D1BC46E92CD36A39545B47DF0A3F + ProductCode: '{7c630727-c273-4097-9c6a-04cfc7f81618}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core 9.0.18 - Shared Framework (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 9.0.18.26323 + ProductCode: '{7c630727-c273-4097-9c6a-04cfc7f81618}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.18/aspnetcore-runtime-9.0.18-win-x64.exe + InstallerSha256: F1F9703C79C91FB41DA3443A00EC6A86A177613C901AC6DE0F8606B1F26B5501 + ProductCode: '{ac0d1b45-14db-465e-acb6-7199178d6fd6}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core 9.0.18 - Shared Framework (x64) + Publisher: Microsoft Corporation + DisplayVersion: 9.0.18.26323 + ProductCode: '{ac0d1b45-14db-465e-acb6-7199178d6fd6}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.18/aspnetcore-runtime-9.0.18-win-x86.exe + InstallerSha256: 933B57752B9F6D035D0FEDD77AB09D02CE18533EE5B9FF7E68444531F6C7B05A + ProductCode: '{abf71cae-360a-4718-b782-d5b22c31ba93}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core 9.0.18 - Shared Framework (x86) + Publisher: Microsoft Corporation + DisplayVersion: 9.0.18.26323 + ProductCode: '{abf71cae-360a-4718-b782-d5b22c31ba93}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.locale.en-US.yaml new file mode 100644 index 0000000000000..499db70353ad9 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.9 +PackageVersion: 9.0.18 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Runtime 9.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: aspnetcore-9 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET +- ASP.NET Core +- runtime +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.yaml new file mode 100644 index 0000000000000..d428a1a3dcf94 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.9 +PackageVersion: 9.0.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.installer.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.installer.yaml new file mode 100644 index 0000000000000..1557ff979b1c2 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.installer.yaml @@ -0,0 +1,45 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.Preview +PackageVersion: 11.0.0-preview.6.26359.118 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Log: ' ' + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/11.0.0-preview.6.26359.118/aspnetcore-runtime-11.0.0-preview.6.26359.118-win-arm64.exe + InstallerSha256: 7C52EA11982D8ADCDC56C1B0FAD0DC1F56281A98191BEE1B24C9FC2AF088C7C2 + ProductCode: '{728F4C21-8781-44E2-AAF9-F2E9C92FEDC7}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 11.0.0 Preview 6 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 11.0.0.36309 + ProductCode: '{728F4C21-8781-44E2-AAF9-F2E9C92FEDC7}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/11.0.0-preview.6.26359.118/aspnetcore-runtime-11.0.0-preview.6.26359.118-win-x64.exe + InstallerSha256: 1A03FCF87A81F32E93C2B7903611FC243F61B5249FE7BCA723AD3AF38D9E4F37 + ProductCode: '{FA7E4274-21FA-4FCB-AA1D-D24AFC9A55F6}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 11.0.0 Preview 6 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 11.0.0.36309 + ProductCode: '{FA7E4274-21FA-4FCB-AA1D-D24AFC9A55F6}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/11.0.0-preview.6.26359.118/aspnetcore-runtime-11.0.0-preview.6.26359.118-win-x86.exe + InstallerSha256: 150B213B6F89E5436A70F631C121A0B4DF4957E4CB53F3E21C63F1082688F4CD + ProductCode: '{18EF9CE1-9F9A-4FA6-946F-32B794EE7641}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 11.0.0 Preview 6 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 11.0.0.36309 + ProductCode: '{18EF9CE1-9F9A-4FA6-946F-32B794EE7641}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.locale.en-US.yaml new file mode 100644 index 0000000000000..fb97cd1bdc26c --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.Preview +PackageVersion: 11.0.0-preview.6.26359.118 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Runtime 11.0 Preview +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: aspnetcore-preview +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET +- ASP.NET Core +- runtime +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.yaml new file mode 100644 index 0000000000000..e3ad0cf4c0342 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.Preview +PackageVersion: 11.0.0-preview.6.26359.118 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.installer.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.installer.yaml new file mode 100644 index 0000000000000..6baef0539f16a --- /dev/null +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.DesktopRuntime.10 +PackageVersion: 10.0.10 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.10/windowsdesktop-runtime-10.0.10-win-arm64.exe + InstallerSha256: 9891CFE6747583FC809F647FEA500C9F424F90EF9FA776F40D7B5AE2BAB69E02 + ProductCode: '{B47B3D93-5561-4281-B2D6-0C6EFE494CD6}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft Windows Desktop Runtime 10.0.10 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.50000 + ProductCode: '{B47B3D93-5561-4281-B2D6-0C6EFE494CD6}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.10/windowsdesktop-runtime-10.0.10-win-x64.exe + InstallerSha256: E82FC901C8F52D716293B2BC0830CE0DD254A06268C457A19E8FC503560A84D1 + ProductCode: '{866BECDA-F284-473A-9E84-0CCE816BF06F}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft Windows Desktop Runtime 10.0.10 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.50000 + ProductCode: '{866BECDA-F284-473A-9E84-0CCE816BF06F}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.10/windowsdesktop-runtime-10.0.10-win-x86.exe + InstallerSha256: 9C174F8DF1624A3C33C4E2BBCF99BB7C7166D1A319A2B624A8B84AE4EC692675 + ProductCode: '{4A021EBB-D70A-4B9D-B07B-E1F68B3E7C92}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft Windows Desktop Runtime 10.0.10 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.50000 + ProductCode: '{4A021EBB-D70A-4B9D-B07B-E1F68B3E7C92}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.locale.en-US.yaml new file mode 100644 index 0000000000000..d625b8bf510ee --- /dev/null +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.DesktopRuntime.10 +PackageVersion: 10.0.10 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET Windows Desktop Runtime 10.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-desktop-10 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- Windows Desktop +- Windows +- runtime +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.yaml new file mode 100644 index 0000000000000..913ee083cc760 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.DesktopRuntime.10 +PackageVersion: 10.0.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.6/Microsoft.DotNet.DesktopRuntime.10.installer.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.6/Microsoft.DotNet.DesktopRuntime.10.installer.yaml index 0a48ce18234a3..848f7a6b3a966 100644 --- a/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.6/Microsoft.DotNet.DesktopRuntime.10.installer.yaml +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.6/Microsoft.DotNet.DesktopRuntime.10.installer.yaml @@ -10,7 +10,7 @@ InstallerSwitches: Installers: - Architecture: arm64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/b996d352-d0eb-4c21-ad6f-79918e71369a/c315d987-c61d-4b88-8880-c27ac24c2999/windowsdesktop-runtime-10.0.6-win-arm64.exe + InstallerUrl: https://download.microsoft.com/download/99445f61-a65e-44ce-b5fd-2fc49eeb99f6/8a93876a-3dd1-416a-ba0a-37e126c12a19/windowsdesktop-runtime-10.0.6-win-arm64.exe InstallerSha256: 7FDAFBFC1ACF04621FCC910D7AD9797B68A3D44AFB98B73FF6F518759A31124E ProductCode: '{E7AFD3A9-4167-499D-959B-2C44C2DAE6AD}' AppsAndFeaturesEntries: @@ -20,7 +20,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/b996d352-d0eb-4c21-ad6f-79918e71369a/f5015adc-0c4d-43af-bbcf-9b0f55a477b0/windowsdesktop-runtime-10.0.6-win-x64.exe + InstallerUrl: https://download.microsoft.com/download/99445f61-a65e-44ce-b5fd-2fc49eeb99f6/2075531c-1738-4c1e-a0b5-2ba6d5b06fe0/windowsdesktop-runtime-10.0.6-win-x64.exe InstallerSha256: 5F3F75833F97E5BBCB701A664D09EB872A6DBCCDD5B474C66FA2CCCDE2FC51CB ProductCode: '{A4FB84EE-B9EF-4F5E-B39D-654C02FF7129}' AppsAndFeaturesEntries: @@ -30,7 +30,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x86 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/b996d352-d0eb-4c21-ad6f-79918e71369a/15a40462-6f4f-4416-af5a-b129eb7a9b14/windowsdesktop-runtime-10.0.6-win-x86.exe + InstallerUrl: https://download.microsoft.com/download/99445f61-a65e-44ce-b5fd-2fc49eeb99f6/c82cfa8e-c77e-4371-98e7-fa8f26920ecc/windowsdesktop-runtime-10.0.6-win-x86.exe InstallerSha256: B2B180E7E996B38107292AC32D7C72897B6CD740A1AB805414B199F23C6456F4 ProductCode: '{470716B6-F2D6-4BB5-A865-70471E521D9B}' AppsAndFeaturesEntries: diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.installer.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.installer.yaml new file mode 100644 index 0000000000000..0fbd459642a30 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.10 +PackageVersion: 10.0.10 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.10/dotnet-hosting-10.0.10-win.exe + InstallerSha256: 944D8E46A49D5AD26C99E63CA9A6F89AA2508FDCA564B95D3F94F96500D71044 + ProductCode: '{B1C5B6E6-6D07-4D70-845B-4A99888CE15C}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET 10.0.10 - Windows Server Hosting + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.26326 + ProductCode: '{B1C5B6E6-6D07-4D70-845B-4A99888CE15C}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.locale.en-US.yaml new file mode 100644 index 0000000000000..510193ef5f2d8 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.10 +PackageVersion: 10.0.10 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Hosting Bundle 10.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-hosting-10 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET Core +- ASP.NET +- web +- hosting +- hosting bundle +- IIS +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.yaml new file mode 100644 index 0000000000000..50588b1f34559 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.10 +PackageVersion: 10.0.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.6/Microsoft.DotNet.HostingBundle.10.installer.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.6/Microsoft.DotNet.HostingBundle.10.installer.yaml index 21081f0968f65..3c82ecdfae8e5 100644 --- a/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.6/Microsoft.DotNet.HostingBundle.10.installer.yaml +++ b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.6/Microsoft.DotNet.HostingBundle.10.installer.yaml @@ -10,7 +10,7 @@ InstallerSwitches: Installers: - Architecture: x86 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/0f689923-4e09-421f-b6a5-16f0d99463e0/24492e8a-5c42-4e0a-8873-797cb569027e/dotnet-hosting-10.0.6-win.exe + InstallerUrl: https://download.microsoft.com/download/637181b2-fb92-43c5-86eb-e54b49dab71a/504a893e-2c2c-4d19-be3d-9da0468a5f40/dotnet-hosting-10.0.6-win.exe InstallerSha256: 1046F88C198AC12E9079F38DCD42D67CC059BF33A3FABE0B16BE58522BEF1FC4 ProductCode: '{193BFFB0-6108-40D1-BF20-6C7FE4102000}' AppsAndFeaturesEntries: diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.installer.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.installer.yaml new file mode 100644 index 0000000000000..dfa52b8536fef --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.8 +PackageVersion: 8.0.29 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.29/dotnet-hosting-8.0.29-win.exe + InstallerSha256: AB50C9294DF8A12391B3EC37C1635D002F8E89C377C640E5167300BD483E9036 + ProductCode: '{fec5af07-a2a4-43a1-9952-8d291e39d23c}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET 8.0.29 - Windows Server Hosting + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.26325 + ProductCode: '{fec5af07-a2a4-43a1-9952-8d291e39d23c}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.locale.en-US.yaml new file mode 100644 index 0000000000000..12999ab250f03 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.8 +PackageVersion: 8.0.29 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Hosting Bundle 8.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-hosting-8 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET Core +- ASP.NET +- web +- hosting +- hosting bundle +- IIS +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.yaml new file mode 100644 index 0000000000000..a84ad466cb88c --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.8 +PackageVersion: 8.0.29 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.installer.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.installer.yaml new file mode 100644 index 0000000000000..6b772d4af4fb7 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.9 +PackageVersion: 9.0.18 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.18/dotnet-hosting-9.0.18-win.exe + InstallerSha256: 918904CC5312A0BFB63C6B454D27947BAD1EF011E9A617ECF0F5A275EED62EA5 + ProductCode: '{14382109-8664-473e-8cbe-4dab9adf935f}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET 9.0.18 - Windows Server Hosting + Publisher: Microsoft Corporation + DisplayVersion: 9.0.18.26323 + ProductCode: '{14382109-8664-473e-8cbe-4dab9adf935f}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.locale.en-US.yaml new file mode 100644 index 0000000000000..c57f0297f3682 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.9 +PackageVersion: 9.0.18 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Hosting Bundle 9.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-hosting-9 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET Core +- ASP.NET +- web +- hosting +- hosting bundle +- IIS +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.yaml new file mode 100644 index 0000000000000..dd2ea6906e5c4 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.9 +PackageVersion: 9.0.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.installer.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.installer.yaml new file mode 100644 index 0000000000000..a155593ea3a37 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.installer.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.Preview +PackageVersion: 11.0.0-preview.6.26359.118 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Log: ' ' + Custom: /norestart +Installers: +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/11.0.0-preview.6.26359.118/dotnet-hosting-11.0.0-preview.6.26359.118-win.exe + InstallerSha256: 74467F0AD8E56C868AFDC1880C8CBECE251C815FA19550F0E75AAF15499261FB + ProductCode: '{23CD51A8-67D9-430A-A575-539FEFB27E35}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET 11.0.0 Preview 6 Build preview.6.26359.118 - Windows Server Hosting + Publisher: Microsoft Corporation + DisplayVersion: 11.0.0.26359 + ProductCode: '{23CD51A8-67D9-430A-A575-539FEFB27E35}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.locale.en-US.yaml new file mode 100644 index 0000000000000..cb820881c72b8 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.Preview +PackageVersion: 11.0.0-preview.6.26359.118 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Hosting Bundle 11.0 Preview +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-hosting-preview +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET Core +- ASP.NET +- web +- hosting +- hosting bundle +- IIS +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.yaml new file mode 100644 index 0000000000000..0d086d180b3c5 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.Preview +PackageVersion: 11.0.0-preview.6.26359.118 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.installer.yaml b/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.installer.yaml new file mode 100644 index 0000000000000..26ba662964f0b --- /dev/null +++ b/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.Runtime.8 +PackageVersion: 8.0.29 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.29/dotnet-runtime-8.0.29-win-x64.exe + InstallerSha256: 58DA46D4D560D67B7BB00E5C9C5C41049DE29A9958A879EEA1E7FD5F891EB0DE + ProductCode: '{0636c53d-0ac0-4636-9b38-7fe0a4f09a00}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET Runtime - 8.0.29 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.36224 + ProductCode: '{0636c53d-0ac0-4636-9b38-7fe0a4f09a00}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.29/dotnet-runtime-8.0.29-win-x86.exe + InstallerSha256: 22D5FBA149248CA19BD4E5CE0FB81B795836F60CA0FA8E76737E0526AA85C19B + ProductCode: '{ba52c687-526d-4a58-8620-cccabbb0b077}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET Runtime - 8.0.29 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.36224 + ProductCode: '{ba52c687-526d-4a58-8620-cccabbb0b077}' +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.29/dotnet-runtime-8.0.29-win-arm64.exe + InstallerSha256: 52D13AF55A4876450CBAD0F78081FC8656FFE29D503420705023ADDE6BB467BE + ProductCode: '{5c95d225-e48f-4a2a-a145-437c9039d1c9}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET Runtime - 8.0.29 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.36224 + ProductCode: '{5c95d225-e48f-4a2a-a145-437c9039d1c9}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.locale.en-US.yaml new file mode 100644 index 0000000000000..41e5c6ec53cbd --- /dev/null +++ b/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.Runtime.8 +PackageVersion: 8.0.29 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET Runtime 8.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-runtime-8 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- runtime +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.yaml b/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.yaml new file mode 100644 index 0000000000000..b49512b6b5c54 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.Runtime.8 +PackageVersion: 8.0.29 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.106/Microsoft.DotNet.SDK.10.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.106/Microsoft.DotNet.SDK.10.installer.yaml index 9fd03e136e163..72a2f8d738a81 100644 --- a/manifests/m/Microsoft/DotNet/SDK/10/10.0.106/Microsoft.DotNet.SDK.10.installer.yaml +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.106/Microsoft.DotNet.SDK.10.installer.yaml @@ -10,7 +10,7 @@ InstallerSwitches: Installers: - Architecture: arm64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/d47355d6-6723-4175-94ff-73b12a6d3293/d9589bd5-ab9b-4a44-a38f-a1aa55df2d9f/dotnet-sdk-10.0.106-win-arm64.exe + InstallerUrl: https://download.microsoft.com/download/e7f0ef92-e0df-4edf-ab24-d4b2d6592de1/4ce28808-793b-4e34-8435-005149e3d621/dotnet-sdk-10.0.106-win-arm64.exe InstallerSha256: 403E49B7609B8E342F4DC5C8582ED20904F11373A2C6C556EC0F9161541E5BFF ProductCode: '{C3A87F02-05F5-446F-BECD-7B4902566CB9}' AppsAndFeaturesEntries: @@ -20,7 +20,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/d47355d6-6723-4175-94ff-73b12a6d3293/d985b118-88cf-4b26-808f-86718ff80dc2/dotnet-sdk-10.0.106-win-x64.exe + InstallerUrl: https://download.microsoft.com/download/e7f0ef92-e0df-4edf-ab24-d4b2d6592de1/05e7d003-f816-4680-9b76-c5dc7534bf88/dotnet-sdk-10.0.106-win-x64.exe InstallerSha256: AC8AA3C10B4C74850CB95F506210B349A68C2CD92A7F788ACF54F42D1A810D00 ProductCode: '{45E47119-FE62-4303-A985-312A82847936}' AppsAndFeaturesEntries: @@ -30,7 +30,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x86 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/d47355d6-6723-4175-94ff-73b12a6d3293/e81a4b26-aaa5-4938-a0bb-2c95b93ee352/dotnet-sdk-10.0.106-win-x86.exe + InstallerUrl: https://download.microsoft.com/download/e7f0ef92-e0df-4edf-ab24-d4b2d6592de1/a847723e-4a3a-49de-a5c9-f3b9279de7c1/dotnet-sdk-10.0.106-win-x86.exe InstallerSha256: 4FB1C94833724DB50108E0A487B584FF057BC973F3AA8FF5D230186501E4301C ProductCode: '{7AFAA849-9F7E-4752-A39A-4BAE0298F913}' AppsAndFeaturesEntries: diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.installer.yaml new file mode 100644 index 0000000000000..f50c787fa18dd --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.10 +PackageVersion: 10.0.110 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.110/dotnet-sdk-10.0.110-win-arm64.exe + InstallerSha256: B672B4F08DDDD79C2E4DDC28595CAFA64DB58C0213F060B25F516553B8495A18 + ProductCode: '{29F8CF33-934F-4DFB-B490-EFB9DA5AC943}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.110 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 10.1.1026.32716 + ProductCode: '{29F8CF33-934F-4DFB-B490-EFB9DA5AC943}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.110/dotnet-sdk-10.0.110-win-x64.exe + InstallerSha256: 6C6FA36BC74088500A7E181411A5BB83334A0140C75B5A2AEB77F80FE913D75F + ProductCode: '{FD5EA214-C690-466F-B8FB-1741881913F9}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.110 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 10.1.1026.32716 + ProductCode: '{FD5EA214-C690-466F-B8FB-1741881913F9}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.110/dotnet-sdk-10.0.110-win-x86.exe + InstallerSha256: B697EA3223EF579FD15DC8576575F4F6F715A1D48DB8AD9919534DF458A2A0BD + ProductCode: '{B35328A6-AD70-414C-9BF9-714A50A749F5}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.110 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 10.1.1026.32716 + ProductCode: '{B35328A6-AD70-414C-9BF9-714A50A749F5}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.locale.en-US.yaml new file mode 100644 index 0000000000000..e3950c7d1a15b --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.10 +PackageVersion: 10.0.110 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 10.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-10 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.yaml new file mode 100644 index 0000000000000..50cc65438d152 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.10 +PackageVersion: 10.0.110 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.202/Microsoft.DotNet.SDK.10.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.202/Microsoft.DotNet.SDK.10.installer.yaml index c4dfe231941da..22c8454350af4 100644 --- a/manifests/m/Microsoft/DotNet/SDK/10/10.0.202/Microsoft.DotNet.SDK.10.installer.yaml +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.202/Microsoft.DotNet.SDK.10.installer.yaml @@ -10,7 +10,7 @@ InstallerSwitches: Installers: - Architecture: arm64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/7244abfd-37cf-48da-8760-80e4a5976ebc/c8fd970a-b260-454f-ac1b-1fb2c185767b/dotnet-sdk-10.0.202-win-arm64.exe + InstallerUrl: https://download.microsoft.com/download/2f687396-5a89-41a2-9694-4b8bcca5a86f/366099d7-8099-4b5e-a7c6-c2238a175ff3/dotnet-sdk-10.0.202-win-arm64.exe InstallerSha256: 685B1BEF6DFE44AA70ACDCE4C16F498EFEE90312A60060ED72FA4143F9DB0C76 ProductCode: '{0012F56F-930B-4E01-8DDB-D115C0347535}' AppsAndFeaturesEntries: @@ -20,7 +20,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/7244abfd-37cf-48da-8760-80e4a5976ebc/a07a8c73-c3d9-44ca-a877-7daf0c9d422c/dotnet-sdk-10.0.202-win-x64.exe + InstallerUrl: https://download.microsoft.com/download/2f687396-5a89-41a2-9694-4b8bcca5a86f/7fa332eb-1cbe-4a20-96df-76c22da32b7c/dotnet-sdk-10.0.202-win-x64.exe InstallerSha256: 56A16CB8A60ED1AB64370A52EB5004965A5681603D910500C6CE23606F2CC83F ProductCode: '{9C2AABF8-DCAB-4D53-8AF1-AFA436703FB8}' AppsAndFeaturesEntries: @@ -30,7 +30,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x86 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/7244abfd-37cf-48da-8760-80e4a5976ebc/bed9459d-bc56-485b-92c1-057cd36b2502/dotnet-sdk-10.0.202-win-x86.exe + InstallerUrl: https://download.microsoft.com/download/2f687396-5a89-41a2-9694-4b8bcca5a86f/12fee737-e1e8-48f0-a076-8f262de5f56e/dotnet-sdk-10.0.202-win-x86.exe InstallerSha256: 93F7057B03F768DB5F97FB39E64B4FB3A18AEE581EF7FBAA33CB5F4FF6C26C4E ProductCode: '{4FCDDC6A-56B2-4E61-BB30-9A430F4D9307}' AppsAndFeaturesEntries: diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.installer.yaml new file mode 100644 index 0000000000000..c63c761f616b8 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.10 +PackageVersion: 10.0.302 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.302/dotnet-sdk-10.0.302-win-arm64.exe + InstallerSha256: BEDF0D3AE61284252DB8012DAB3809879FB6D9721335414B68992D32A6DA20BB + ProductCode: '{C016519C-47A4-4C58-966C-836980D0394D}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.302 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 10.3.226.33009 + ProductCode: '{C016519C-47A4-4C58-966C-836980D0394D}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.302/dotnet-sdk-10.0.302-win-x64.exe + InstallerSha256: B2618A69A4AE385EB03BDE0DE89468881318C6338B14E67574D691E145A7CE1C + ProductCode: '{609A456D-467D-4077-9BA2-B6404F1B1163}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.302 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 10.3.226.33009 + ProductCode: '{609A456D-467D-4077-9BA2-B6404F1B1163}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.302/dotnet-sdk-10.0.302-win-x86.exe + InstallerSha256: FE317BB21F30E93AE7175F6B55554512FA3A4A0FD58C7388FFD52486E634DA2E + ProductCode: '{388FE321-0DA5-4D27-84AC-77F3A93F5438}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.302 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 10.3.226.33009 + ProductCode: '{388FE321-0DA5-4D27-84AC-77F3A93F5438}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.locale.en-US.yaml new file mode 100644 index 0000000000000..a8132e1d3a307 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.10 +PackageVersion: 10.0.302 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 10.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-10 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.yaml new file mode 100644 index 0000000000000..a1cf4814c6d24 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.10 +PackageVersion: 10.0.302 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.installer.yaml new file mode 100644 index 0000000000000..3e17807439259 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.8 +PackageVersion: 8.0.129 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.129/dotnet-sdk-8.0.129-win-x64.exe + InstallerSha256: 14C443EE0296F8A6FF4D4DF66FCBBA6B7BCAE54C2C692D6DEEE6335B6C7820D9 + ProductCode: '{ebd336e4-58c8-4bb6-b114-a856fcea5e49}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 8.0.129 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 8.1.2926.32601 + ProductCode: '{ebd336e4-58c8-4bb6-b114-a856fcea5e49}' +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.129/dotnet-sdk-8.0.129-win-arm64.exe + InstallerSha256: 65F08D1B71F4D6043CDC5E2F84C0524198AD6F645410CF4E4DE71F787106CA15 + ProductCode: '{db305bcc-afff-4caf-a432-3724bdf72fde}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 8.0.129 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 8.1.2926.32601 + ProductCode: '{db305bcc-afff-4caf-a432-3724bdf72fde}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.129/dotnet-sdk-8.0.129-win-x86.exe + InstallerSha256: 8FE29D4ABAEB71BB800A18B66A5F7316E446E460F8D30FD3411B9A7F292563EF + ProductCode: '{864932dc-f372-473b-b85d-860d7044ee09}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 8.0.129 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 8.1.2926.32601 + ProductCode: '{864932dc-f372-473b-b85d-860d7044ee09}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.locale.en-US.yaml new file mode 100644 index 0000000000000..b93121d829116 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.8 +PackageVersion: 8.0.129 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 8.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-8 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.yaml b/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.yaml new file mode 100644 index 0000000000000..61016400db5bb --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.8 +PackageVersion: 8.0.129 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.installer.yaml new file mode 100644 index 0000000000000..c88507af87714 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.8 +PackageVersion: 8.0.423 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.423/dotnet-sdk-8.0.423-win-x64.exe + InstallerSha256: 79437444249FAD67A6BBA966105DFB9534F37FA963E122A4CCE034837074E02C + ProductCode: '{0f960a40-e9b6-46ca-81c4-45704c211022}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 8.0.423 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 8.4.2326.32602 + ProductCode: '{0f960a40-e9b6-46ca-81c4-45704c211022}' +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.423/dotnet-sdk-8.0.423-win-arm64.exe + InstallerSha256: 3923FDC8D48C143B017AD272A1C118A8F68138EAD3C8F942DFA6F733E83DB2B7 + ProductCode: '{60990a9e-bf46-45aa-9905-3cabad727d39}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 8.0.423 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 8.4.2326.32602 + ProductCode: '{60990a9e-bf46-45aa-9905-3cabad727d39}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.423/dotnet-sdk-8.0.423-win-x86.exe + InstallerSha256: D5C3B1023345773AA5BC090A867F7E31ABBC66487C076DFCB9CC386BF0E67E76 + ProductCode: '{10771306-741d-430d-9617-22a6b3172c7d}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 8.0.423 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 8.4.2326.32602 + ProductCode: '{10771306-741d-430d-9617-22a6b3172c7d}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.locale.en-US.yaml new file mode 100644 index 0000000000000..86feb92cab67f --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.8 +PackageVersion: 8.0.423 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 8.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-8 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.yaml b/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.yaml new file mode 100644 index 0000000000000..9672af7228882 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.8 +PackageVersion: 8.0.423 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.installer.yaml new file mode 100644 index 0000000000000..c6636a9aff98e --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.9 +PackageVersion: 9.0.119 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.119/dotnet-sdk-9.0.119-win-x64.exe + InstallerSha256: 6580DFB2C0A40492AB4E4747ADBDDBA4234D665E08D09B0876C71CC3168A0201 + ProductCode: '{aba8d105-3b42-4d4d-8d4b-870b5ae0fb04}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 9.0.119 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 9.1.1926.32319 + ProductCode: '{aba8d105-3b42-4d4d-8d4b-870b5ae0fb04}' +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.119/dotnet-sdk-9.0.119-win-arm64.exe + InstallerSha256: BB4CC6BA230DAB392D3FF08CC4A71815C08F893E61FF3608BF2C9D14F0ED1D8A + ProductCode: '{2975e769-0bcb-49e9-82ac-8ec540f8d67b}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 9.0.119 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 9.1.1926.32319 + ProductCode: '{2975e769-0bcb-49e9-82ac-8ec540f8d67b}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.119/dotnet-sdk-9.0.119-win-x86.exe + InstallerSha256: EF0D0987A763814742036A21A09D8480218B916B1B425E26AA44C1D8A362F8AB + ProductCode: '{8664e4f5-a2be-4eaa-b2ea-37149da86516}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 9.0.119 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 9.1.1926.32319 + ProductCode: '{8664e4f5-a2be-4eaa-b2ea-37149da86516}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.locale.en-US.yaml new file mode 100644 index 0000000000000..0fba2d5ebec91 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.9 +PackageVersion: 9.0.119 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 9.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-9 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.yaml b/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.yaml new file mode 100644 index 0000000000000..0031a8e3a7dec --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.9 +PackageVersion: 9.0.119 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.installer.yaml new file mode 100644 index 0000000000000..04ecc95ff8f38 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.9 +PackageVersion: 9.0.316 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.316/dotnet-sdk-9.0.316-win-x64.exe + InstallerSha256: 591130B2499225974B5347BC1BCFCC93796ABBDD9115DB3B5A8B6A1FCEC4E3F8 + ProductCode: '{43876a28-a466-4921-9710-4b889a11554f}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 9.0.316 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 9.3.1626.32312 + ProductCode: '{43876a28-a466-4921-9710-4b889a11554f}' +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.316/dotnet-sdk-9.0.316-win-arm64.exe + InstallerSha256: 94D168863112811FD2274A98013FA228B7EB6900200A3D515FB1A8F8D551BE54 + ProductCode: '{4e9160d5-dc60-4c98-9a71-c9f4e55964f7}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 9.0.316 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 9.3.1626.32312 + ProductCode: '{4e9160d5-dc60-4c98-9a71-c9f4e55964f7}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.316/dotnet-sdk-9.0.316-win-x86.exe + InstallerSha256: B73D387D837165068D1C6184AC7CF42B6099EC43CC0673FC5EEFB01C67711AAD + ProductCode: '{242dca2a-6632-477d-9282-5ac51edb8319}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 9.0.316 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 9.3.1626.32312 + ProductCode: '{242dca2a-6632-477d-9282-5ac51edb8319}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.locale.en-US.yaml new file mode 100644 index 0000000000000..35919b2216e4e --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.9 +PackageVersion: 9.0.316 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 9.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-9 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.yaml b/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.yaml new file mode 100644 index 0000000000000..6c9a8d896c190 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.9 +PackageVersion: 9.0.316 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.installer.yaml new file mode 100644 index 0000000000000..eafd762a9b605 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.installer.yaml @@ -0,0 +1,45 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.Preview +PackageVersion: 11.0.100-preview.6.26359.118 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Log: ' ' + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/11.0.100-preview.6.26359.118/dotnet-sdk-11.0.100-preview.6.26359.118-win-arm64.exe + InstallerSha256: 2A2C6D91A67B59E83E04B5E7EC65A4168A4160D6CBE56C5FDC5C7E8F14F4A8A1 + ProductCode: '{7C34B801-F1F6-4BDF-840D-B59893195380}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 11.0.100-preview.6.26359.118 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 11.1.26.36018 + ProductCode: '{7C34B801-F1F6-4BDF-840D-B59893195380}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/11.0.100-preview.6.26359.118/dotnet-sdk-11.0.100-preview.6.26359.118-win-x64.exe + InstallerSha256: DD4D4F947EA15AA58AE3B7E9417A3E71ED8DABF7BF42BFA79515D57133F225EE + ProductCode: '{EE4546A0-9451-4170-9D60-2FA5058A98A2}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 11.0.100-preview.6.26359.118 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 11.1.26.36018 + ProductCode: '{EE4546A0-9451-4170-9D60-2FA5058A98A2}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/11.0.100-preview.6.26359.118/dotnet-sdk-11.0.100-preview.6.26359.118-win-x86.exe + InstallerSha256: 6D3C635027BB68BB378B5DC5559773C12AA883AEB4C3185BAA5306F2C48C9446 + ProductCode: '{9AF33DA8-14D9-4070-91DF-471EE31B713C}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 11.0.100-preview.6.26359.118 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 11.1.26.36018 + ProductCode: '{9AF33DA8-14D9-4070-91DF-471EE31B713C}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.locale.en-US.yaml new file mode 100644 index 0000000000000..e657a3b5a70af --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.Preview +PackageVersion: 11.0.100-preview.6.26359.118 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 11.0 Preview +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-preview +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.yaml b/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.yaml new file mode 100644 index 0000000000000..dda0fa75410fd --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.Preview +PackageVersion: 11.0.100-preview.6.26359.118 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.installer.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.installer.yaml new file mode 100644 index 0000000000000..948065de45bce --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +InstallerType: portable +Commands: +- msrt +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download.microsoft.com/download/4/a/a/4aa524c6-239d-47ff-860b-5b397199cbf8/Windows-KB890830-V5.143.exe + InstallerSha256: F3FDC46A1BCBEBF7EF4B8BAB382B9E54A7279CB5AE6D8D255BA4F1145DE1BC98 +- Architecture: x64 + InstallerUrl: https://download.microsoft.com/download/2/c/5/2c563b99-54d9-4d85-a82b-45d3cd2f53ce/Windows-KB890830-x64-V2/c/5/2c563b99-54d9-4d85-a82b-45d3cd2f53ce/Windows-KB890830-x64-V5.143.exe + InstallerSha256: 4728C99180A882180AF8DC1C02BA2CB1F2D315A6DD6BA0E27CB9A590D509BA1D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.ar-AE.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.ar-AE.yaml new file mode 100644 index 0000000000000..a11b1a3a0f76f --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.ar-AE.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: ar-AE +PackageName: أداة إزالة البرامج الضارة لـ Windows +ShortDescription: في المحافظة على خلو أجهزة كمبيوتر Windows من البرامج الضارة الشائعة. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.cs-CZ.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..03989ef4ea02a --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.cs-CZ.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: cs-CZ +PackageName: Nástroj pro odstranění škodlivého softwaru systému Windows +PackageUrl: https://www.microsoft.com/cs-cz/download/details.aspx?id=9905 +Copyright: Proprietární +ShortDescription: Pomáhá chránit počítače s Windows bez převládajícím malwarem. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.da-DK.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.da-DK.yaml new file mode 100644 index 0000000000000..5553d18a35819 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.da-DK.yaml @@ -0,0 +1,11 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: da-DK +PackageName: Windows-værktøj til fjernelse af skadelig software +PackageUrl: https://www.microsoft.com/da-dk/download/details.aspx?id=9905 +ShortDescription: Hjælper med at holde Windows-computere fri for almindelig kendt malware. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.de-DE.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.de-DE.yaml new file mode 100644 index 0000000000000..fea7d454270ef --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.de-DE.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: de-DE +PackageName: Windows-Tool zum Entfernen bösartiger Software +PackageUrl: https://www.microsoft.com/de-de/download/details.aspx?id=9905 +License: Proprietäre +ShortDescription: Schützt Windows vor weit verbreiteter Schadsoftware. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.el-GR.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.el-GR.yaml new file mode 100644 index 0000000000000..f1de2213b1212 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: el-GR +PackageName: Εργαλείο αφαίρεσης κακόβουλου λογισμικού των Windows +PackageUrl: https://www.microsoft.com/el-gr/download/details.aspx?id=9905 +ShortDescription: Των Windows προστατεύει τους υπολογιστές Windows από διαδεδομένο κακόβουλο λογισμικό. +Tags: +- msrt +- μσρτ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.en-US.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.en-US.yaml new file mode 100644 index 0000000000000..0f0f86f083504 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: en-US +Publisher: Microsoft +PublisherUrl: https://www.microsoft.com/ +PrivacyUrl: https://privacy.microsoft.com/privacystatement +Author: Microsoft Corporation +PackageName: Malicious Software Removal Tool +PackageUrl: https://www.microsoft.com/download/details.aspx?id=9905 +License: Proprietary +Copyright: © Microsoft Corporation. All rights reserved. +ShortDescription: Tool to manually run Windows' monthly update checks for malicious software. +Tags: +- antimalware +- antivirus +- kb890830 +- kb891716 +- malicious-software-removal-tool +- security +- windows-update +- windowsupdate +Documentations: +- DocumentLabel: 32-bit version's PackageUrl + DocumentUrl: https://www.microsoft.com/download/details.aspx?id=16 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.es-ES.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.es-ES.yaml new file mode 100644 index 0000000000000..c5193ea391f21 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.es-ES.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: es-ES +PackageName: Herramienta de eliminación de software malintencionado de Windows +PackageUrl: https://www.microsoft.com/es-es/download/details.aspx?id=9905 +License: Privativo +ShortDescription: Ayuda a mantener los equipos de Windows libres de malware frecuente. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.fi-FI.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.fi-FI.yaml new file mode 100644 index 0000000000000..4bf80a0498060 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.fi-FI.yaml @@ -0,0 +1,11 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: fi-FI +PackageName: Windowsin haittaohjelmien poistotyökalu +PackageUrl: https://www.microsoft.com/fi-fi/download/details.aspx?id=9905 +ShortDescription: Auttaa suojaamaan Windows-tietokoneita laajalle levinneiltä haittaohjelmilta. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.fr-FR.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.fr-FR.yaml new file mode 100644 index 0000000000000..ba6d91430a074 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.fr-FR.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: fr-FR +PackageName: L'outil de suppression de logiciels malveillants Windows +PackageUrl: https://www.microsoft.com/fr-fr/download/details.aspx?id=9905 +License: Privateur +ShortDescription: Permet de préserver les ordinateurs Windows de la plupart des programmes malveillants les plus répandus. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.he-IL.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.he-IL.yaml new file mode 100644 index 0000000000000..8bd5db7c26bde --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.he-IL.yaml @@ -0,0 +1,11 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: he-IL +PackageName: הכלי של Windows להסרת תוכנה זדונית +PackageUrl: https://www.microsoft.com/he-il/download/details.aspx?id=9905 +ShortDescription: הכלי של Windows להסרת תוכנה זדונית (MSRT) עוזר לשמור על מחשבי Windows נקיים מתוכנות זדוניות נפוצות. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.hu-HU.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.hu-HU.yaml new file mode 100644 index 0000000000000..98081f3eacf74 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.hu-HU.yaml @@ -0,0 +1,11 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: hu-HU +PackageName: Windows kártevő-eltávolító eszköz +PackageUrl: https://www.microsoft.com/hu-hu/download/details.aspx?id=9905 +ShortDescription: Segít a Windows rendszerű számítógépek védelmében az elterjedt kártevők ellen. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.it-IT.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.it-IT.yaml new file mode 100644 index 0000000000000..b04fddfc58fdb --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.it-IT.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: it-IT +PackageName: Strumento di rimozione malware di Windows +PackageUrl: https://www.microsoft.com/it-it/download/details.aspx?id=9905 +License: Proprietario +ShortDescription: Consente di proteggere i computer Windows dai malware più frequenti. +Tags: +- srm +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.ja-JP.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.ja-JP.yaml new file mode 100644 index 0000000000000..e1551defdb353 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: ja-JP +PackageName: Windows 悪意のあるソフトウェアの削除ツール +PackageUrl: https://www.microsoft.com/ja-jp/download/details.aspx?id=9905 +License: プロプライエタリ +ShortDescription: により、流行しているマルウェアから Windows コンピューターを保護できます。 +Tags: +- msrt +- あくいのあるソフトウェアのさくじょツール +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.ko-KR.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.ko-KR.yaml new file mode 100644 index 0000000000000..a2bee163a6e84 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.ko-KR.yaml @@ -0,0 +1,11 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: ko-KR +PackageName: Windows 악성 소프트웨어 제거 도구 +PackageUrl: https://www.microsoft.com/ko-kr/download/details.aspx?id=9905 +ShortDescription: 사용하면 Windows 컴퓨터에 일반적인 맬웨어가 없는 상태로 유지하는 데 도움이 됩니다. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.nb-NO.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.nb-NO.yaml new file mode 100644 index 0000000000000..ef8bed9794377 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: nb-NO +PackageName: Verktøy for fjerning av skadelig programvare +License: Proprietær +Copyright: © Microsoft Corporation. Alle rettigheter forbeholdt. +ShortDescription: Verktøy for å manuelt kjøre Windows sine månedlige oppdateringers sjekking etter ondsinnede programmer. +Tags: +- antivirus +- kb890830 +- malware +- skadevare +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.nb.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.nb.yaml new file mode 100644 index 0000000000000..d2f7a667e0548 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.nb.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: nb +PackageName: Verktøy for fjerning av skadelig programvare +License: Proprietær +Copyright: © Microsoft Corporation. Alle rettigheter forbeholdt. +ShortDescription: Verktøy for å manuelt kjøre Windows sine månedlige oppdateringers sjekking etter ondsinnede programmer. +Tags: +- antivirus +- kb890830 +- malware +- msrt +- skadevare +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.nl-NL.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.nl-NL.yaml new file mode 100644 index 0000000000000..91e96ac0d857e --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.nl-NL.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: nl-NL +PackageName: Windows-hulpprogramma voor het verwijderen van schadelijke software +PackageUrl: https://www.microsoft.com/nl-nl/download/details.aspx?id=9905 +License: Private +ShortDescription: Helpt Windows-computers te beschermen tegen bekende malware. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.pl-PL.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.pl-PL.yaml new file mode 100644 index 0000000000000..29061961b437a --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.pl-PL.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: pl-PL +PackageName: Narzędzie Windows do usuwania złośliwego oprogramowania +PackageUrl: https://www.microsoft.com/pl-pl/download/details.aspx?id=9905 +License: własnościowe +ShortDescription: Pomaga w zabezpieczeniu komputerów z systemem Windows przed najczęściej występującym złośliwym oprogramowaniem. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.pt-BR.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.pt-BR.yaml new file mode 100644 index 0000000000000..d2fe75ff41833 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.pt-BR.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: pt-BR +PackageName: Ferramenta de Remoção de Software Mal-Intencionado do Windows +PackageUrl: https://www.microsoft.com/pt-br/download/details.aspx?id=9905 +License: Privativo +ShortDescription: Ajuda a manter os computadores Windows livres de malware predominante. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.pt-PT.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.pt-PT.yaml new file mode 100644 index 0000000000000..716ace3f3d2f2 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.pt-PT.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: pt-PT +PackageName: Ferramenta de Remoção de Software Malicioso do Windows +PackageUrl: https://www.microsoft.com/pt-pt/download/details.aspx?id=9905 +License: Privativo +ShortDescription: Ajuda a manter os computadores Windows livres de software maligno atual. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.ru-RU.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.ru-RU.yaml new file mode 100644 index 0000000000000..3542fffc212f0 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.ru-RU.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: ru-RU +PackageName: Средство удаления вредоносных программ Windows +PackageUrl: https://www.microsoft.com/ru-ru/download/details.aspx?id=9905 +License: несвободные +ShortDescription: Помогает защитить компьютеры с Windows от наиболее распространенных вредоносных программ. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.sv-SE.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.sv-SE.yaml new file mode 100644 index 0000000000000..a5a32f3331c3f --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.sv-SE.yaml @@ -0,0 +1,11 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: sv-SE +PackageName: Windows-verktyget Borttagning av skadlig programvara +PackageUrl: https://www.microsoft.com/sv-se/download/details.aspx?id=9905 +ShortDescription: Hjälper till att skydda Windows-datorer mot allmänt utbredd skadlig kod. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.tr-TR.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.tr-TR.yaml new file mode 100644 index 0000000000000..4ad59e8bd6d29 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.tr-TR.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: tr-TR +PackageName: Windows Kötü Amaçlı Yazılımları Temizleme Aracı +PackageUrl: https://www.microsoft.com/tr-tr/download/details.aspx?id=9905 +License: özel mülk +ShortDescription: Windows bilgisayarların yaygın kötü amaçlı yazılımlara karşı korunmasına yardımcı olur. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.zh-CN.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3e122b365f5f7 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.zh-CN.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: zh-CN +PackageName: Windows 恶意软件删除工具 +PackageUrl: https://www.microsoft.com/zh-cn/download/details.aspx?id=9905 +License: 专有软件 +ShortDescription: 可帮助 Windows 计算机免受流行恶意软件攻击。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.zh-TW.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.zh-TW.yaml new file mode 100644 index 0000000000000..11feef653ce11 --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.locale.zh-TW.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +PackageLocale: zh-TW +PackageName: Windows 惡意軟體移除工具 +PackageUrl: https://www.microsoft.com/zh-tw/download/details.aspx?id=9905 +License: 專有軟體 +ShortDescription: 可協助您確保 Windows 電腦免受盛行的惡意程式碼威脅。 +Tags: +- ㄜˋㄧˋㄖㄨㄢˇㄊㄧˇㄧˊㄔㄨˊㄍㄨㄥㄐㄩˋ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.yaml b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.yaml new file mode 100644 index 0000000000000..4e63b8eccfdcc --- /dev/null +++ b/manifests/m/Microsoft/MaliciousSoftwareRemovalTool/5.143/Microsoft.MaliciousSoftwareRemovalTool.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.MaliciousSoftwareRemovalTool +PackageVersion: "5.143" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.installer.yaml b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.installer.yaml new file mode 100644 index 0000000000000..ca3a55b0c9206 --- /dev/null +++ b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.RemoteDesktopClient +PackageVersion: 1.2.7279.0 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" + Custom: ALLUSERS=1 +UpgradeBehavior: install +Protocols: +- ms-avd +- ms-rd +FileExtensions: +- rdpw +Installers: +- Architecture: x86 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/c0843686-6494-4b83-a194-ec333759631e/RemoteDesktop_1.2.7279.0_x86.msi + InstallerSha256: 76B2826CE960F78065F0C70402BC48D84E406CF934033BFFBC8110E7CA4F8CFE + ProductCode: '{BA741475-2A52-4746-A78D-C90F9FF014CB}' + AppsAndFeaturesEntries: + - ProductCode: '{BA741475-2A52-4746-A78D-C90F9FF014CB}' + UpgradeCode: '{F35D4E51-0F33-426C-B8A8-3ECF4ADBFC5F}' +- Architecture: x64 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/04dda26b-a19a-4085-956a-f87d81bb03ec/RemoteDesktop_1.2.7279.0_x64.msi + InstallerSha256: 70B978561B42507E1E00610CFEA04BF85AB15AA8090294960064FD7697892F66 + ProductCode: '{F0B175E6-3C28-420A-B697-87700AF0EC7D}' + AppsAndFeaturesEntries: + - ProductCode: '{F0B175E6-3C28-420A-B697-87700AF0EC7D}' + UpgradeCode: '{F35D4E51-0F33-426C-B8A8-3ECF4ADBFC5F}' +- Architecture: arm64 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/929d2837-645d-4b75-83d6-57e4d71dd196/RemoteDesktop_1.2.7279.0_ARM64.msi + InstallerSha256: 33618605112EB7B65D9CF14BBEBB8557B112A9C6DE21F9069CEDC5E09AFC5F90 + ProductCode: '{934107E2-0DA5-46BB-BD28-DABFB85F957F}' + AppsAndFeaturesEntries: + - ProductCode: '{934107E2-0DA5-46BB-BD28-DABFB85F957F}' + UpgradeCode: '{F35D4E51-0F33-426C-B8A8-3ECF4ADBFC5F}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.locale.en-US.yaml b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.locale.en-US.yaml new file mode 100644 index 0000000000000..39663a428ef1a --- /dev/null +++ b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.RemoteDesktopClient +PackageVersion: 1.2.7279.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://support.microsoft.com/ +PrivacyUrl: https://privacy.microsoft.com/privacystatement +Author: Microsoft Corporation +PackageName: Remote Desktop +PackageUrl: https://learn.microsoft.com/azure/virtual-desktop/users/connect-windows +License: Proprietary +LicenseUrl: https://www.microsoft.com/legal/terms-of-use +Copyright: |- + © Microsoft Corporation + All rights reserved. +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: You can access Windows Virtual Desktop resources on devices with Windows 7, Windows 10, and Windows 10 IoT Enterprise using the Windows Desktop client. +Moniker: msrdc +Tags: +- remote-desktop +- virtual-desktop +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.locale.zh-CN.yaml b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.locale.zh-CN.yaml new file mode 100644 index 0000000000000..db4c0617fa908 --- /dev/null +++ b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.RemoteDesktopClient +PackageVersion: 1.2.7279.0 +PackageLocale: zh-CN +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://support.microsoft.com/ +PrivacyUrl: https://privacy.microsoft.com/zh-cn/privacystatement +Author: Microsoft Corporation +PackageName: 远程桌面 +PackageUrl: https://learn.microsoft.com/zh-cn/azure/virtual-desktop/users/connect-windows +License: 专有软件 +LicenseUrl: https://www.microsoft.com/legal/terms-of-use +Copyright: |- + © Microsoft Corporation + 保留所有权利。 +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: 您可以使用 Windows 桌面客户端在运行 Windows 7、Windows 10 和 Windows 10 IoT Enterprise 的设备上访问 Windows 虚拟桌面资源。 +Tags: +- 虚拟桌面 +- 远程桌面 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.yaml b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.yaml new file mode 100644 index 0000000000000..cbe406383d20b --- /dev/null +++ b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.RemoteDesktopClient +PackageVersion: 1.2.7279.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SQLServerManagementStudio/22/22.8.0/Microsoft.SQLServerManagementStudio.22.installer.yaml b/manifests/m/Microsoft/SQLServerManagementStudio/22/22.8.0/Microsoft.SQLServerManagementStudio.22.installer.yaml new file mode 100644 index 0000000000000..e99bc53218ec2 --- /dev/null +++ b/manifests/m/Microsoft/SQLServerManagementStudio/22/22.8.0/Microsoft.SQLServerManagementStudio.22.installer.yaml @@ -0,0 +1,45 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.SQLServerManagementStudio.22 +PackageVersion: 22.8.0 +InstallerLocale: en-US +MinimumOSVersion: 10.0.0.0 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + InstallLocation: --installPath + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork +UpgradeBehavior: install +Commands: +- SSMS +FileExtensions: +- sql +AppsAndFeaturesEntries: +- DisplayVersion: 22.8.0 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/e05c0bc8-d058-4b2b-937c-1c80073d7633/059d84ec668e6cb82f7471852cca2daacfc156c8a77136e9f45222ba80948580/vs_SSMS.exe + InstallerSha256: 059d84ec668e6cb82f7471852cca2daacfc156c8a77136e9f45222ba80948580 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/m/Microsoft/SQLServerManagementStudio/22/22.8.0/Microsoft.SQLServerManagementStudio.22.locale.en-US.yaml b/manifests/m/Microsoft/SQLServerManagementStudio/22/22.8.0/Microsoft.SQLServerManagementStudio.22.locale.en-US.yaml new file mode 100644 index 0000000000000..f6fbc1343e2d0 --- /dev/null +++ b/manifests/m/Microsoft/SQLServerManagementStudio/22/22.8.0/Microsoft.SQLServerManagementStudio.22.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.SQLServerManagementStudio.22 +PackageVersion: 22.8.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://aka.ms/ssms-feedback/ +PrivacyUrl: https://privacy.microsoft.com/ +Author: Microsoft +PackageName: Microsoft SQL Server Management Studio 22 +PackageUrl: https://learn.microsoft.com/sql/ssms/download-sql-server-management-studio-ssms +License: Microsoft Release Software License +LicenseUrl: https://aka.ms/ssms-license +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: SQL Server Management Studio (SSMS) is an integrated environment for managing any SQL infrastructure +Description: SQL Server Management Studio (SSMS) is an integrated environment for managing any SQL infrastructure, from SQL Server to Azure SQL Database. SSMS provides tools to configure, monitor, and administer instances of SQL Server and databases. Use SSMS to deploy, monitor, and upgrade the data-tier components used by your applications, and build queries and scripts. +Moniker: ssms +Tags: +- management-studio +- sql +- sql-management-studio +- sql-server +- ssms +ReleaseNotesUrl: https://aka.ms/SSMSReleaseNotes-22#2280 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/SQLServerManagementStudio/22/22.8.0/Microsoft.SQLServerManagementStudio.22.yaml b/manifests/m/Microsoft/SQLServerManagementStudio/22/22.8.0/Microsoft.SQLServerManagementStudio.22.yaml new file mode 100644 index 0000000000000..1df1083d7775c --- /dev/null +++ b/manifests/m/Microsoft/SQLServerManagementStudio/22/22.8.0/Microsoft.SQLServerManagementStudio.22.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.SQLServerManagementStudio.22 +PackageVersion: 22.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 0000000000000..b295996ebe7f5 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.installer.yaml @@ -0,0 +1,18 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.141.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.141.0&arch=x86 + InstallerSha256: B0F3481E33830BB60B01D66D00D87D9FEFCC0A5AE80CE9B735F38F4CA331E45F +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.141.0&arch=amd64 + InstallerSha256: B6EB001AA4FBB5A32EC7A92793DBD12651C1DE66AF0D61FC648A46A6ED0306EA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 0000000000000..59197b8b7b827 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.141.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft Safety Scanner +PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download +License: Proprietary +Copyright: © Microsoft Corporation. All rights reserved. +ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. +Description: |- + A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. + + The tool uses the same security intelligence update definitions as (among others) Microsoft Defender Antivirus. Safety Scanner does however not have an internal definition update checker, but does get app updates every 3-4 hours. Thus, the Winget package may lag some days behind Windows Update + Microsoft Defender Antivirus. +Tags: +- microsoft-defender-antivirus +- microsoft-safety-scanner +- msert +- windows-security +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 0000000000000..c9234528a8fed --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.141.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 0000000000000..78a611f61999b --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.installer.yaml @@ -0,0 +1,18 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.143.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.143.0&arch=x86 + InstallerSha256: AF42EFD6AEF976559DB02594A9C07EC109260D204D4EEEA699090FF2C8A76E69 +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.143.0&arch=amd64 + InstallerSha256: D1B5EAA25326CC03A61E88292C94FF660B0A13BB1D10780F0E8860A95ABAFA85 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 0000000000000..3a20fb4405efa --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.143.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft Safety Scanner +PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download +License: Proprietary +Copyright: © Microsoft Corporation. All rights reserved. +ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. +Description: |- + A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. + + The tool uses the same security intelligence update definitions as (among others) Microsoft Defender Antivirus. Safety Scanner does however not have an internal definition update checker, but does get app updates every 3-4 hours. Thus, the Winget package may lag some days behind Windows Update + Microsoft Defender Antivirus. +Tags: +- microsoft-defender-antivirus +- microsoft-safety-scanner +- msert +- windows-security +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 0000000000000..02f11bb7d992d --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.143.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.installer.yaml b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.installer.yaml new file mode 100644 index 0000000000000..a0cb6bfbdcff3 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Enterprise +PackageVersion: 16.11.58 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/d93bcdb2-1c87-4eba-9ee3-734d20b5a8f3/dcb8c1cc5dad8ebdb56b6d702efe74d34cd4df7219e970e7780edb6f40454c12/vs_Enterprise.exe + InstallerSha256: dcb8c1cc5dad8ebdb56b6d702efe74d34cd4df7219e970e7780edb6f40454c12 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.locale.en-US.yaml new file mode 100644 index 0000000000000..35863c95f15c8 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Enterprise +PackageVersion: 16.11.58 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Enterprise 2019 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: Built for scale, security, and speed - the IDE for complex, high-impact development. +Moniker: vs2019-enterprise +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.yaml b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.yaml new file mode 100644 index 0000000000000..89cf73baefc1e --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Enterprise +PackageVersion: 16.11.58 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.installer.yaml b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.installer.yaml new file mode 100644 index 0000000000000..c289377cc1fca --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Professional +PackageVersion: 16.11.58 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/d93bcdb2-1c87-4eba-9ee3-734d20b5a8f3/1cebf875f36de91d9a74e3e51355ce4f19a2725a257147d3b0e66ab88e8c96ed/vs_Professional.exe + InstallerSha256: 1cebf875f36de91d9a74e3e51355ce4f19a2725a257147d3b0e66ab88e8c96ed +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.locale.en-US.yaml new file mode 100644 index 0000000000000..d10d6384c8eb3 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Professional +PackageVersion: 16.11.58 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Professional 2019 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: The trusted IDE for professional developers - from desktop to cloud. +Moniker: vs2019-professional +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.yaml b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.yaml new file mode 100644 index 0000000000000..e6c6f7c2bd809 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Professional +PackageVersion: 16.11.58 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.36/Microsoft.VisualStudio.2022.Community.installer.yaml b/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.36/Microsoft.VisualStudio.2022.Community.installer.yaml new file mode 100644 index 0000000000000..98d23c7d196eb --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.36/Microsoft.VisualStudio.2022.Community.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Community +PackageVersion: 17.14.36 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/12aa1305-dd17-4f26-8429-d072cda64c80/663de32162e0f562ec2157785ee5f4a4cf6fee03efa711223b9a2126076971a9/vs_Community.exe + InstallerSha256: 663de32162e0f562ec2157785ee5f4a4cf6fee03efa711223b9a2126076971a9 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.36/Microsoft.VisualStudio.2022.Community.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.36/Microsoft.VisualStudio.2022.Community.locale.en-US.yaml new file mode 100644 index 0000000000000..039e39324c6c7 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.36/Microsoft.VisualStudio.2022.Community.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Community +PackageVersion: 17.14.36 +PackageLocale: en-US +Publisher: Microsoft Corporation +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: Everything you need to build modern apps - free for you, built for impact. +Moniker: vs2022-community +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.36/Microsoft.VisualStudio.2022.Community.yaml b/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.36/Microsoft.VisualStudio.2022.Community.yaml new file mode 100644 index 0000000000000..6cd92a8d0b0e6 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.36/Microsoft.VisualStudio.2022.Community.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Community +PackageVersion: 17.14.36 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.36/Microsoft.VisualStudio.2022.Enterprise.installer.yaml b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.36/Microsoft.VisualStudio.2022.Enterprise.installer.yaml new file mode 100644 index 0000000000000..01a5d1d68a32d --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.36/Microsoft.VisualStudio.2022.Enterprise.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Enterprise +PackageVersion: 17.14.36 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/12aa1305-dd17-4f26-8429-d072cda64c80/6dda85eb9d1fe2cb01174fbc2fc85bc74c26d6291c767bf330b4dae28f3406ab/vs_Enterprise.exe + InstallerSha256: 6dda85eb9d1fe2cb01174fbc2fc85bc74c26d6291c767bf330b4dae28f3406ab +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.36/Microsoft.VisualStudio.2022.Enterprise.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.36/Microsoft.VisualStudio.2022.Enterprise.locale.en-US.yaml new file mode 100644 index 0000000000000..1635aff84d174 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.36/Microsoft.VisualStudio.2022.Enterprise.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Enterprise +PackageVersion: 17.14.36 +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: Built for scale, security, and speed - the IDE for complex, high-impact development. +Moniker: vs2022-enterprise +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.36/Microsoft.VisualStudio.2022.Enterprise.yaml b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.36/Microsoft.VisualStudio.2022.Enterprise.yaml new file mode 100644 index 0000000000000..d0679ea3ad16c --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.36/Microsoft.VisualStudio.2022.Enterprise.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Enterprise +PackageVersion: 17.14.36 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.36/Microsoft.VisualStudio.2022.Professional.installer.yaml b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.36/Microsoft.VisualStudio.2022.Professional.installer.yaml new file mode 100644 index 0000000000000..ed43218b14741 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.36/Microsoft.VisualStudio.2022.Professional.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Professional +PackageVersion: 17.14.36 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/12aa1305-dd17-4f26-8429-d072cda64c80/bb0f1af6bc4a708d8bb7349fa8a1e9b25ea81a5d01125aaecb7894fefb81ffc8/vs_Professional.exe + InstallerSha256: bb0f1af6bc4a708d8bb7349fa8a1e9b25ea81a5d01125aaecb7894fefb81ffc8 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.36/Microsoft.VisualStudio.2022.Professional.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.36/Microsoft.VisualStudio.2022.Professional.locale.en-US.yaml new file mode 100644 index 0000000000000..901879c4adacd --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.36/Microsoft.VisualStudio.2022.Professional.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Professional +PackageVersion: 17.14.36 +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: The trusted IDE for professional developers - from desktop to cloud. +Moniker: vs2022-professional +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.36/Microsoft.VisualStudio.2022.Professional.yaml b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.36/Microsoft.VisualStudio.2022.Professional.yaml new file mode 100644 index 0000000000000..653fa6745ff66 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.36/Microsoft.VisualStudio.2022.Professional.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Professional +PackageVersion: 17.14.36 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/BuildTools/18.8.0/Microsoft.VisualStudio.BuildTools.installer.yaml b/manifests/m/Microsoft/VisualStudio/BuildTools/18.8.0/Microsoft.VisualStudio.BuildTools.installer.yaml new file mode 100644 index 0000000000000..656f1612318f3 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/BuildTools/18.8.0/Microsoft.VisualStudio.BuildTools.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.BuildTools +PackageVersion: 18.8.0 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/e05c0bc8-d058-4b2b-937c-1c80073d7633/b62e8829c6a6c043aacf2ef657456213ab71099c7e46a610f95d6778bfc9beb0/vs_BuildTools.exe + InstallerSha256: b62e8829c6a6c043aacf2ef657456213ab71099c7e46a610f95d6778bfc9beb0 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/BuildTools/18.8.0/Microsoft.VisualStudio.BuildTools.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/BuildTools/18.8.0/Microsoft.VisualStudio.BuildTools.locale.en-US.yaml new file mode 100644 index 0000000000000..09f6df905997e --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/BuildTools/18.8.0/Microsoft.VisualStudio.BuildTools.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.BuildTools +PackageVersion: 18.8.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio BuildTools 2026 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: These Build Tools allow you to build Visual Studio projects from a command-line interface. +Moniker: vs18-buildtools +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/BuildTools/18.8.0/Microsoft.VisualStudio.BuildTools.yaml b/manifests/m/Microsoft/VisualStudio/BuildTools/18.8.0/Microsoft.VisualStudio.BuildTools.yaml new file mode 100644 index 0000000000000..d06c2332b721a --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/BuildTools/18.8.0/Microsoft.VisualStudio.BuildTools.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.BuildTools +PackageVersion: 18.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Community/18.7.4/Microsoft.VisualStudio.Community.installer.yaml b/manifests/m/Microsoft/VisualStudio/Community/18.7.4/Microsoft.VisualStudio.Community.installer.yaml new file mode 100644 index 0000000000000..114979ed4fd5f --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Community/18.7.4/Microsoft.VisualStudio.Community.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Community +PackageVersion: 18.7.4 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/f04d3c70-4530-4c22-9ab6-fe3d54ee9d39/6fdf2f76d8dae0f760d0582074c55f2b35d127d3fe929d64f1c90d096beac6f5/vs_Community.exe + InstallerSha256: 6fdf2f76d8dae0f760d0582074c55f2b35d127d3fe929d64f1c90d096beac6f5 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Community/18.7.4/Microsoft.VisualStudio.Community.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/Community/18.7.4/Microsoft.VisualStudio.Community.locale.en-US.yaml new file mode 100644 index 0000000000000..4a8d1a0f587f5 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Community/18.7.4/Microsoft.VisualStudio.Community.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Community +PackageVersion: 18.7.4 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Community 2026 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: Everything you need to build modern apps - free for you, built for impact. +Moniker: vs18-community +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Community/18.7.4/Microsoft.VisualStudio.Community.yaml b/manifests/m/Microsoft/VisualStudio/Community/18.7.4/Microsoft.VisualStudio.Community.yaml new file mode 100644 index 0000000000000..1de3eb2b441e3 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Community/18.7.4/Microsoft.VisualStudio.Community.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Community +PackageVersion: 18.7.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.installer.yaml b/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.installer.yaml new file mode 100644 index 0000000000000..d155240ea2f1a --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Community +PackageVersion: 18.8.0 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/e05c0bc8-d058-4b2b-937c-1c80073d7633/b7cc3e50be660def74981fcdac8e97636a90e1c1b00142c3e5210e99e8d8954c/vs_Community.exe + InstallerSha256: b7cc3e50be660def74981fcdac8e97636a90e1c1b00142c3e5210e99e8d8954c +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.locale.en-US.yaml new file mode 100644 index 0000000000000..e5c3cb1cf091e --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Community +PackageVersion: 18.8.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Community 2026 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: Everything you need to build modern apps - free for you, built for impact. +Moniker: vs18-community +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.yaml b/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.yaml new file mode 100644 index 0000000000000..b36f5c9301b41 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Community +PackageVersion: 18.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Community/Insiders/18.9.12009.208/Microsoft.VisualStudio.Community.Insiders.installer.yaml b/manifests/m/Microsoft/VisualStudio/Community/Insiders/18.9.12009.208/Microsoft.VisualStudio.Community.Insiders.installer.yaml new file mode 100644 index 0000000000000..0043f31a4fe26 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Community/Insiders/18.9.12009.208/Microsoft.VisualStudio.Community.Insiders.installer.yaml @@ -0,0 +1,95 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Community.Insiders +PackageVersion: 18.9.12009.208 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +AppsAndFeaturesEntries: +- DisplayVersion: Insiders [12009.208] +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/4c9f90c8-4e12-4c8e-893a-f3d2da257c43/3157c25cc42846f9c9171b6fa6777dc4366de40371c3d6d446d71b2d505c1f70/vs_Community.exe + InstallerSha256: 3157c25cc42846f9c9171b6fa6777dc4366de40371c3d6d446d71b2d505c1f70 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Community/Insiders/18.9.12009.208/Microsoft.VisualStudio.Community.Insiders.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/Community/Insiders/18.9.12009.208/Microsoft.VisualStudio.Community.Insiders.locale.en-US.yaml new file mode 100644 index 0000000000000..d06b4553a3d24 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Community/Insiders/18.9.12009.208/Microsoft.VisualStudio.Community.Insiders.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Community.Insiders +PackageVersion: 18.9.12009.208 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Community 2026 Insiders +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: Everything you need to build modern apps - free for you, built for impact. +Moniker: vs18-community-insiders +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Community/Insiders/18.9.12009.208/Microsoft.VisualStudio.Community.Insiders.yaml b/manifests/m/Microsoft/VisualStudio/Community/Insiders/18.9.12009.208/Microsoft.VisualStudio.Community.Insiders.yaml new file mode 100644 index 0000000000000..26ea75493ceec --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Community/Insiders/18.9.12009.208/Microsoft.VisualStudio.Community.Insiders.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Community.Insiders +PackageVersion: 18.9.12009.208 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Enterprise/18.7.4/Microsoft.VisualStudio.Enterprise.installer.yaml b/manifests/m/Microsoft/VisualStudio/Enterprise/18.7.4/Microsoft.VisualStudio.Enterprise.installer.yaml new file mode 100644 index 0000000000000..2e5cd9366c01d --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Enterprise/18.7.4/Microsoft.VisualStudio.Enterprise.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Enterprise +PackageVersion: 18.7.4 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/f04d3c70-4530-4c22-9ab6-fe3d54ee9d39/b6751725c1cddfe69c43812aa5a1dde261ccb062238e9ddd0450a2775ba1c172/vs_Enterprise.exe + InstallerSha256: b6751725c1cddfe69c43812aa5a1dde261ccb062238e9ddd0450a2775ba1c172 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Enterprise/18.7.4/Microsoft.VisualStudio.Enterprise.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/Enterprise/18.7.4/Microsoft.VisualStudio.Enterprise.locale.en-US.yaml new file mode 100644 index 0000000000000..20bdf860d75fc --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Enterprise/18.7.4/Microsoft.VisualStudio.Enterprise.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Enterprise +PackageVersion: 18.7.4 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Enterprise 2026 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: Built for scale, security, and speed - the IDE for complex, high-impact development. +Moniker: vs18-enterprise +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Enterprise/18.7.4/Microsoft.VisualStudio.Enterprise.yaml b/manifests/m/Microsoft/VisualStudio/Enterprise/18.7.4/Microsoft.VisualStudio.Enterprise.yaml new file mode 100644 index 0000000000000..685b8ab841c23 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Enterprise/18.7.4/Microsoft.VisualStudio.Enterprise.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Enterprise +PackageVersion: 18.7.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.installer.yaml b/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.installer.yaml new file mode 100644 index 0000000000000..92bb4dcef636b --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Enterprise +PackageVersion: 18.8.0 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/e05c0bc8-d058-4b2b-937c-1c80073d7633/4e4938d0e6d28853d29c7281aad83492b6efe8ce048ae6b41128ceecf83d623e/vs_Enterprise.exe + InstallerSha256: 4e4938d0e6d28853d29c7281aad83492b6efe8ce048ae6b41128ceecf83d623e +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.locale.en-US.yaml new file mode 100644 index 0000000000000..01e6ddb2aa028 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Enterprise +PackageVersion: 18.8.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Enterprise 2026 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: Built for scale, security, and speed - the IDE for complex, high-impact development. +Moniker: vs18-enterprise +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.yaml b/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.yaml new file mode 100644 index 0000000000000..68c49ec4f62d8 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Enterprise +PackageVersion: 18.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Enterprise/Insiders/18.9.12009.208/Microsoft.VisualStudio.Enterprise.Insiders.installer.yaml b/manifests/m/Microsoft/VisualStudio/Enterprise/Insiders/18.9.12009.208/Microsoft.VisualStudio.Enterprise.Insiders.installer.yaml new file mode 100644 index 0000000000000..265ce19771afb --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Enterprise/Insiders/18.9.12009.208/Microsoft.VisualStudio.Enterprise.Insiders.installer.yaml @@ -0,0 +1,95 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Enterprise.Insiders +PackageVersion: 18.9.12009.208 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +AppsAndFeaturesEntries: +- DisplayVersion: Insiders [12009.208] +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/4c9f90c8-4e12-4c8e-893a-f3d2da257c43/5ab6609f0b94050c2e606373d3a82cafc887e4084ec9025fdd4cbba254e88286/vs_Enterprise.exe + InstallerSha256: 5ab6609f0b94050c2e606373d3a82cafc887e4084ec9025fdd4cbba254e88286 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Enterprise/Insiders/18.9.12009.208/Microsoft.VisualStudio.Enterprise.Insiders.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/Enterprise/Insiders/18.9.12009.208/Microsoft.VisualStudio.Enterprise.Insiders.locale.en-US.yaml new file mode 100644 index 0000000000000..58065a6d658f0 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Enterprise/Insiders/18.9.12009.208/Microsoft.VisualStudio.Enterprise.Insiders.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Enterprise.Insiders +PackageVersion: 18.9.12009.208 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Enterprise 2026 Insiders +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: Built for scale, security, and speed - the IDE for complex, high-impact development. +Moniker: vs18-enterprise-insiders +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Enterprise/Insiders/18.9.12009.208/Microsoft.VisualStudio.Enterprise.Insiders.yaml b/manifests/m/Microsoft/VisualStudio/Enterprise/Insiders/18.9.12009.208/Microsoft.VisualStudio.Enterprise.Insiders.yaml new file mode 100644 index 0000000000000..5a6638bd5670e --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Enterprise/Insiders/18.9.12009.208/Microsoft.VisualStudio.Enterprise.Insiders.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Enterprise.Insiders +PackageVersion: 18.9.12009.208 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Professional/18.7.4/Microsoft.VisualStudio.Professional.installer.yaml b/manifests/m/Microsoft/VisualStudio/Professional/18.7.4/Microsoft.VisualStudio.Professional.installer.yaml new file mode 100644 index 0000000000000..e651aaf99432f --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Professional/18.7.4/Microsoft.VisualStudio.Professional.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Professional +PackageVersion: 18.7.4 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/f04d3c70-4530-4c22-9ab6-fe3d54ee9d39/f9a01c7b8be748d859bc86f9be2b61d6652c118c27eecb8071a9a808cd01748e/vs_Professional.exe + InstallerSha256: f9a01c7b8be748d859bc86f9be2b61d6652c118c27eecb8071a9a808cd01748e +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Professional/18.7.4/Microsoft.VisualStudio.Professional.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/Professional/18.7.4/Microsoft.VisualStudio.Professional.locale.en-US.yaml new file mode 100644 index 0000000000000..f21c563523f54 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Professional/18.7.4/Microsoft.VisualStudio.Professional.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Professional +PackageVersion: 18.7.4 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Professional 2026 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: The trusted IDE for professional developers - from desktop to cloud. +Moniker: vs18-professional +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Professional/18.7.4/Microsoft.VisualStudio.Professional.yaml b/manifests/m/Microsoft/VisualStudio/Professional/18.7.4/Microsoft.VisualStudio.Professional.yaml new file mode 100644 index 0000000000000..8234badced2c7 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Professional/18.7.4/Microsoft.VisualStudio.Professional.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Professional +PackageVersion: 18.7.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.installer.yaml b/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.installer.yaml new file mode 100644 index 0000000000000..b2c21aa4641e8 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Professional +PackageVersion: 18.8.0 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/e05c0bc8-d058-4b2b-937c-1c80073d7633/ab26b13eff80f367affb0fd42138ce763b85917c25a7209c4eb709b7b83c62dd/vs_Professional.exe + InstallerSha256: ab26b13eff80f367affb0fd42138ce763b85917c25a7209c4eb709b7b83c62dd +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.locale.en-US.yaml new file mode 100644 index 0000000000000..09d34eaccebca --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Professional +PackageVersion: 18.8.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Professional 2026 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: The trusted IDE for professional developers - from desktop to cloud. +Moniker: vs18-professional +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.yaml b/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.yaml new file mode 100644 index 0000000000000..a1d88b952bacd --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Professional +PackageVersion: 18.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Professional/Insiders/18.9.12009.208/Microsoft.VisualStudio.Professional.Insiders.installer.yaml b/manifests/m/Microsoft/VisualStudio/Professional/Insiders/18.9.12009.208/Microsoft.VisualStudio.Professional.Insiders.installer.yaml new file mode 100644 index 0000000000000..317a4af1c2466 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Professional/Insiders/18.9.12009.208/Microsoft.VisualStudio.Professional.Insiders.installer.yaml @@ -0,0 +1,95 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Professional.Insiders +PackageVersion: 18.9.12009.208 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +AppsAndFeaturesEntries: +- DisplayVersion: Insiders [12009.208] +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/4c9f90c8-4e12-4c8e-893a-f3d2da257c43/c5e27f7a073a4161083faa08f1e2b88b47eea3b136c80b7bcd4a25430324e73a/vs_Professional.exe + InstallerSha256: c5e27f7a073a4161083faa08f1e2b88b47eea3b136c80b7bcd4a25430324e73a +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Professional/Insiders/18.9.12009.208/Microsoft.VisualStudio.Professional.Insiders.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/Professional/Insiders/18.9.12009.208/Microsoft.VisualStudio.Professional.Insiders.locale.en-US.yaml new file mode 100644 index 0000000000000..3307136853659 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Professional/Insiders/18.9.12009.208/Microsoft.VisualStudio.Professional.Insiders.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Professional.Insiders +PackageVersion: 18.9.12009.208 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Professional 2026 Insiders +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: The trusted IDE for professional developers - from desktop to cloud. +Moniker: vs18-professional-insiders +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Professional/Insiders/18.9.12009.208/Microsoft.VisualStudio.Professional.Insiders.yaml b/manifests/m/Microsoft/VisualStudio/Professional/Insiders/18.9.12009.208/Microsoft.VisualStudio.Professional.Insiders.yaml new file mode 100644 index 0000000000000..d2e5c57786e3b --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Professional/Insiders/18.9.12009.208/Microsoft.VisualStudio.Professional.Insiders.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Professional.Insiders +PackageVersion: 18.9.12009.208 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.installer.yaml b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.installer.yaml new file mode 100644 index 0000000000000..5253f68df9129 --- /dev/null +++ b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.WindowsApp +PackageVersion: 2.0.1247.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +Protocols: +- ms-cloudpc +- ms-cp +- ms-remotedesktop +- ms-remotedesktop-launch +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCLibs.Desktop.14 +PackageFamilyName: MicrosoftCorporationII.Windows365_8wekyb3d8bbwe +Installers: +- Architecture: x86 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/de7af349-5851-4629-8350-f62f2e62b93b/WindowsApp_x86_Release_2.0.1247.0.msix + InstallerSha256: 0061F7F1E5C055D8C5DDDCFE76FCF03390EE2230CCA93861818F43A7951A5D63 + SignatureSha256: 733F1D619C29165B2FED99B3474A996A8874D7CAD90EC5F67FA50868BD8B2283 +- Architecture: x64 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/42efb6cc-587d-446c-bf6a-06ab47b5c7ed/WindowsApp_x64_Release_2.0.1247.0.msix + InstallerSha256: B83859DD5E7C729371C6AF8413AD2A1421D33623B031CFB08C332D8403219125 + SignatureSha256: 128E326590A472FCEED25668D39A1716B68A6DE0E942D3F008F360D230D6B5DD +- Architecture: arm64 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/0dbe2147-d841-4904-992b-843d7c9cdce1/WindowsApp_arm64_Release_2.0.1247.0.msix + InstallerSha256: AC1903083AF8B63C82F87BF1DD298CA834A1EC20AE6BB619797E69F6C7C1BCDD + SignatureSha256: 21BC28E879F6BCADDB367CA6478E5A12DB22C83C4A6A7465EC70D9C3AD678741 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.locale.en-US.yaml b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.locale.en-US.yaml new file mode 100644 index 0000000000000..f17192cd7adfb --- /dev/null +++ b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.WindowsApp +PackageVersion: 2.0.1247.0 +PackageLocale: en-US +Publisher: Microsoft Corp. +PublisherUrl: https://www.microsoft.com/ +PrivacyUrl: https://privacy.microsoft.com/privacystatement +Author: Microsoft Corporation +PackageName: Windows App +PackageUrl: https://learn.microsoft.com/windows-app/overview +License: Proprietary +LicenseUrl: https://learn.microsoft.com/legal/windows-app/windows-app-license-terms +Copyright: Copyright (c) 2026 Microsoft Corporation +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: Windows App is your gateway to Azure Virtual Desktop, Windows 365, Microsoft Dev Box, Remote Desktop Services, and remote PCs, securely connecting you to Windows devices and apps on a device of your choice. +Description: |- + Windows App is your gateway to Azure Virtual Desktop, Windows 365, Microsoft Dev Box, Remote Desktop Services, and remote PCs, securely connecting you to Windows devices and apps. + You can use Windows App on many different types of devices on different platforms and form factors, such as desktops and laptops, tablets, smartphones, and through a web browser. When using a web browser on a desktop or laptop, you can connect without having to download and install any software. +Tags: +- remote-desktop +- virtual-desktop +ReleaseNotesUrl: https://learn.microsoft.com/windows-app/whats-new +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.locale.zh-CN.yaml b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b0f2f47f1b80f --- /dev/null +++ b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.locale.zh-CN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.WindowsApp +PackageVersion: 2.0.1247.0 +PackageLocale: zh-CN +PrivacyUrl: https://privacy.microsoft.com/zh-cn/privacystatement +PackageUrl: https://learn.microsoft.com/zh-cn/windows-app/overview +License: 专有软件 +LicenseUrl: https://learn.microsoft.com/zh-cn/legal/windows-app/windows-app-license-terms +ShortDescription: Windows 应用是 Azure 虚拟桌面、Windows 365、Microsoft Dev Box Remote Desktop Services 和远程电脑的网关,可安全地将你连接到所选设备上的 Windows 设备和应用。 +Description: |- + Windows 应用是 Azure 虚拟桌面、Windows 365、Microsoft Dev Box、远程桌面服务和远程电脑的网关,可以安全地连接到 Windows 设备和应用。 + 你可以利用台式机、笔记本电脑、平板电脑、智能手机等多种不同外形的设备,在不同平台上使用 Windows 应用,也可以通过 Web 浏览器使用。在台式机和笔记本电脑上使用 Web 浏览器时,无需下载和安装任何软件即可进行连接。 +Tags: +- 虚拟桌面 +- 远程桌面 +ReleaseNotesUrl: https://learn.microsoft.com/zh-cn/windows-app/whats-new +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.yaml b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.yaml new file mode 100644 index 0000000000000..2ddd4ca41b6f3 --- /dev/null +++ b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.WindowsApp +PackageVersion: 2.0.1247.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.installer.yaml b/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.installer.yaml new file mode 100644 index 0000000000000..7cad958e7f033 --- /dev/null +++ b/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: MiguelAngelRamirez.MyAgents +PackageVersion: 0.1.0 +InstallerType: portable +Commands: +- myagents +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/miguelangelxramirez/MyAgents/releases/download/v0.1.0/MyAgents.exe + InstallerSha256: 28CDC3C64DE851D91700EA29E1E57413D5F53BE41863C2A57750CFC3339AEA8E +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.locale.en-US.yaml b/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.locale.en-US.yaml new file mode 100644 index 0000000000000..f3884f0c70cda --- /dev/null +++ b/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: MiguelAngelRamirez.MyAgents +PackageVersion: 0.1.0 +PackageLocale: en-US +Publisher: Miguel Angel Ramirez +PublisherUrl: https://github.com/miguelangelxramirez +PackageName: MyAgents +PackageUrl: https://github.com/miguelangelxramirez/MyAgents +License: MIT +LicenseUrl: https://github.com/miguelangelxramirez/MyAgents/blob/main/LICENSE +ShortDescription: Windows tray app that monitors all your Claude Code and Codex CLI sessions at once — live status, click-to-focus, and official 5h/7d usage bars. +Description: A lightweight Windows tray app that shows every running Claude Code and Codex session (in WSL and native Windows) with live status, lets you click a session to focus its terminal, and shows official 5h/7d usage bars captured from each CLI's own data — no tokens read, no undocumented endpoints called. +Tags: +- claude +- claude-code +- codex +- cli +- productivity +- wsl +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.yaml b/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.yaml new file mode 100644 index 0000000000000..9ececaa031e5a --- /dev/null +++ b/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: MiguelAngelRamirez.MyAgents +PackageVersion: 0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.installer.yaml b/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.installer.yaml new file mode 100644 index 0000000000000..5783d5aa97716 --- /dev/null +++ b/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MotionLabSystems.C3Dserver +PackageVersion: 1.204.8.1 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{FFBDAF28-27F5-4043-BB8B-1720C5F82868}_is1' +ReleaseDate: 2020-01-27 +AppsAndFeaturesEntries: +- Publisher: Motion Lab Systems, Inc. + ProductCode: '{FFBDAF28-27F5-4043-BB8B-1720C5F82868}_is1' +ElevationRequirement: elevationRequired +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Motion Lab Systems\C3Dserver' +Installers: +- Architecture: x86 + InstallerUrl: https://www.c3d.org/apps/C3Dserver_setup.exe + InstallerSha256: 2C95001D402E7B5A570976AC17597B9BBFD6183C2BBC541D0972A4241A4CD9FB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.locale.en-US.yaml b/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.locale.en-US.yaml new file mode 100644 index 0000000000000..23a9911f2c2ad --- /dev/null +++ b/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: MotionLabSystems.C3Dserver +PackageVersion: 1.204.8.1 +PackageLocale: en-US +Publisher: Motion Lab Systems, Inc. +PublisherUrl: https://www.motion-labs.com/ +PublisherSupportUrl: https://www.c3d.org/c3dsupport.html +Author: Motion Lab Systems, Inc. +PackageName: Motion Lab Systems C3Dserver +PackageUrl: https://www.c3d.org/c3dapps.html +License: Freeware +LicenseUrl: https://www.c3d.org/about.html +Copyright: Copyright © Motion Lab Systems +ShortDescription: C3D Software Development Kit providing access to C3D motion capture files from Windows applications. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.yaml b/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.yaml new file mode 100644 index 0000000000000..7b46907f95a48 --- /dev/null +++ b/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: MotionLabSystems.C3Dserver +PackageVersion: 1.204.8.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.installer.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.installer.yaml new file mode 100644 index 0000000000000..8e7677bfceb52 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +PackageFamilyName: Mozilla.MozillaFirefox_jag0gd4e3s9p2 +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/multi/Firefox%20Setup%20152.0.6.msix + InstallerSha256: 1A1608988E33A102D9F1A1D49215441FC419E912274A1045029CEC4D461B913D + SignatureSha256: 3328DB68BBD2B7B1ED1D9E508AE8C653D3A838496E5FAA81CD97D70BC147EEAF +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/multi/Firefox%20Setup%20152.0.6.msix + InstallerSha256: 8BBA39D113FDC74FE2F0252583DDCB41B49C1E77CB194F07A3C577298D0CFDE1 + SignatureSha256: 987408ABF0867581C4ACB7E60F57B6ECB5D58A9C97673712D71212657F49C5CE +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/multi/Firefox%20Setup%20152.0.6.msix + InstallerSha256: AC3238C2A9718CB86DF3DC1828F096D17810C9167C1B685ECAD60758A33E0935 + SignatureSha256: DEAA7657C908550FA5B8B76DED2F799B81BB591750A465BFF1A9390183809C41 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..3e0932ec0e98b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.da-DK.yaml new file mode 100644 index 0000000000000..01a93c7508f52 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.de-DE.yaml new file mode 100644 index 0000000000000..82712c494887a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.el-GR.yaml new file mode 100644 index 0000000000000..5c076306306f5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.en-GB.yaml new file mode 100644 index 0000000000000..f02b788e434b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.en-GB.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- 9nzvdkpmr9rd +- browser +- gecko +- internet +- pdfreader +- quantum +- spidermonkey +- web +- web-browser +- webpages +- websites +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.en-US.yaml new file mode 100644 index 0000000000000..aec4ff7e04b5a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (MSIX) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- 9nzvdkpmr9rd +- browser +- gecko +- internet +- pdfreader +- quantum +- spidermonkey +- web +- web-browser +- webpages +- websites +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.es-MX.yaml new file mode 100644 index 0000000000000..318ae1c8d3252 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.fr-FR.yaml new file mode 100644 index 0000000000000..9194a4b4dc252 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.hu-HU.yaml new file mode 100644 index 0000000000000..d93c14f027b6b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.ja-JP.yaml new file mode 100644 index 0000000000000..21e4296d292cb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.nb-NO.yaml new file mode 100644 index 0000000000000..35f85133da01c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.nb-NO.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- 9nzvdkpmr9rd +- internett +- nettleser +- nettlesing +- nettsider +- nettsteder +- pdfleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.ru-RU.yaml new file mode 100644 index 0000000000000..0ea8d2e92ec72 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.ta-IN.yaml new file mode 100644 index 0000000000000..032e5ab1c8d6d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.zh-CN.yaml new file mode 100644 index 0000000000000..50c379010d1ed --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.yaml b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.yaml new file mode 100644 index 0000000000000..f78413ca288da --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/152.0.6/Mozilla.Firefox.MSIX.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.installer.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.installer.yaml new file mode 100644 index 0000000000000..955fdc2c28dc1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/en-CA/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 0D373C0EDCB35294EDA9FDA06E8D362F8FF1BFA6CDCBB2855EE3F29BD6B92F0F +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/en-CA/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 6566B7ED4F2E4FD03FB3AEBF7DAD795BA259D032F6AB4A321A6780BB23E34A61 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/en-CA/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 4F2ADACDFDADE539AF71463453E7178DACE44735FD2C72ADC099BD248BA84B3E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..6dd2d8e9d74a9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.da-DK.yaml new file mode 100644 index 0000000000000..871ab8402a83d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.de-DE.yaml new file mode 100644 index 0000000000000..1035a5c0d80ee --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.el-GR.yaml new file mode 100644 index 0000000000000..b089fbfd7c0bc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.en-GB.yaml new file mode 100644 index 0000000000000..6a26eb7e5959b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.en-US.yaml new file mode 100644 index 0000000000000..75749a033f692 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (en-CA) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.es-MX.yaml new file mode 100644 index 0000000000000..40261814950a3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.fr-FR.yaml new file mode 100644 index 0000000000000..2fea31be34896 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.hu-HU.yaml new file mode 100644 index 0000000000000..3b5b55058d8d6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.ja-JP.yaml new file mode 100644 index 0000000000000..719b5f57494c5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.nb-NO.yaml new file mode 100644 index 0000000000000..0c55777253967 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.ru-RU.yaml new file mode 100644 index 0000000000000..aa31efd4f8840 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.ta-IN.yaml new file mode 100644 index 0000000000000..f1f8b378058c1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8083880dab4bd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.yaml b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.yaml new file mode 100644 index 0000000000000..e29f9eb85c46c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-CA/152.0.6/Mozilla.Firefox.en-CA.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-CA +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.installer.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.installer.yaml new file mode 100644 index 0000000000000..e6189b2b72b16 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/pt-PT/Firefox%20Setup%20152.0.6.exe + InstallerSha256: A8BD29FA76D7C6DD23ACA651E689B72BD9C4C1FC238270A4946ACCB0CA7754D0 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/pt-PT/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 26A28FE27EB137B8E87413F831463DF61C946DDC83B89E0392980323B25224FA +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/pt-PT/Firefox%20Setup%20152.0.6.exe + InstallerSha256: F68E32E6E6B5BD7E618C247BA0871F7F6866ACB1F7F396F687513DA1742E5BFA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..78acb250f8f95 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.da-DK.yaml new file mode 100644 index 0000000000000..1c1c89a7aeed1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.de-DE.yaml new file mode 100644 index 0000000000000..4c0f5679763e5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.el-GR.yaml new file mode 100644 index 0000000000000..ee11d1fe65919 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.en-GB.yaml new file mode 100644 index 0000000000000..3871ecb58754f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.en-US.yaml new file mode 100644 index 0000000000000..eb0409ecab2e4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (pt-PT) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.es-MX.yaml new file mode 100644 index 0000000000000..014abf51505ad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.fr-FR.yaml new file mode 100644 index 0000000000000..f0998acfe156e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.hu-HU.yaml new file mode 100644 index 0000000000000..f181d9fa87d0c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.ja-JP.yaml new file mode 100644 index 0000000000000..9330fc26ccfb7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.nb-NO.yaml new file mode 100644 index 0000000000000..650acbe88f86c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.ru-RU.yaml new file mode 100644 index 0000000000000..25c7cf77d41f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.ta-IN.yaml new file mode 100644 index 0000000000000..640866c743fef --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.zh-CN.yaml new file mode 100644 index 0000000000000..99a3e8ec58ef9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.yaml new file mode 100644 index 0000000000000..0c82472c8ceab --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.installer.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.installer.yaml new file mode 100644 index 0000000000000..c67b317fcc6ee --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/sk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: E3799CBBD29C77D5A85192BA8A43705E4C883EF03B1ED9E941721249247E5A33 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/sk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 55138733CD60AB0276EB4B2CE82838C64A9F68422253ACDBECFE98A9667320FA +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/sk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 416B99AE5D22FFB5C67CFB43346A211E66F1DB48D21BE08BA79A3FDED5BECBD9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..60af8316a37b7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.da-DK.yaml new file mode 100644 index 0000000000000..d9077af1ac9b3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.de-DE.yaml new file mode 100644 index 0000000000000..a1b03068b91b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.el-GR.yaml new file mode 100644 index 0000000000000..a28a89af9d094 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.en-GB.yaml new file mode 100644 index 0000000000000..cd3d642261fac --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.en-US.yaml new file mode 100644 index 0000000000000..39a1a0ad4fe8c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (sk) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.es-MX.yaml new file mode 100644 index 0000000000000..d6237d3d5cc9b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.fr-FR.yaml new file mode 100644 index 0000000000000..828c766fcdcca --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.hu-HU.yaml new file mode 100644 index 0000000000000..e728da0ab94d0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.ja-JP.yaml new file mode 100644 index 0000000000000..fda62cad1a344 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.nb-NO.yaml new file mode 100644 index 0000000000000..afce1f9bb365c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.ru-RU.yaml new file mode 100644 index 0000000000000..04f0ab464fae5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.ta-IN.yaml new file mode 100644 index 0000000000000..6823998c9a7e8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f5f71dc56bd99 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.yaml new file mode 100644 index 0000000000000..29f8f214aa204 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.installer.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.installer.yaml new file mode 100644 index 0000000000000..3ac081f0e18be --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/te/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 51FC5BE87F8FCD51D6DE5EC61E7427F509BE8435AB0CE66ADF0D7817FE1132B1 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/te/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 7345DFC3591ABF6884C2D3F464DDE4297B4597FB56397253FD42456E2E85EF28 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/te/Firefox%20Setup%20152.0.6.exe + InstallerSha256: AD1BD88D91441EFB508D64C0BEF2BD03A95D9790EE8E52A3EAF83250EC7F5657 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..dd8c5ef53d842 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.da-DK.yaml new file mode 100644 index 0000000000000..884aafc3c2af7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.de-DE.yaml new file mode 100644 index 0000000000000..ecbc17bc80213 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.el-GR.yaml new file mode 100644 index 0000000000000..7f17db06d3d7d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.en-GB.yaml new file mode 100644 index 0000000000000..8865c1b853357 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.en-US.yaml new file mode 100644 index 0000000000000..45f362cc09842 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (te) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.es-MX.yaml new file mode 100644 index 0000000000000..210bac03836c2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.fr-FR.yaml new file mode 100644 index 0000000000000..ffbc72e6451e7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.hu-HU.yaml new file mode 100644 index 0000000000000..eff84eff0b945 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.ja-JP.yaml new file mode 100644 index 0000000000000..21ab97f1d998a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.nb-NO.yaml new file mode 100644 index 0000000000000..b422c5d530589 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.ru-RU.yaml new file mode 100644 index 0000000000000..a1fc098ad835c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.ta-IN.yaml new file mode 100644 index 0000000000000..fc7c4541c3680 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.zh-CN.yaml new file mode 100644 index 0000000000000..34804467b49ef --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.yaml new file mode 100644 index 0000000000000..1ac3604a45f1b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.installer.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.installer.yaml new file mode 100644 index 0000000000000..c50b75c72d9e1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/tg/Firefox%20Setup%20152.0.6.exe + InstallerSha256: C4D0A8BBBA17F4A672A7C6E2FA7E3627B8015732845F3C9FCE5B91C84C3A282D +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/tg/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 25F7F22C11990BB4A19B619167C62085A6CE3EA0619AB224CD25A6D716E4458A +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/tg/Firefox%20Setup%20152.0.6.exe + InstallerSha256: E0582342504BE0F91F32372AAC65DF9AFBA5A37457899EC6D0BED5AF21CB714C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..f5cadd9fc48e1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.da-DK.yaml new file mode 100644 index 0000000000000..f0a8fab36822c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.de-DE.yaml new file mode 100644 index 0000000000000..4da47ac2f4566 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.el-GR.yaml new file mode 100644 index 0000000000000..d60c837c2c083 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.en-GB.yaml new file mode 100644 index 0000000000000..ca0d8251b24cb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.en-US.yaml new file mode 100644 index 0000000000000..cf15154aef411 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (tg) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.es-MX.yaml new file mode 100644 index 0000000000000..23c9529d969cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.fr-FR.yaml new file mode 100644 index 0000000000000..39fa400be9c55 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.hu-HU.yaml new file mode 100644 index 0000000000000..bb40870630a3d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.ja-JP.yaml new file mode 100644 index 0000000000000..c712234e93151 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.nb-NO.yaml new file mode 100644 index 0000000000000..6a5dd45192d42 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.ru-RU.yaml new file mode 100644 index 0000000000000..525696fc92089 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.ta-IN.yaml new file mode 100644 index 0000000000000..f53467e2ffe63 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.zh-CN.yaml new file mode 100644 index 0000000000000..580fdccf6856a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.yaml b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.yaml new file mode 100644 index 0000000000000..11eb7bfc60ce8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/152.0.6/Mozilla.Firefox.tg.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.installer.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.installer.yaml new file mode 100644 index 0000000000000..3e30b42231a05 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/th/Firefox%20Setup%20152.0.6.exe + InstallerSha256: C49832E5A6E9C3D26E7D48537DABFFE65D34E5C1EC9114E0582290643245AC1D +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/th/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 24BB28B02CB3235404157A4D996258290CEAB953DB260D77E28504D0749B45A1 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/th/Firefox%20Setup%20152.0.6.exe + InstallerSha256: A2F673F9CA3C2DEF3BF58B8CE89299F4C1AFCD5E660BC20F5E5C221DD22EEB96 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..791068b75a206 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.da-DK.yaml new file mode 100644 index 0000000000000..4ca087d858d30 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.de-DE.yaml new file mode 100644 index 0000000000000..24ef81b79df56 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.el-GR.yaml new file mode 100644 index 0000000000000..3745da580f210 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.en-GB.yaml new file mode 100644 index 0000000000000..d7c55ed4a5e8f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.en-US.yaml new file mode 100644 index 0000000000000..efe70f98cae59 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (th) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.es-MX.yaml new file mode 100644 index 0000000000000..700ce1029f57d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.fr-FR.yaml new file mode 100644 index 0000000000000..3cf15d2b987cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.hu-HU.yaml new file mode 100644 index 0000000000000..8e64fe004605c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.ja-JP.yaml new file mode 100644 index 0000000000000..d4bdec9505c49 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.nb-NO.yaml new file mode 100644 index 0000000000000..5c1c6f8bd3ad6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.ru-RU.yaml new file mode 100644 index 0000000000000..f2387a49afde6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.ta-IN.yaml new file mode 100644 index 0000000000000..19e9aba3fd8ed --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6883564d99225 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.yaml new file mode 100644 index 0000000000000..f1b58b5260311 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.installer.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.installer.yaml new file mode 100644 index 0000000000000..8fc8aa9fc80d9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/tl/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 041895226944759C94C84434F2E3AB620AB28E7C6D7B15AAC01A2AB814F3B56E +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/tl/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 01401311BA44029DD839103FAE80F92285B7DB6DEC9AAA1F519C37B09EBC7A81 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/tl/Firefox%20Setup%20152.0.6.exe + InstallerSha256: AB5D607DE9571E9C1097873C5BBD6D3AE13C04C0B0474E1FB23860E0850B6435 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..dbfc6fb8ad993 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.da-DK.yaml new file mode 100644 index 0000000000000..f1e5f448d5c6e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.de-DE.yaml new file mode 100644 index 0000000000000..ea9bd2e70a755 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.el-GR.yaml new file mode 100644 index 0000000000000..e0afffb757398 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.en-GB.yaml new file mode 100644 index 0000000000000..63eee29f60b32 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.en-US.yaml new file mode 100644 index 0000000000000..5385c66152082 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (tl) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.es-MX.yaml new file mode 100644 index 0000000000000..1e0b0aee6e1a5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.fr-FR.yaml new file mode 100644 index 0000000000000..6238021f78fbd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.hu-HU.yaml new file mode 100644 index 0000000000000..087b08aeb984d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.ja-JP.yaml new file mode 100644 index 0000000000000..960790346c9f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.nb-NO.yaml new file mode 100644 index 0000000000000..0e1bcd0d54faf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.ru-RU.yaml new file mode 100644 index 0000000000000..3efab563cc8d4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.ta-IN.yaml new file mode 100644 index 0000000000000..c28df679c96a4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fe830d4be8a17 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.yaml b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.yaml new file mode 100644 index 0000000000000..667be2fadf8fc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/152.0.6/Mozilla.Firefox.tl.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.installer.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.installer.yaml new file mode 100644 index 0000000000000..09f65f85772dc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/uk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 3EF08494705B40C4248C02F5681B66780F8433A12F79E864AA77569C97CDC2E1 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/uk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 53681C9BF034EE1DEE3047155796DF88F8581C472C2B659EA5BDF470B1C0B6B2 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/uk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 559A4C7528F3546BB6488A58AD2051E00E73D51E69DB204B9F2F53610F101D4B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..63cb94632506a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.da-DK.yaml new file mode 100644 index 0000000000000..8ce3a47d2ece3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.de-DE.yaml new file mode 100644 index 0000000000000..b18e2a2cf42a3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.el-GR.yaml new file mode 100644 index 0000000000000..ffbeff3b88f59 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.en-GB.yaml new file mode 100644 index 0000000000000..044ca75063ece --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.en-US.yaml new file mode 100644 index 0000000000000..93a37519bf7d5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (uk) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.es-MX.yaml new file mode 100644 index 0000000000000..336fdd68a7fd0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.fr-FR.yaml new file mode 100644 index 0000000000000..4a3867e5279d6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.hu-HU.yaml new file mode 100644 index 0000000000000..c70f083ec9075 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.ja-JP.yaml new file mode 100644 index 0000000000000..be7d2105e72cb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.nb-NO.yaml new file mode 100644 index 0000000000000..e1daf844c2268 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.ru-RU.yaml new file mode 100644 index 0000000000000..9595b1181f559 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.ta-IN.yaml new file mode 100644 index 0000000000000..f80d612fbf48f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c48b8866418a6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.yaml new file mode 100644 index 0000000000000..85eeb80053cf4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.installer.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.installer.yaml new file mode 100644 index 0000000000000..eaf55e6e2784b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/vi/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 697299C2CA39BE41713420AFE6EA5CB33CA1D5935D892149E9225E2803238B04 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/vi/Firefox%20Setup%20152.0.6.exe + InstallerSha256: FF8119F58B9E8CDF1E4540D8D0E5D70B2C6095E399951AB0C2AA116762053088 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/vi/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 8F22D482FB519558B886EF4C34891F5E9FF499799BA71BDC67441B6018E3C9F6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..cd07f687ecdfe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.da-DK.yaml new file mode 100644 index 0000000000000..7cd94fa4fa4f4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.de-DE.yaml new file mode 100644 index 0000000000000..86689cae12a4a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.el-GR.yaml new file mode 100644 index 0000000000000..f8ab3a5a8beeb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.en-GB.yaml new file mode 100644 index 0000000000000..9ada02a9d7063 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.en-US.yaml new file mode 100644 index 0000000000000..3a8ee728b40d0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (vi) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.es-MX.yaml new file mode 100644 index 0000000000000..03365a68252be --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.fr-FR.yaml new file mode 100644 index 0000000000000..bc21ae121285f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.hu-HU.yaml new file mode 100644 index 0000000000000..869eff11c37b0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.ja-JP.yaml new file mode 100644 index 0000000000000..3a0b15d769762 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.nb-NO.yaml new file mode 100644 index 0000000000000..fa84a2323ab1c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.ru-RU.yaml new file mode 100644 index 0000000000000..e2f023999abda --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.ta-IN.yaml new file mode 100644 index 0000000000000..14cbab05052b7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b218342736e62 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.yaml new file mode 100644 index 0000000000000..e5b211c6cd317 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.installer.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.installer.yaml new file mode 100644 index 0000000000000..0fe2976edbd08 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/xh/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 756AA9263B1103CB154C8088D82AFA91658DE77B0FDE046CFB182893A7F3ED6C +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/xh/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 78F13560C5CA447F37791D218F34DF6FBFD3FFC12C6CDDAB750193F9BDC2A326 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/xh/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 1F942DB8363BF07AF4D5697B229D1116C823D473C1B10C11785F98D393D02C29 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..6f55c193322b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.da-DK.yaml new file mode 100644 index 0000000000000..d87a9b643b6b7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.de-DE.yaml new file mode 100644 index 0000000000000..8ad74ebc0c2d4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.el-GR.yaml new file mode 100644 index 0000000000000..7f88254f14e72 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.en-GB.yaml new file mode 100644 index 0000000000000..f1a49dabd98ec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.en-US.yaml new file mode 100644 index 0000000000000..16715c6d4619c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (xh) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.es-MX.yaml new file mode 100644 index 0000000000000..aef997772a80f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.fr-FR.yaml new file mode 100644 index 0000000000000..ba4e8c5046007 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.hu-HU.yaml new file mode 100644 index 0000000000000..5097a05871316 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.ja-JP.yaml new file mode 100644 index 0000000000000..162e320190ec7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.nb-NO.yaml new file mode 100644 index 0000000000000..edb29c989968f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.ru-RU.yaml new file mode 100644 index 0000000000000..0ba41e21fd704 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.ta-IN.yaml new file mode 100644 index 0000000000000..15c1504512fd2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.zh-CN.yaml new file mode 100644 index 0000000000000..06c561b18b477 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.yaml new file mode 100644 index 0000000000000..216e6d640d038 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.installer.yaml b/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.installer.yaml new file mode 100644 index 0000000000000..a5cace04f5044 --- /dev/null +++ b/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.installer.yaml @@ -0,0 +1,23 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: martona.WM_NIGHT +PackageVersion: 0.1.1.3 +# WM_NIGHT ships as a Trusted-Signing-signed full-trust MSIX. The package stages the tray +# host (WM_NIGHT.exe) plus its injected payload (WM_NIGHThook.dll), and declares uiAccess so +# a packaged install can still theme elevated targets (an elevated regedit or mmc). +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.18362.0 +InstallerType: msix +PackageFamilyName: WM-NIGHT_k7d8219edqwtj +ReleaseDate: 2026-07-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/martona/WM_NIGHT/releases/download/v0.1.1.3/WM_NIGHT-windows-amd64.msix + InstallerSha256: 76F36825D9F54BE7AEF6F8C0338F41667D0E1B63EEAEE6D556968575582A3478 + SignatureSha256: 95FE80A78B1FA1B41E2B32B31334EB89398D3D0D57127A6CEC2EB230753BD9E3 +- Architecture: arm64 + InstallerUrl: https://github.com/martona/WM_NIGHT/releases/download/v0.1.1.3/WM_NIGHT-windows-arm64.msix + InstallerSha256: 843EC3A464FBA9FCBBBDD58B705EA528FFDD1C49BA5A13D37EEA6E2C0213F52D + SignatureSha256: C4F389224BD0E5DDD9AA9923EF2B246A64F872003B11F0343AC7E7401ADE3921 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.locale.en-US.yaml b/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.locale.en-US.yaml new file mode 100644 index 0000000000000..a9fc1f0e134ca --- /dev/null +++ b/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.locale.en-US.yaml @@ -0,0 +1,39 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: martona.WM_NIGHT +PackageVersion: 0.1.1.3 +PackageLocale: en-US +Publisher: martona +PublisherUrl: https://anka.me +PublisherSupportUrl: https://github.com/martona/WM_NIGHT/issues +Author: martona +PackageName: WM_NIGHT +PackageUrl: https://github.com/martona/WM_NIGHT +License: MIT +LicenseUrl: https://github.com/martona/WM_NIGHT/blob/master/LICENSE +Copyright: Copyright (c) 2026 Marton Anka +ShortDescription: Native dark mode for classic Win32 desktop apps -- Explorer, regedit, the Control Panel, and the dialogs Windows forgot. +Description: |- + WM_NIGHT is a tray app that paints Windows' leftover light-mode corners dark. The OS + shipped a dark theme years ago but never finished the job: regedit, the Control Panel, + and a long tail of classic dialogs still blast you with white. WM_NIGHT injects umbra's + dark-mode engine into those processes and themes them at the source. + + It themes Explorer and regedit near-perfectly and the Control Panel reasonably well, and + you can add any leftover Win32 app to a registry whitelist. A signed build launched from a + trusted location keeps uiAccess, so it can also theme elevated windows (an elevated regedit + or mmc) without itself running elevated. +Moniker: wm-night +Tags: +- dark-mode +- dark-theme +- theming +- win32 +- explorer +- regedit +- control-panel +- tray +- desktop +- windows +ReleaseNotesUrl: https://github.com/martona/WM_NIGHT/releases/tag/v0.1.1.3 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.yaml b/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.yaml new file mode 100644 index 0000000000000..df55ecbcf0034 --- /dev/null +++ b/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: martona.WM_NIGHT +PackageVersion: 0.1.1.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/martona/clipp/1.2.1.123/martona.clipp.installer.yaml b/manifests/m/martona/clipp/1.2.1.123/martona.clipp.installer.yaml new file mode 100644 index 0000000000000..7d5a431b3eda3 --- /dev/null +++ b/manifests/m/martona/clipp/1.2.1.123/martona.clipp.installer.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: martona.clipp +PackageVersion: 1.2.1.123 +# clipp ships as a Trusted-Signing-signed MSIX. The package registers the tray GUI +# (clippmain.exe) and an `clipp.exe` execution alias for the CLI (clipp copy/paste/ls). +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +PackageFamilyName: Clipp_k7d8219edqwtj +Commands: +- clipp +ReleaseDate: 2026-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/martona/clipp/releases/download/v1.2.1.123/clipp-windows-amd64.msix + InstallerSha256: 8EB8BF0465B66D56F9409B76E97021E72FD0B70789D641AFCF04AD0CE87D4B64 + SignatureSha256: AD5875C566E587C240E6051D4ADF3F93955FD3B2F7AEDA449E57CC1F5538BFF4 +- Architecture: arm64 + InstallerUrl: https://github.com/martona/clipp/releases/download/v1.2.1.123/clipp-windows-arm64.msix + InstallerSha256: EA8B29BD722CFE843EAE82727863A8875E43353944E551753931E492DC33A2DC + SignatureSha256: 74E533509F7A17EE820C6B0699A92FDC7F8943632C79AEF9FE689632026A32A9 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/martona/clipp/1.2.1.123/martona.clipp.locale.en-US.yaml b/manifests/m/martona/clipp/1.2.1.123/martona.clipp.locale.en-US.yaml new file mode 100644 index 0000000000000..aa17e902fa4cb --- /dev/null +++ b/manifests/m/martona/clipp/1.2.1.123/martona.clipp.locale.en-US.yaml @@ -0,0 +1,38 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: martona.clipp +PackageVersion: 1.2.1.123 +PackageLocale: en-US +Publisher: martona +PublisherUrl: https://clipp.net +PublisherSupportUrl: https://clipp.net/support +Author: martona +PackageName: Clipp +PackageUrl: https://clipp.net +License: MIT +LicenseUrl: https://github.com/martona/clipp/blob/master/LICENSE.md +ShortDescription: Peer-to-peer clipboard sync for Windows, macOS, and iOS over your LAN. +Description: |- + Clipp is a free, open-source, peer-to-peer clipboard sync utility for Windows, macOS, + and iOS (with a terminal-only Linux client). It shares clipboard text and images + directly between devices you trust on a network you control -- never through the cloud. + Connections are mutually authenticated and encrypted with libsodium primitives; devices + pair with a shared group name and passphrase and confirm a non-secret fingerprint. + + The terminal is a first-class citizen: alongside the tray app, Clipp provides `clipp + copy` and `clipp paste` -- think `pbcopy`/`pbpaste`, but network-enabled -- plus named + registers (`clipp copy `, `clipp ls`). +Moniker: clipp +Tags: +- clipboard +- clipboard-manager +- clipboard-sync +- copy-paste +- cross-platform +- lan +- mdns +- p2p +- pbcopy +- sync +ReleaseNotesUrl: https://github.com/martona/clipp/releases/tag/v1.2.1.123 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/martona/clipp/1.2.1.123/martona.clipp.yaml b/manifests/m/martona/clipp/1.2.1.123/martona.clipp.yaml new file mode 100644 index 0000000000000..adfaf65a35d00 --- /dev/null +++ b/manifests/m/martona/clipp/1.2.1.123/martona.clipp.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +PackageIdentifier: martona.clipp +PackageVersion: 1.2.1.123 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/mingchen666/Reviva/0.0.2-beta/mingchen666.Reviva.installer.yaml b/manifests/m/mingchen666/Reviva/0.0.2-beta/mingchen666.Reviva.installer.yaml new file mode 100644 index 0000000000000..5a2363da641ad --- /dev/null +++ b/manifests/m/mingchen666/Reviva/0.0.2-beta/mingchen666.Reviva.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-3.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: mingchen666.Reviva +PackageVersion: 0.0.2-beta +InstallerType: nullsoft # electron-builder +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: bff3f6c2-f270-5d6e-b3de-0bdbcaa4c031 +ReleaseDate: 2026-07-01 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/mingchen666/Reviva/releases/download/v0.0.2-beta/Reviva-Windows-0.0.2-beta-x64-Setup.exe + InstallerSha256: 7275352489E716D735D88E264D323CA473FAEBC7F6CA260A421212298C7187AB + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/mingchen666/Reviva/releases/download/v0.0.2-beta/Reviva-Windows-0.0.2-beta-x64-Setup.exe + InstallerSha256: 7275352489E716D735D88E264D323CA473FAEBC7F6CA260A421212298C7187AB + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/mingchen666/Reviva/releases/download/v0.0.2-beta/Reviva-Windows-0.0.2-beta-arm64-Setup.exe + InstallerSha256: 1FEDD0519CA19034D86C63BC2C920629EE59C32248AE08524C15B4954220E747 + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/mingchen666/Reviva/releases/download/v0.0.2-beta/Reviva-Windows-0.0.2-beta-arm64-Setup.exe + InstallerSha256: 1FEDD0519CA19034D86C63BC2C920629EE59C32248AE08524C15B4954220E747 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/mingchen666/Reviva/0.0.2-beta/mingchen666.Reviva.locale.en-US.yaml b/manifests/m/mingchen666/Reviva/0.0.2-beta/mingchen666.Reviva.locale.en-US.yaml new file mode 100644 index 0000000000000..824820dcb49bf --- /dev/null +++ b/manifests/m/mingchen666/Reviva/0.0.2-beta/mingchen666.Reviva.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-3.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: mingchen666.Reviva +PackageVersion: 0.0.2-beta +PackageLocale: en-US +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: Freeware +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Local-first AI learning workspace — ask, note, review and create around your own materials. Wiki KB, Agents, Skills, creation tools. +Description: |- + Reviva = local document library + Wiki knowledge base + AI Agent + knowledge retrieval + note & document management + Skills capability system + creation tools. + For anyone who wants AI woven into a real learning and knowledge workflow — not a blank chat box you start from scratch every time. +# Moniker: +Tags: +- agent +- agentic +- ai +- chatbot +- knowledge-base +- large-language-model +- llm +- wiki +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/mingchen666/Reviva/0.0.2-beta/mingchen666.Reviva.locale.zh-CN.yaml b/manifests/m/mingchen666/Reviva/0.0.2-beta/mingchen666.Reviva.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9c49e83ac695d --- /dev/null +++ b/manifests/m/mingchen666/Reviva/0.0.2-beta/mingchen666.Reviva.locale.zh-CN.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-3.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: mingchen666.Reviva +PackageVersion: 0.0.2-beta +PackageLocale: zh-CN +Publisher: Reviva +PublisherUrl: https://github.com/mingchen666 +PublisherSupportUrl: https://github.com/mingchen666/Reviva/issues +# PrivacyUrl: +# Author: +PackageName: Reviva +PackageUrl: https://github.com/mingchen666/Reviva +License: 免费软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 学习工作台,围绕你的资料完成问答、笔记、复习和创作输出。本地优先,多模型,Wiki 知识库,AI Agent,创作工具。 +Description: |- + Reviva = 本地资料库 + Wiki 知识库 + AI Agent + 知识库检索 + 笔记文档管理 + Skills 能力系统 + 创作工具。 + 它适合希望把 AI 真正接入学习和知识管理流程的人——不是每次都从一个空白聊天框重新开始。 +# Moniker: +Tags: +- 人工智能 +- 大语言模型 +- 智能体 +- 百科 +- 知识库 +- 维基 +- 聊天机器人 +- 自主智能 +ReleaseNotes: |- + 本次更新修复一些已知问题 + 1. 修复模型配置保存问题 #2 + 2. 完善 agent 选择弹窗 #12 + 3. 其他…… + 网盘下载地址: 下载地址 +ReleaseNotesUrl: https://github.com/mingchen666/Reviva/releases/tag/v0.0.2-beta +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/mingchen666/Reviva/0.0.2-beta/mingchen666.Reviva.yaml b/manifests/m/mingchen666/Reviva/0.0.2-beta/mingchen666.Reviva.yaml new file mode 100644 index 0000000000000..8342cbe8757f3 --- /dev/null +++ b/manifests/m/mingchen666/Reviva/0.0.2-beta/mingchen666.Reviva.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-3.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: mingchen666.Reviva +PackageVersion: 0.0.2-beta +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetCoreGames/TalesofMajEyal/1.7.6/NetCoreGames.TalesofMajEyal.installer.yaml b/manifests/n/NetCoreGames/TalesofMajEyal/1.7.6/NetCoreGames.TalesofMajEyal.installer.yaml new file mode 100644 index 0000000000000..2416b82ec5bc4 --- /dev/null +++ b/manifests/n/NetCoreGames/TalesofMajEyal/1.7.6/NetCoreGames.TalesofMajEyal.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NetCoreGames.TalesofMajEyal +PackageVersion: 1.7.6 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: t-engine4-windows-1.7.6/t-engine-launcher.exe + PortableCommandAlias: t-engine-launcher.exe +InstallModes: +- silent +UpgradeBehavior: install +ReleaseDate: 2024-12-15 +Installers: +- Architecture: neutral + InstallerUrl: https://te4.org/do-download/tome-1.7.6/t-engine4-windows-1.7.6.zip + InstallerSha256: 38DDDCF9A09E3640B1195372763ADE25187D0A840556614B72D9223D3FE97C8C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetCoreGames/TalesofMajEyal/1.7.6/NetCoreGames.TalesofMajEyal.locale.en-US.yaml b/manifests/n/NetCoreGames/TalesofMajEyal/1.7.6/NetCoreGames.TalesofMajEyal.locale.en-US.yaml new file mode 100644 index 0000000000000..0bde6f7132f5f --- /dev/null +++ b/manifests/n/NetCoreGames/TalesofMajEyal/1.7.6/NetCoreGames.TalesofMajEyal.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NetCoreGames.TalesofMajEyal +PackageVersion: 1.7.6 +PackageLocale: en-US +Publisher: NetCore Games +PublisherUrl: https://te4.org/netcore-games +PublisherSupportUrl: https://forums.te4.org/ +Author: Nicolas "DarkGod" Casalini +PackageName: Tales of Maj'Eyal +PackageUrl: https://te4.org/tome +License: GPL 3.0 +LicenseUrl: https://te4.org/license +ShortDescription: Tales of Maj'Eyal (aka ToME) is a free, open source, roguelike roleplaying fantasy game featuring tactical turn-based combat and advanced character building. +Moniker: ToME +Tags: +- RPG +- free +- game +- open-source +- rogue-like +- roguelike +- video-game +ReleaseNotesUrl: https://te4.org/blogs/darkgod/2023/06/news/tales-majeyal-176-woops-released +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetCoreGames/TalesofMajEyal/1.7.6/NetCoreGames.TalesofMajEyal.yaml b/manifests/n/NetCoreGames/TalesofMajEyal/1.7.6/NetCoreGames.TalesofMajEyal.yaml new file mode 100644 index 0000000000000..5dca1da76fc94 --- /dev/null +++ b/manifests/n/NetCoreGames/TalesofMajEyal/1.7.6/NetCoreGames.TalesofMajEyal.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: NetCoreGames.TalesofMajEyal +PackageVersion: 1.7.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/n/NimbusAgent/Nimbus/0.20.0/NimbusAgent.Nimbus.installer.yaml b/manifests/n/NimbusAgent/Nimbus/0.20.0/NimbusAgent.Nimbus.installer.yaml new file mode 100644 index 0000000000000..0d7cbfc2fb4cb --- /dev/null +++ b/manifests/n/NimbusAgent/Nimbus/0.20.0/NimbusAgent.Nimbus.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NimbusAgent.Nimbus +PackageVersion: 0.20.0 +InstallerType: wix +ProductCode: '{4A5E58DE-18E2-4F2F-9375-7C592C568DB3}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/nimbus-agent/Nimbus/releases/download/v0.20.0/nimbus-headless-windows-x64.msi + InstallerSha256: 564826610062A562005EAD04768808BA7549CF87317472239B4B9964D26066B2 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/n/NimbusAgent/Nimbus/0.20.0/NimbusAgent.Nimbus.locale.en-US.yaml b/manifests/n/NimbusAgent/Nimbus/0.20.0/NimbusAgent.Nimbus.locale.en-US.yaml new file mode 100644 index 0000000000000..b761f3113353b --- /dev/null +++ b/manifests/n/NimbusAgent/Nimbus/0.20.0/NimbusAgent.Nimbus.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NimbusAgent.Nimbus +PackageVersion: 0.20.0 +PackageLocale: en-US +Publisher: NimbusAgent +PublisherUrl: https://github.com/nimbus-agent +PublisherSupportUrl: https://github.com/nimbus-agent/Nimbus/issues +PackageName: Nimbus +PackageUrl: https://github.com/nimbus-agent/Nimbus +License: AGPL-3.0-only +ShortDescription: Local-first AI agent framework (headless gateway + CLI) +Moniker: nimbus +Tags: +- ai +- agent +- cli +- gateway +- automation +ReleaseNotesUrl: https://github.com/nimbus-agent/Nimbus/releases/tag/v0.20.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NimbusAgent/Nimbus/0.20.0/NimbusAgent.Nimbus.yaml b/manifests/n/NimbusAgent/Nimbus/0.20.0/NimbusAgent.Nimbus.yaml new file mode 100644 index 0000000000000..63595da1b3c2b --- /dev/null +++ b/manifests/n/NimbusAgent/Nimbus/0.20.0/NimbusAgent.Nimbus.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: NimbusAgent.Nimbus +PackageVersion: 0.20.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/n/nekohy/MeowCLI/1.4.7/nekohy.MeowCLI.installer.yaml b/manifests/n/nekohy/MeowCLI/1.4.7/nekohy.MeowCLI.installer.yaml new file mode 100644 index 0000000000000..047c5b9b3ab7b --- /dev/null +++ b/manifests/n/nekohy/MeowCLI/1.4.7/nekohy.MeowCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: nekohy.MeowCLI +PackageVersion: 1.4.7 +InstallerType: portable +Commands: +- meowcli +ReleaseDate: 2026-07-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/nekohy/MeowCLI/releases/download/v1.4.7/meowcli-windows-amd64.exe + InstallerSha256: B6474096636F2E106E0B4AAF33B6C272138567CB9ED4909788739DB0E9A23572 +- Architecture: arm64 + InstallerUrl: https://github.com/nekohy/MeowCLI/releases/download/v1.4.7/meowcli-windows-arm64.exe + InstallerSha256: 59FB68489EA0A780F6A054744F539893A59E676991B5278AF5A5BDF0C0FD77AA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/nekohy/MeowCLI/1.4.7/nekohy.MeowCLI.locale.en-US.yaml b/manifests/n/nekohy/MeowCLI/1.4.7/nekohy.MeowCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..2dc1cbe6b6806 --- /dev/null +++ b/manifests/n/nekohy/MeowCLI/1.4.7/nekohy.MeowCLI.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: nekohy.MeowCLI +PackageVersion: 1.4.7 +PackageLocale: en-US +ShortDescription: A project for CLI reverse proxy, pursuing higher performance and better scheduling +Description: |- + A high-performance and scheduling-focused API forwarding service + + Features + - Ready to use out of the box, supports SQLite / PostgreSQL, with code generated via sqlc to optimize query performance + - Recovers state within seconds after cold start or restart + - Synchronizes quota following conversations or on a schedule, combining quotas from 5-hour and 7-day windows, resetting based on time and error rate scoring, prioritizing better credentials instead of random selection + - Isolates individual credentials per Tier, so unavailability of one model does not affect others + - Allows specifying call package types (e.g., pro/free) for specific models individually, as well as defining call order + - Automatically triggers temporary circuit breaking upon request failure, based on Retry-After or exponential backoff + - Utilizes atomic and otter caching layers to avoid high-latency SQL operations + - Supports custom plugins for quickly rewriting requests as desired (see plugin/readme.md) + - Supports creating multiple keys for internal distribution + - Frontend built with Nuxt SSG, compliant with MD3 design guidelines +Tags: +- ai +- large-language-model +- llm +- proxy +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/nekohy/MeowCLI/1.4.7/nekohy.MeowCLI.locale.zh-CN.yaml b/manifests/n/nekohy/MeowCLI/1.4.7/nekohy.MeowCLI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a065bf2372a93 --- /dev/null +++ b/manifests/n/nekohy/MeowCLI/1.4.7/nekohy.MeowCLI.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: nekohy.MeowCLI +PackageVersion: 1.4.7 +PackageLocale: zh-CN +Publisher: 花月喵梦 +PublisherUrl: https://github.com/nekohy +PublisherSupportUrl: https://github.com/nekohy/MeowCLI/issues +PackageName: MeowCLI +PackageUrl: https://github.com/nekohy/MeowCLI +License: GPL-3.0 +LicenseUrl: https://github.com/nekohy/MeowCLI/blob/HEAD/LICENSE +ShortDescription: 一个用于 CLI 反代的项目,追求更高性能,更优调度 +Description: |- + 一个注重高性能与调度的 API 转发服务 + + 特性 + - 开箱即用,支持 SQLite / PostgreSQL,并通过 sqlc 生成代码以优化查询性能 + - 冷启动/重启秒恢复状态 + - 跟随对话/定时同步额度,综合 5 小时与 7 天窗口的额度,重置时间和错误率评分,优先选择更优凭据,而不是随机选择 + - 单凭据每 Tier 隔离,一个模型不可用不会影响其他 + - 可以单独指定某模型的调用套餐类型(如 pro/free),也可指定调用顺序 + - 请求失败后自动触发基于 Retry-After 或指数退避的临时熔断 + - atomic 和 otter 缓存层,规避高延迟 SQL 操作 + - 支持自定义插件,可快速进行自己想要的请求改写(详见 plugin/readme.md) + - 支持创建多个 Key 用于内部分发 + - 前端使用 Nuxt SSG 构建,且符合 MD3 风格 +Tags: +- 人工智能 +- 代理 +- 大语言模型 +ReleaseNotes: 'Full Changelog: https://github.com/nekohy/MeowCLI/compare/v1.4.6...v1.4.7' +ReleaseNotesUrl: https://github.com/nekohy/MeowCLI/releases/tag/v1.4.7 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.yaml b/manifests/n/nekohy/MeowCLI/1.4.7/nekohy.MeowCLI.yaml similarity index 58% rename from manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.yaml rename to manifests/n/nekohy/MeowCLI/1.4.7/nekohy.MeowCLI.yaml index d913b696da1ac..d62acda54b5fd 100644 --- a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.yaml +++ b/manifests/n/nekohy/MeowCLI/1.4.7/nekohy.MeowCLI.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.4 +PackageIdentifier: nekohy.MeowCLI +PackageVersion: 1.4.7 DefaultLocale: zh-CN ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.installer.yaml b/manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.installer.yaml similarity index 75% rename from manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.installer.yaml rename to manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.installer.yaml index ac56b2c0fdb10..d4780d2790b2d 100644 --- a/manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.installer.yaml +++ b/manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.installer.yaml @@ -2,17 +2,17 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: OCBase.OCCT.Personal -PackageVersion: 16.1.11.0 +PackageVersion: 17.0.9.0 InstallerType: portable InstallModes: - interactive - silent - silentWithProgress UpgradeBehavior: uninstallPrevious -ReleaseDate: 2026-06-17 +ReleaseDate: 2026-07-12 Installers: - Architecture: x64 InstallerUrl: https://dl.ocbase.com/per/stable/OCCT.exe - InstallerSha256: A3ADEC5104E0BDB0617152B7FD327BC63444F373C51237AEB7B79C10A71ADD0E + InstallerSha256: CC10FB38267FEB92B77091205696AF34E3ECD477B726CA12AD3705F9475772D6 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.locale.en-US.yaml b/manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.locale.en-US.yaml similarity index 95% rename from manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.locale.en-US.yaml rename to manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.locale.en-US.yaml index a68a560819318..9269adbbefd79 100644 --- a/manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.locale.en-US.yaml +++ b/manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: OCBase.OCCT.Personal -PackageVersion: 16.1.11.0 +PackageVersion: 17.0.9.0 PackageLocale: en-US Publisher: OCCT PublisherUrl: https://www.ocbase.com/ diff --git a/manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.yaml b/manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.yaml similarity index 89% rename from manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.yaml rename to manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.yaml index c6556e22f8e00..2a0cfc81e230b 100644 --- a/manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.yaml +++ b/manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: OCBase.OCCT.Personal -PackageVersion: 16.1.11.0 +PackageVersion: 17.0.9.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.installer.yaml b/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.installer.yaml new file mode 100644 index 0000000000000..9a93c564bee94 --- /dev/null +++ b/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: obot-platform.obot +PackageVersion: v0.23.4 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: obot.exe + PortableCommandAlias: obot +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/obot-platform/obot/releases/download/v0.23.4/obot_v0.23.4_windows_amd64.zip + InstallerSha256: D14486D55AE6C3B0CC93E566AB3966425D966B9CD5D6242A2F15770B44554E02 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.locale.en-US.yaml b/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.locale.en-US.yaml new file mode 100644 index 0000000000000..1a4ef21912d2c --- /dev/null +++ b/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: obot-platform.obot +PackageVersion: v0.23.4 +PackageLocale: en-US +Publisher: Acorn Labs, Inc +PublisherUrl: https://github.com/obot-platform +PublisherSupportUrl: https://github.com/obot-platform/obot/issues +PackageName: obot +PackageUrl: https://github.com/obot-platform/obot +License: Apache 2.0 +ShortDescription: Obot is an open source enterprise agent platform. +Tags: +- ai +- mcp +- modelcontextprotocol +ReleaseNotesUrl: https://github.com/obot-platform/obot/releases/tag/v0.23.4 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/obot-platform/obot/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.yaml b/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.yaml new file mode 100644 index 0000000000000..de3b683d3df22 --- /dev/null +++ b/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: obot-platform.obot +PackageVersion: v0.23.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/openpubkey/opkssh/0.16.0/openpubkey.opkssh.installer.yaml b/manifests/o/openpubkey/opkssh/0.16.0/openpubkey.opkssh.installer.yaml new file mode 100644 index 0000000000000..e56dac9e37363 --- /dev/null +++ b/manifests/o/openpubkey/opkssh/0.16.0/openpubkey.opkssh.installer.yaml @@ -0,0 +1,15 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: openpubkey.opkssh +PackageVersion: 0.16.0 +InstallerType: portable +Commands: +- opkssh +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/openpubkey/opkssh/releases/download/v0.16.0/opkssh-windows-amd64.exe + InstallerSha256: DB8991CEAAC7AC224B704510CA6FBA2114998291D4283DE4BC2D3B8EFA66AD07 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/openpubkey/opkssh/0.16.0/openpubkey.opkssh.locale.en-US.yaml b/manifests/o/openpubkey/opkssh/0.16.0/openpubkey.opkssh.locale.en-US.yaml new file mode 100644 index 0000000000000..fea0e31ef6349 --- /dev/null +++ b/manifests/o/openpubkey/opkssh/0.16.0/openpubkey.opkssh.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: openpubkey.opkssh +PackageVersion: 0.16.0 +PackageLocale: en-US +Publisher: OpenPubkey +PublisherUrl: https://github.com/openpubkey +PublisherSupportUrl: https://github.com/openpubkey/opkssh/issues +PackageName: OpenPubkey SSH +PackageUrl: https://github.com/openpubkey/opkssh +License: Apache-2.0 +LicenseUrl: https://github.com/openpubkey/opkssh/blob/HEAD/LICENSE +ShortDescription: A tool which enables SSH to be used with OpenID Connect, allowing SSH access management via identities like alice@example.com instead of long-lived SSH keys. +Description: opkssh is a tool which enables ssh to be used with OpenID Connect allowing SSH access management via identities like alice@example.com instead of long-lived SSH keys. It does not replace ssh, but rather generates ssh public keys that contain PK Tokens and configures sshd to verify the PK Token in the ssh public key. These PK Tokens contain standard OpenID Connect ID Tokens. This protocol builds on the OpenPubkey which adds user public keys to OpenID Connect without breaking compatibility with existing OpenID Provider. +Moniker: opkssh +Tags: +- encryptionkeys +- openidconnect +- pktokens +- secureshelldaemon +- sshdserver +- sshkeys +- sshpublickeys +ReleaseNotes: |- + A Note on Compatibility for GQ signatures + Includes security fix to GitLab-CI GQ commitment PK Tokens by updating to OpenPubkey v0.25.0. As OPKSSH does not currently support GitLab-CI, and only currently supports GitLab user OP, there should be no security impact to OPKSSH. + However this does introduce a breaking change to how GQ signatures are verified. If GitHub is being used with GQ signatures then signatures created prior to this release will not verify on OPKSSH after this change and signatures created after this release will not verify against on OPKSSH before this change. + See openpubkey/openpubkey#379 + Changes + - Update to OpenPubkey v0.25.0 @EthanHeilman (#569) + - fix(deps): Update Docker @renovate[bot] (#566) + - fix(deps): Update go toolchain directive to v1.26.5 @renovate[bot] (#567) + - fix(deps): Update actions/cache action to v6.1.0 @renovate[bot] (#556) + - feat(enforcer): add glob support to github-actions @gastmaier (#558) + - chore(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.4 @dependabot[bot] (#540) + - Imports slices rather exp/slices @EthanHeilman (#565) + - feat: produce Android binaries on CI @bltavares (#550) + - fix(deps): Update Docker @renovate[bot] (#555) + - fix(deps): Update docker/build-push-action action to v7.3.0 @renovate[bot] (#560) + - fix(deps): Update goreleaser/goreleaser-action action to v7.2.3 @renovate[bot] (#557) + - fix(deps): Update release-drafter/release-drafter action to v7.5.1 @renovate[bot] (#554) + - fix(deps): Update release-drafter/release-drafter action to v7 @renovate[bot] (#551) + - chore(deps): bump github.com/go-jose/go-jose/v4 from 4.0.5 to 4.1.4 @dependabot[bot] (#539) + 🐛 Bug Fixes + - Fix release drafter @EthanHeilman (#561) + - fix(deps): Update actions/cache action to v6 @renovate[bot] (#543) + - fix(deps): Update actions/checkout action to v7 @renovate[bot] (#545) + - fix(deps): Update actions/setup-go action to v6.5.0 @renovate[bot] (#553) + - fix(deps): Update dependency golangci/golangci-lint to v2.12.2 @renovate[bot] (#552) + - fix(deps): Update Docker @renovate[bot] (#549) + - fix(deps): Update actions/setup-go action to v6.4.0 @renovate[bot] (#541) + - fix(deps): Update dependency golangci/golangci-lint to v2.11.4 @renovate[bot] (#489) + - fix(deps): Update zizmorcore/zizmor-action action to v0.5.7 @renovate[bot] (#535) + - fix(deps): Update Docker @renovate[bot] (#469) + 🧰 Maintenance + - fix(deps): Update Docker @renovate[bot] (#469) +ReleaseNotesUrl: https://github.com/openpubkey/opkssh/releases/tag/v0.16.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/openpubkey/opkssh/0.16.0/openpubkey.opkssh.yaml b/manifests/o/openpubkey/opkssh/0.16.0/openpubkey.opkssh.yaml new file mode 100644 index 0000000000000..af9049e6aa52d --- /dev/null +++ b/manifests/o/openpubkey/opkssh/0.16.0/openpubkey.opkssh.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: openpubkey.opkssh +PackageVersion: 0.16.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.19.3/Postman.Postman.installer.yaml b/manifests/p/Postman/Postman/12.19.3/Postman.Postman.installer.yaml new file mode 100644 index 0000000000000..d5436e87ffc74 --- /dev/null +++ b/manifests/p/Postman/Postman/12.19.3/Postman.Postman.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Postman.Postman +PackageVersion: 12.19.3 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- postman +ProductCode: Postman +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.pstmn.io/download/version/12.19.3/windows_64 + InstallerSha256: E2ABD26839034BAC8D771C442B20050111B3DB68B39B4F4876C75A2E32F54675 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.19.3/Postman.Postman.locale.en-US.yaml b/manifests/p/Postman/Postman/12.19.3/Postman.Postman.locale.en-US.yaml new file mode 100644 index 0000000000000..ec61653015246 --- /dev/null +++ b/manifests/p/Postman/Postman/12.19.3/Postman.Postman.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Postman.Postman +PackageVersion: 12.19.3 +PackageLocale: en-US +Publisher: Postman +PublisherUrl: https://www.postman.com/ +PublisherSupportUrl: https://www.postman.com/support/ +PrivacyUrl: https://www.postman.com/legal/privacy-policy/ +Author: Postman, Inc. +PackageName: Postman +PackageUrl: https://www.postman.com/downloads/ +License: Proprietary +LicenseUrl: https://www.postman.com/legal/terms/ +Copyright: © 2026 Postman, Inc. +CopyrightUrl: https://www.postman.com/legal/terms/ +ShortDescription: The Collaboration Platform for API Development +Description: Postman is a collaboration platform for API development. Postman's features simplify each step of building an API and streamline collaboration so you can create better APIs — faster. +Moniker: postman +Tags: +- api +- automation +- debug +- develop +- development +- interface +- internet +- network +- request +- response +PurchaseUrl: https://www.postman.com/pricing/ +Documentations: +- DocumentLabel: Learning Center + DocumentUrl: https://learning.postman.com/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.19.3/Postman.Postman.locale.zh-CN.yaml b/manifests/p/Postman/Postman/12.19.3/Postman.Postman.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cb44907d1c9ab --- /dev/null +++ b/manifests/p/Postman/Postman/12.19.3/Postman.Postman.locale.zh-CN.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Postman.Postman +PackageVersion: 12.19.3 +PackageLocale: zh-CN +Publisher: Postman +PublisherUrl: https://www.postman.com/ +PublisherSupportUrl: https://www.postman.com/support/ +PrivacyUrl: https://www.postman.com/legal/privacy-policy/ +Author: Postman, Inc. +PackageName: Postman +PackageUrl: https://www.postman.com/downloads/ +License: 专有软件 +LicenseUrl: https://www.postman.com/legal/terms/ +Copyright: © 2026 Postman, Inc. +CopyrightUrl: https://www.postman.com/legal/terms/ +ShortDescription: API 开发协作平台 +Description: Postman 是一个 API 开发协作平台,简化构建 API 流程的每一步,并让协作流水线化,从而更快更好地创建 API。 +Tags: +- api +- 互联网 +- 响应 +- 开发 +- 接口 +- 网络 +- 自动化 +- 请求 +- 调试 +PurchaseUrl: https://www.postman.com/pricing/ +Documentations: +- DocumentLabel: 学习中心 + DocumentUrl: https://learning.postman.com/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.19.3/Postman.Postman.yaml b/manifests/p/Postman/Postman/12.19.3/Postman.Postman.yaml new file mode 100644 index 0000000000000..8209d49eb908e --- /dev/null +++ b/manifests/p/Postman/Postman/12.19.3/Postman.Postman.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Postman.Postman +PackageVersion: 12.19.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.installer.yaml b/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.installer.yaml new file mode 100644 index 0000000000000..fa9767cc550f2 --- /dev/null +++ b/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: PranshulSoni.OmniSearch +PackageVersion: 1.0.0 +InstallerType: inno +Scope: user +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /SP- +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/PranshulSoni/omnisearch/releases/download/v1.0.0/omnisearchsetup.exe + InstallerSha256: DDB1FEC95C3F13398BC1142C4732F774C7A6B39B80A8BE5F125A990F4B22C855 + AppsAndFeaturesEntries: + - DisplayName: omnisearch + Publisher: Pranshul Soni + ProductCode: omnisearch_is1 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2026-07-01 diff --git a/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.locale.en-US.yaml b/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.locale.en-US.yaml new file mode 100644 index 0000000000000..892f54885d392 --- /dev/null +++ b/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: PranshulSoni.OmniSearch +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: Pranshul Soni +PublisherUrl: https://github.com/PranshulSoni +PublisherSupportUrl: https://github.com/PranshulSoni/omnisearch/issues +Author: Pranshul Soni +PackageName: OmniSearch +PackageUrl: https://github.com/PranshulSoni/omnisearch +License: MIT +LicenseUrl: https://github.com/PranshulSoni/omnisearch/blob/lean-build/LICENSE +Copyright: Copyright (c) 2026 Pranshul Soni +ShortDescription: A fast, local-first Windows launcher to find everything on your PC from one shortcut. +Description: OmniSearch is a lightweight Windows launcher for searching apps, files, folders, file content, OCR text, browser history, clipboard history, Git activity, Windows settings, local commands, and AI agent chats from one keyboard shortcut. +Moniker: omnisearch +Tags: +- launcher +- search +- windows +- productivity +- clipboard +- ocr +- rust +ReleaseNotes: Initial public release of OmniSearch for Windows. +ReleaseNotesUrl: https://github.com/PranshulSoni/omnisearch/releases/tag/v1.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.yaml b/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.yaml similarity index 56% rename from manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.yaml rename to manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.yaml index 5622a5bb32954..8c8b3e10ccd30 100644 --- a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.yaml +++ b/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 138.0.7204.169 +PackageIdentifier: PranshulSoni.OmniSearch +PackageVersion: 1.0.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/p/pbek/QOwnNotes/26.7.7/pbek.QOwnNotes.installer.yaml b/manifests/p/pbek/QOwnNotes/26.7.7/pbek.QOwnNotes.installer.yaml new file mode 100644 index 0000000000000..e544450487795 --- /dev/null +++ b/manifests/p/pbek/QOwnNotes/26.7.7/pbek.QOwnNotes.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: pbek.QOwnNotes +PackageVersion: 26.7.7 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: QOwnNotes.exe + PortableCommandAlias: qownnotes.exe +ReleaseDate: 2026-07-14 +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/pbek/QOwnNotes/releases/download/v26.7.7/QOwnNotes.zip + InstallerSha256: E515D17DBE5658D154A250092CBAF5E94930ABBD4224F3765D7500D6F6686E5B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/pbek/QOwnNotes/26.7.7/pbek.QOwnNotes.locale.en-US.yaml b/manifests/p/pbek/QOwnNotes/26.7.7/pbek.QOwnNotes.locale.en-US.yaml new file mode 100644 index 0000000000000..c379dfbb41975 --- /dev/null +++ b/manifests/p/pbek/QOwnNotes/26.7.7/pbek.QOwnNotes.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: pbek.QOwnNotes +PackageVersion: 26.7.7 +PackageLocale: en-US +Publisher: pbek +PublisherUrl: https://github.com/pbek/QOwnNotes +PublisherSupportUrl: https://github.com/pbek/QOwnNotes/issues +Author: https://github.com/pbek +PackageName: QOwnNotes +PackageUrl: https://github.com/pbek/QOwnNotes +License: GPL-2.0 +LicenseUrl: https://github.com/pbek/QOwnNotes/blob/HEAD/LICENSE +ShortDescription: QOwnNotes is the open source notepad with markdown support and todo list manager +Tags: +- markdown +- notes +- notetaking +- qownnotes +- todo +ReleaseNotes: |- + 26.7.7 + - The active entry is now marked with a checkbox in the Note folder and + Color modes settings lists, which can also be used to set the active item + (for #3663) + - Added more Spanish, French, Korean translation (thank you, AlejandroMoc, jd-develop, VenusGirl) + Released files + - QOwnNotes-x86_64.AppImage: Portable Linux AppImage build with Qt 6 + - QOwnNotes-x86_64.AppImage.sha256sum: SHA-256 checksum for the AppImage + - QOwnNotes-amd64.snap: Linux Snap build with Qt 6 + - QOwnNotes-amd64.snap.sha256sum: SHA-256 checksum for the Qt 6 Snap package + - QOwnNotes-Qt5-amd64.snap: Linux Snap build with Qt 5 for older environments + - QOwnNotes-Qt5-amd64.snap.sha256sum: SHA-256 checksum for the Qt 5 Snap package + - QOwnNotes.zip: Windows ZIP package built with Qt 6 + - QOwnNotes.zip.sha256: SHA-256 checksum for the Qt 6 Windows ZIP package + - QOwnNotes.zip.sha256sum: Alternative SHA-256 checksum file for the Qt 6 Windows ZIP package + - QOwnNotes.dmg: macOS disk image built with Qt 6 + - QOwnNotesQt5.dmg: macOS disk image built with Qt 5 for older systems +ReleaseNotesUrl: https://github.com/pbek/QOwnNotes/releases/tag/v26.7.7 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/pbek/QOwnNotes/26.7.7/pbek.QOwnNotes.yaml b/manifests/p/pbek/QOwnNotes/26.7.7/pbek.QOwnNotes.yaml new file mode 100644 index 0000000000000..f5e8a0b9de308 --- /dev/null +++ b/manifests/p/pbek/QOwnNotes/26.7.7/pbek.QOwnNotes.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: pbek.QOwnNotes +PackageVersion: 26.7.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.installer.yaml b/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.installer.yaml new file mode 100644 index 0000000000000..fcbdca8b9897f --- /dev/null +++ b/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.installer.yaml @@ -0,0 +1,35 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: polrivero.GitHubDesktopPlus +PackageVersion: 3.6.2-r1 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- github-windows +- x-github-client +- x-github-desktop-auth +ProductCode: DesktopPlus +ReleaseDate: 2026-07-04 +AppsAndFeaturesEntries: +- DisplayName: Desktop Plus + Publisher: Desktop Plus + ProductCode: DesktopPlus +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\DesktopPlus' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/desktop-plus/desktop-plus/releases/download/v3.6.2.1/DesktopPlus-v3.6.2.1-windows-x64.exe + InstallerSha256: A2C9E71FAFC83593A8CA699AF2A692F51D98F60DBF7DF99F4A39090523069027 +- Architecture: arm64 + InstallerUrl: https://github.com/desktop-plus/desktop-plus/releases/download/v3.6.2.1/DesktopPlus-v3.6.2.1-windows-arm64.exe + InstallerSha256: 6F70A32A8522C2495527194F27EBE0FC839F535ED9584184216847693498D682 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.locale.en-US.yaml b/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.locale.en-US.yaml new file mode 100644 index 0000000000000..28b5a4fdc2dae --- /dev/null +++ b/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: polrivero.GitHubDesktopPlus +PackageVersion: 3.6.2-r1 +PackageLocale: en-US +Publisher: pol-rivero +PublisherUrl: https://github.com/pol-rivero +PublisherSupportUrl: https://github.com/pol-rivero/github-desktop-plus/issues +Author: pol-rivero +PackageName: GitHub Desktop Plus +PackageUrl: https://github.com/pol-rivero/github-desktop-plus +License: MIT +LicenseUrl: https://github.com/desktop-plus/desktop-plus/blob/HEAD/LICENSE +Copyright: Copyright (c) GitHub, Inc. +ShortDescription: A GitHub Desktop fork with advanced functionality and Bitbucket, GitLab integration. +Description: An up-to-date fork of GitHub Desktop with additional features including multiple account support, Bitbucket and GitLab integration, commit search, multiple stashes per branch, and more. +Moniker: github-desktop-plus +Tags: +- bitbucket +- desktop-app +- git +- github +- gitlab +ReleaseNotes: |- + Upstream: + - GitHub Desktop 3.6.2-beta1 release notes + - GitHub Desktop 3.6.2 release notes + Changes and improvements: + - [#197] The "Reset to commit..." context menu item is now available for all commits, not just local-only (unpushed) commits. + Use it with caution! If you rewrite history on commits that other people have already pulled, you may cause problems for them. + - [#199] Linux: Use the OS's trust store (in addition to Chromium's) to validate certificates. This should help with some corporate environments that use self-signed certificates. + Fixes: + - [#205] Windows, macOS: Fixed a missing logo in the app's About dialog. + - Made the app icon slightly bigger to make its apparent size more similar to other icons. + - macOS: The app should now display the correct icon (new Desktop Plus logo). + - When using the Branch name presets feature, pressing Ctrl+1, Ctrl+2, etc. to quick-select a preset now works once again. +ReleaseNotesUrl: https://github.com/desktop-plus/desktop-plus/releases/tag/v3.6.2.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.yaml b/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.yaml new file mode 100644 index 0000000000000..2e825ab1573fc --- /dev/null +++ b/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: polrivero.GitHubDesktopPlus +PackageVersion: 3.6.2-r1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.installer.yaml b/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.installer.yaml new file mode 100644 index 0000000000000..d71f09713a945 --- /dev/null +++ b/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.installer.yaml @@ -0,0 +1,14 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: QuotationFactory.QFC +PackageVersion: 0.0.1-alpha +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: + - RelativeFilePath: qfc.exe + PortableCommandAlias: qfc +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/quotationfactory/qf_cli/releases/download/v0.0.1-alpha/qfc-win-x64.zip + InstallerSha256: 7617358EBFC6BA69ED1B1D245E0B6CB356056F360451A6AF4365FA93DD0C73D8 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.locale.en-US.yaml b/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.locale.en-US.yaml new file mode 100644 index 0000000000000..3eddacc9162f0 --- /dev/null +++ b/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: QuotationFactory.QFC +PackageVersion: 0.0.1-alpha +PackageLocale: en-US +Publisher: Quotation Factory +PublisherUrl: https://github.com/quotationfactory/qf_cli +PublisherSupportUrl: https://github.com/quotationfactory/qf_cli/issues +PackageName: Quotation Factory CLI +PackageUrl: https://github.com/quotationfactory/qf_cli +License: Proprietary +LicenseUrl: https://github.com/quotationfactory/qf_cli +Copyright: Copyright (c) Quotation Factory +ShortDescription: CLI for the Quotation Factory / Rhodium24 manufacturing API. +Description: A self-contained command-line tool for discovering, describing, and calling Quotation Factory / Rhodium24 API endpoints with structured JSON output. +Moniker: qfc +Tags: + - quotation-factory + - qfc + - rhodium24 + - manufacturing + - cli + - api +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.yaml b/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.yaml new file mode 100644 index 0000000000000..37125b140582a --- /dev/null +++ b/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +PackageIdentifier: QuotationFactory.QFC +PackageVersion: 0.0.1-alpha +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.installer.yaml b/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.installer.yaml new file mode 100644 index 0000000000000..7f96e82c9107e --- /dev/null +++ b/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RClone-Manager.rclone-manager +PackageVersion: v0.3.0 +InstallerLocale: en-US +InstallerType: wix +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Zarestia-Dev/rclone-manager/releases/download/v0.3.0/RClone.Manager_0.3.0_x64_en-US.msi + InstallerSha256: B84D9AF5153CEADA0B7763A3A52B6CCA94359401C2716D2F24D8C7F20CAF1AC0 + ProductCode: '{925D9FAC-4627-42CC-8957-7FFE7F48AB06}' +- Architecture: arm64 + InstallerUrl: https://github.com/Zarestia-Dev/rclone-manager/releases/download/v0.3.0/RClone.Manager_0.3.0_arm64_en-US.msi + InstallerSha256: 2C23783C961CCB29FCF10B1992D58EDCCE72E51B57E194EF61379DA581468317 + ProductCode: '{024E26FA-5AD2-4354-BED2-6C37DFB6E424}' +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.locale.en-US.yaml b/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.locale.en-US.yaml new file mode 100644 index 0000000000000..1b144d41fa80c --- /dev/null +++ b/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RClone-Manager.rclone-manager +PackageVersion: v0.3.0 +PackageLocale: en-US +Publisher: RClone-Manager +PublisherUrl: https://github.com/Zarestia-Dev +PublisherSupportUrl: https://github.com/Zarestia-Dev/rclone-manager/issues +PackageName: RClone Manager +PackageUrl: https://github.com/Zarestia-Dev/rclone-manager +License: GPL-3.0-or-later +ShortDescription: A powerful, cross-platform GUI for managing Rclone remotes with style and ease. +Tags: +- adwaita +- angular +- angular-material +- dropbox +- fuse +- gnome +- google-drive +- onedrive +- rclone-gui +- s3 +- tauri +ReleaseNotesUrl: https://github.com/Zarestia-Dev/rclone-manager/releases/tag/v0.3.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Zarestia-Dev/rclone-manager/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.yaml b/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.yaml new file mode 100644 index 0000000000000..4e63e53ef6415 --- /dev/null +++ b/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: RClone-Manager.rclone-manager +PackageVersion: v0.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.installer.yaml b/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.installer.yaml new file mode 100644 index 0000000000000..371e8c2d1959e --- /dev/null +++ b/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.installer.yaml @@ -0,0 +1,28 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RafalZG.ClaudeSessionsSidekick +PackageVersion: 1.0.5 +InstallerType: exe +Scope: user +InstallModes: +- silent +- silentWithProgress +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + InstallLocation: --installto "" + Log: --log "" +UpgradeBehavior: install +ProductCode: ClaudeSessionsSidekick +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- ProductCode: ClaudeSessionsSidekick +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\ClaudeSessionsSidekick' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/RafalZG/claude-sessions-sidekick/releases/download/v1.0.5/ClaudeSessionsSidekick-win-Setup.exe + InstallerSha256: C58162BEEACBD1D3B1DC0749154902BB6A74BAD7E53E9ECF59CDD0ACA7E13355 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.locale.en-US.yaml b/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.locale.en-US.yaml new file mode 100644 index 0000000000000..8913d0c22d3e6 --- /dev/null +++ b/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.locale.en-US.yaml @@ -0,0 +1,56 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RafalZG.ClaudeSessionsSidekick +PackageVersion: 1.0.5 +PackageLocale: en-US +Publisher: Rafał Zygmunt +PublisherUrl: https://github.com/RafalZG +PublisherSupportUrl: https://github.com/RafalZG/claude-sessions-sidekick/issues +Author: Rafał Zygmunt +PackageName: Claude Sessions Sidekick +PackageUrl: https://github.com/RafalZG/claude-sessions-sidekick +License: MIT +LicenseUrl: https://github.com/RafalZG/claude-sessions-sidekick/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Rafał Zygmunt +CopyrightUrl: https://github.com/RafalZG/claude-sessions-sidekick/blob/main/LICENSE +ShortDescription: Tray sidekick for Claude Code — usage tracking, session browser, quick launchers, prompt library. +Description: |- + Claude Sessions Sidekick is a Windows tray utility that complements Anthropic's Claude Code CLI. + It provides a persistent at-a-glance view of usage limits (5-hour rolling block and weekly + Sonnet/Opus utilization), a searchable browser for past Claude Code sessions across projects + with per-session notes and color tags, project quick launchers with global hotkeys, a reusable + prompt library, and an MCP server browser. + + The app reads only local Claude Code data and uses the user's own OAuth token for the official + Claude Code usage API — no telemetry, no third-party servers. +Moniker: claude-sessions-sidekick +Tags: +- ai +- anthropic +- claude +- claude-code +- developer-tools +- dotnet +- llm +- productivity +- session-manager +- tray +ReleaseNotes: |- + Added + - Session Browser → right-click → Resume with model now offers + Fable (1M) alongside Sonnet / Opus / Haiku. It passes the full + claude-fable-5 id to claude --model (no stable short alias). Note: + on Team/Pro plans Fable's included access ended and it now bills via + usage credits, so the resume will only succeed if your account has Fable + access enabled. + Fixed + - Context-window sizing now recognises Claude Fable 5 and Mythos 5 + (both 1M), so their sessions no longer get the stale 200k default — a + 569k-token Fable session was rendering as "ctx 284%" with a bogus + "Consider /compact now". Unrecognised newer model IDs now also assume 1M + (every current Claude tier ships at 1M); only Haiku and genuinely-legacy + pre-4 IDs (claude-3-*, claude-2*) stay at 200k. +ReleaseNotesUrl: https://github.com/RafalZG/claude-sessions-sidekick/releases/tag/v1.0.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.yaml b/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.yaml new file mode 100644 index 0000000000000..54a71cfd6c8d5 --- /dev/null +++ b/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: RafalZG.ClaudeSessionsSidekick +PackageVersion: 1.0.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.installer.yaml b/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.installer.yaml new file mode 100644 index 0000000000000..63566150089a7 --- /dev/null +++ b/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.installer.yaml @@ -0,0 +1,11 @@ +PackageIdentifier: RaijuMounun.intqual +PackageVersion: 1.0.1 +InstallerType: portable +Commands: + - intqual +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/RaijuMounun/intqual/releases/download/v1.0.1/intqual-windows-amd64.exe + InstallerSha256: 9DB6668CE58B39DCDB9A9EA7860B4C0BD3767DEDF6F9E6EB7921D238569A818F +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.locale.en-US.yaml b/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.locale.en-US.yaml new file mode 100644 index 0000000000000..f12df5db144de --- /dev/null +++ b/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.locale.en-US.yaml @@ -0,0 +1,13 @@ +PackageIdentifier: RaijuMounun.intqual +PackageVersion: 1.0.1 +PackageLocale: en-US +Publisher: Eren Keskinoğlu +PackageName: Intqual +License: MIT +ShortDescription: A dual-layer asynchronous network latency analyzer and observability tool. +Tags: + - ping + - network + - tui +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.yaml b/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.yaml new file mode 100644 index 0000000000000..11ed8fb682e45 --- /dev/null +++ b/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.yaml @@ -0,0 +1,5 @@ +PackageIdentifier: RaijuMounun.intqual +PackageVersion: 1.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.installer.yaml b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.installer.yaml new file mode 100644 index 0000000000000..90f18d32fdd08 --- /dev/null +++ b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ReadAI.ReadAI +PackageVersion: 1.28.0 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: Read AI +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://desktop.read.ai/updates/windows/x86_64/1.28.0/Read%20AI_1.28.0_x64-setup.exe + InstallerSha256: 1DC86028067F3E33AE84B0DF496A5B71B34B2DB3D82CD4E9AD9019F84C72B1B3 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.locale.en-US.yaml b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.locale.en-US.yaml new file mode 100644 index 0000000000000..87ab25feea52b --- /dev/null +++ b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ReadAI.ReadAI +PackageVersion: 1.28.0 +PackageLocale: en-US +Publisher: readai +PublisherUrl: https://www.read.ai/ +PublisherSupportUrl: https://support.read.ai/ +PrivacyUrl: https://www.read.ai/privacy-policy +Author: Read AI, Inc. +PackageName: Read AI +PackageUrl: https://www.read.ai/desktop +License: Proprietary +LicenseUrl: https://www.read.ai/termsofservice +Copyright: © 2026 Read AI, Inc. +CopyrightUrl: https://www.read.ai/termsofservice +ShortDescription: Capture meetings anywhere, no bot necessary. +Description: Capture and transcribe conversations instantly with the Read AI app for Mac and Windows - no bot needed. Record any meeting, get real-time transcripts and AI summaries and get insights from Search Copilot anywhere you work. +Tags: +- conference +- conferencing +- meeting +- speech +- speech-recognition +- transcribe +- transcription +- video-conferencing +- voice +- voice-conferencing +ReleaseNotes: Update to version 1.28.0 +PurchaseUrl: https://www.read.ai/plans-pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.locale.zh-CN.yaml b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2a6c7acda6ab0 --- /dev/null +++ b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.locale.zh-CN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ReadAI.ReadAI +PackageVersion: 1.28.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 随时随地捕捉会议内容,无需使用机器人。 +Description: 使用适用于 Mac 和 Windows 的 Read AI 应用,即时捕捉并转录对话——无需机器人。录制任何会议,获取实时转录文本和 AI 摘要,并通过 Search Copilot 在您工作的任何地方获得洞察。 +Tags: +- 会议 +- 开会 +- 视频会议 +- 识别 +- 语音 +- 语音会议 +- 语音识别 +- 转写 +- 转录 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.yaml b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.yaml new file mode 100644 index 0000000000000..878c55f63b017 --- /dev/null +++ b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ReadAI.ReadAI +PackageVersion: 1.28.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.installer.yaml b/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.installer.yaml index 9cc8d70913f2d..e39466ebdc83b 100644 --- a/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.installer.yaml +++ b/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.installer.yaml @@ -9,10 +9,10 @@ InstallerSwitches: Upgrade: --updated UpgradeBehavior: install ProductCode: 09e2d43b-2e9a-5a23-a54c-87838a95fcb3 -ReleaseDate: 2026-07-10 +ReleaseDate: 2026-07-14 Installers: - Architecture: x64 - InstallerUrl: https://downloads.sparkmailapp.com/Spark3/win/dist/3.30.1.139872/Spark.exe - InstallerSha256: 74DC557199784AB47AB13C3BDCAB98FAFC04895037B7E6BAFB80BB1AE6CC78E0 + InstallerUrl: https://downloads.sparkmailapp.com/Spark3/win/dist/3.30.1.139922/Spark.exe + InstallerSha256: 1629D53E385434B3837182225DB36AA1F54E83F7610E6C4D090A38C4F004C952 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.locale.en-US.yaml b/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.locale.en-US.yaml index d514273db18d1..b1714934ce164 100644 --- a/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.locale.en-US.yaml +++ b/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.locale.en-US.yaml @@ -20,11 +20,11 @@ Tags: - email - mail ReleaseNotes: |- - Spark now uses a more secure connection for Microsoft 365, Outlook, and Hotmail accounts, with one sign-in for email and calendar. - Already use a Microsoft account? Just sign in again when Spark asks. It takes a few seconds. - Share your feedback at support@sparkmailapp.com + In this update: + Just some fresh paint and tune-ups. No bigs. + We're always here for you at support@sparkmailapp.com P.S. If you encounter any issues with the automatic update, please use the following link to download the update manually: - https://downloads.sparkmailapp.com/Spark3/win/dist/3.30.1.139872/Spark.exe + https://downloads.sparkmailapp.com/Spark3/win/dist/3.30.1.139922/Spark.exe ReleaseNotesUrl: https://sparkmailapp.com/spark3/win/changelog PurchaseUrl: https://sparkmailapp.com/pricing Documentations: diff --git a/manifests/r/Recol/DLSSUpdater/4.3.2/Recol.DLSSUpdater.installer.yaml b/manifests/r/Recol/DLSSUpdater/4.3.2/Recol.DLSSUpdater.installer.yaml new file mode 100644 index 0000000000000..c804abdcdc794 --- /dev/null +++ b/manifests/r/Recol/DLSSUpdater/4.3.2/Recol.DLSSUpdater.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Recol.DLSSUpdater +PackageVersion: 4.3.2 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallModes: +- interactive +- silent +- silentWithProgress +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerType: msi + InstallerUrl: https://github.com/Recol/DLSS-Updater/releases/download/V4.3.2/DLSS.Updater.4.3.2.msi + InstallerSha256: F577FF6CB25CC3BCA57F64A5031A62F6D633EAEB7F4D3E71D3F01A985F0EF58B + InstallerSwitches: + Custom: /norestart + UpgradeBehavior: install + ProductCode: '{A6B8B9EA-A81D-4B1B-9C6C-F17FD809E2CF}' +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/r/Recol/DLSSUpdater/4.3.2/Recol.DLSSUpdater.locale.en-US.yaml b/manifests/r/Recol/DLSSUpdater/4.3.2/Recol.DLSSUpdater.locale.en-US.yaml new file mode 100644 index 0000000000000..71dda9338c6f3 --- /dev/null +++ b/manifests/r/Recol/DLSSUpdater/4.3.2/Recol.DLSSUpdater.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Recol.DLSSUpdater +PackageVersion: 4.3.2 +PackageLocale: en-US +Publisher: Recol +PublisherUrl: https://github.com/Recol +PublisherSupportUrl: https://github.com/Recol/DLSS-Updater/issues +Author: Deco +PackageName: DLSS Updater +PackageUrl: https://github.com/Recol/DLSS-Updater +License: AGPL-3.0 +LicenseUrl: https://github.com/Recol/DLSS-Updater/blob/main/LICENSE +ShortDescription: A tool to update DLSS, XeSS, and DirectStorage DLLs for various games +Description: | + DLSS Updater is a utility that automatically updates DLSS (Deep Learning Super Sampling), XeSS (Intel Xe Super Sampling), and DirectStorage DLLs for games across multiple platforms. + + Note: This application requires administrative privileges to modify game files. +Tags: +- dlss +- nvidia +- gaming +- xess +- directstorage +ReleaseNotes: https://github.com/Recol/DLSS-Updater/releases/tag/V4.3.2 +ReleaseNotesUrl: https://github.com/Recol/DLSS-Updater/releases/tag/V4.3.2 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/r/Recol/DLSSUpdater/4.3.2/Recol.DLSSUpdater.yaml b/manifests/r/Recol/DLSSUpdater/4.3.2/Recol.DLSSUpdater.yaml new file mode 100644 index 0000000000000..dbe8a27b7adad --- /dev/null +++ b/manifests/r/Recol/DLSSUpdater/4.3.2/Recol.DLSSUpdater.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Recol.DLSSUpdater +PackageVersion: 4.3.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/r/Relic/Relic/1.0.5/Relic.Relic.installer.yaml b/manifests/r/Relic/Relic/1.0.5/Relic.Relic.installer.yaml new file mode 100644 index 0000000000000..f7436f5893e69 --- /dev/null +++ b/manifests/r/Relic/Relic/1.0.5/Relic.Relic.installer.yaml @@ -0,0 +1,26 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Relic.Relic +PackageVersion: 1.0.5 +InstallerLocale: en-US +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: inno +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://relic.space/download/windows/relic-setup-1.0.5.exe + InstallerSha256: 1F0EFE66C2C5551757A826D6BFA6BFAF4317A403B04043849EB8FED1DB676FF4 + AppsAndFeaturesEntries: + - DisplayName: Relic + Publisher: Relic + DisplayVersion: 1.0.5 + ProductCode: '{B7E3A6F2-4C1D-4E8A-9F2B-1A7C5D9E0F34}_is1' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/r/Relic/Relic/1.0.5/Relic.Relic.locale.en-US.yaml b/manifests/r/Relic/Relic/1.0.5/Relic.Relic.locale.en-US.yaml new file mode 100644 index 0000000000000..ef00026479c0a --- /dev/null +++ b/manifests/r/Relic/Relic/1.0.5/Relic.Relic.locale.en-US.yaml @@ -0,0 +1,28 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Relic.Relic +PackageVersion: 1.0.5 +PackageLocale: en-US +Publisher: Relic +PublisherUrl: https://relic.space +PublisherSupportUrl: https://relic.space +PrivacyUrl: https://relic.space/legal/privacy +Author: Jordan Gibbs +PackageName: Relic +PackageUrl: https://relic.space +License: Proprietary +Copyright: Copyright (c) Ember Technologies, LLC +ShortDescription: Clipboard manager with end-to-end encrypted sync, on-device AI search, and secret protection. +Description: |- + Relic captures everything you copy on Windows and makes it searchable with on-device AI: semantic search over your history plus text recognition inside screenshots, with nothing sent to the cloud for analysis. Sync across devices is end-to-end encrypted. Relic detects secrets like passwords and API keys, masks them, respects password manager exclusion formats, and wipes copied secrets from the clipboard after 30 seconds. It also includes encrypted share links, offline QR sharing, a vault for items you want to keep forever, per-app capture blocking, and a command line tool that AI agents can use to read and write your local vault. +Moniker: relic +Tags: +- clipboard +- clipboard-manager +- e2ee +- encryption +- ocr +- productivity +- search +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/r/Relic/Relic/1.0.5/Relic.Relic.yaml b/manifests/r/Relic/Relic/1.0.5/Relic.Relic.yaml new file mode 100644 index 0000000000000..89e38b1d9a59e --- /dev/null +++ b/manifests/r/Relic/Relic/1.0.5/Relic.Relic.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Relic.Relic +PackageVersion: 1.0.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/r/RikardElofsson/SDXC-copy/1.0.1/RikardElofsson.SDXC-copy.installer.yaml b/manifests/r/RikardElofsson/SDXC-copy/1.0.1/RikardElofsson.SDXC-copy.installer.yaml new file mode 100644 index 0000000000000..3b3b7501be681 --- /dev/null +++ b/manifests/r/RikardElofsson/SDXC-copy/1.0.1/RikardElofsson.SDXC-copy.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: RikardElofsson.SDXC-copy +PackageVersion: 1.0.1 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: SdxcCopy.exe + PortableCommandAlias: sdxc-copy +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Elof-com/SDXC-copy/releases/download/v1.0.1/SDXC-copy-v1.0.1-win-x64.zip + InstallerSha256: F09D5D904B095B7DA972382B038C8845CD25E6EE9ABC3D2C058B5C6CA136D876 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/r/RikardElofsson/SDXC-copy/1.0.1/RikardElofsson.SDXC-copy.locale.sv-SE.yaml b/manifests/r/RikardElofsson/SDXC-copy/1.0.1/RikardElofsson.SDXC-copy.locale.sv-SE.yaml new file mode 100644 index 0000000000000..b32cbc08723f5 --- /dev/null +++ b/manifests/r/RikardElofsson/SDXC-copy/1.0.1/RikardElofsson.SDXC-copy.locale.sv-SE.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: RikardElofsson.SDXC-copy +PackageVersion: 1.0.1 +PackageLocale: sv-SE +Publisher: Rikard Elofsson +PublisherUrl: https://github.com/Elof-com +PublisherSupportUrl: https://github.com/Elof-com/SDXC-copy/issues +PackageName: SDXC-copy +PackageUrl: https://github.com/Elof-com/SDXC-copy +License: PolyForm Noncommercial 1.0.0 +LicenseUrl: https://github.com/Elof-com/SDXC-copy/blob/main/LICENSE.md +Copyright: Copyright Rikard Elofsson (elof@elof.com) +ShortDescription: Kopierar bilder från kamerors SDXC-kort till dator. +Description: |- + Ett Windows-program som ligger i systemfältet, upptäcker när ett + SDXC-kort från en kamera sätts i och kopierar bilderna till rätt + plats på datorn. Kameror känns igen via EXIF (modell + serienummer), + varje kamera har en egen grundkatalog och ett konfigurerbart + mappmönster (t.ex. ÅÅÅÅ/MM/ÅÅÅÅ-MM-DD), redan kopierade bilder + hoppas över och minneskortet lämnas alltid helt orört. +Moniker: sdxc-copy +Tags: +- foto +- kamera +- sdxc +- sd-kort +- bilder +- import +ReleaseNotesUrl: https://github.com/Elof-com/SDXC-copy/releases/tag/v1.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/r/RikardElofsson/SDXC-copy/1.0.1/RikardElofsson.SDXC-copy.yaml b/manifests/r/RikardElofsson/SDXC-copy/1.0.1/RikardElofsson.SDXC-copy.yaml new file mode 100644 index 0000000000000..1f6a2b6dafaa6 --- /dev/null +++ b/manifests/r/RikardElofsson/SDXC-copy/1.0.1/RikardElofsson.SDXC-copy.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: RikardElofsson.SDXC-copy +PackageVersion: 1.0.1 +DefaultLocale: sv-SE +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/r/RubyInstallerTeam/Ruby/4/0/4.0.6-1/RubyInstallerTeam.Ruby.4.0.installer.yaml b/manifests/r/RubyInstallerTeam/Ruby/4/0/4.0.6-1/RubyInstallerTeam.Ruby.4.0.installer.yaml new file mode 100644 index 0000000000000..c29a704cae6fe --- /dev/null +++ b/manifests/r/RubyInstallerTeam/Ruby/4/0/4.0.6-1/RubyInstallerTeam.Ruby.4.0.installer.yaml @@ -0,0 +1,53 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RubyInstallerTeam.Ruby.4.0 +PackageVersion: 4.0.6-1 +InstallerType: inno +UpgradeBehavior: install +Commands: +- ruby +- rubyw +FileExtensions: +- rb +- rbw +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-4.0.6-1/rubyinstaller-4.0.6-1-x64.exe + InstallerSha256: EFF475DDDBF57B1E9914B952DA6C3CC6AE12269EAF52F505561CB220E9636FD8 + InstallerSwitches: + Custom: /CURRENTUSER + ProductCode: RubyInstaller-4.0-x64-mingw-ucrt_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 4.0.6-1-x64 +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-4.0.6-1/rubyinstaller-4.0.6-1-x64.exe + InstallerSha256: EFF475DDDBF57B1E9914B952DA6C3CC6AE12269EAF52F505561CB220E9636FD8 + InstallerSwitches: + Custom: /ALLUSERS + ProductCode: RubyInstaller-4.0-x64-mingw-ucrt_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 4.0.6-1-x64 +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-4.0.6-1/rubyinstaller-4.0.6-1-arm.exe + InstallerSha256: 6EA8CAD0C39A33F990D14C9B669F8B15F5760BF8C1974517C922B7EC5491D5EC + InstallerSwitches: + Custom: /CURRENTUSER + ProductCode: RubyInstaller-4.0-aarch64-mingw-ucrt_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 4.0.6-1-arm +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-4.0.6-1/rubyinstaller-4.0.6-1-arm.exe + InstallerSha256: 6EA8CAD0C39A33F990D14C9B669F8B15F5760BF8C1974517C922B7EC5491D5EC + InstallerSwitches: + Custom: /ALLUSERS + ProductCode: RubyInstaller-4.0-aarch64-mingw-ucrt_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 4.0.6-1-arm +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RubyInstallerTeam/Ruby/4/0/4.0.6-1/RubyInstallerTeam.Ruby.4.0.locale.en-US.yaml b/manifests/r/RubyInstallerTeam/Ruby/4/0/4.0.6-1/RubyInstallerTeam.Ruby.4.0.locale.en-US.yaml new file mode 100644 index 0000000000000..8762411749582 --- /dev/null +++ b/manifests/r/RubyInstallerTeam/Ruby/4/0/4.0.6-1/RubyInstallerTeam.Ruby.4.0.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RubyInstallerTeam.Ruby.4.0 +PackageVersion: 4.0.6-1 +PackageLocale: en-US +Publisher: RubyInstaller Team +PublisherUrl: https://rubyinstaller.org/ +PublisherSupportUrl: https://github.com/oneclick/rubyinstaller2/issues +PackageName: Ruby 4.0 +PackageUrl: https://rubyinstaller.org/downloads/ +License: BSD-3-Clause +LicenseUrl: https://github.com/oneclick/rubyinstaller2/blob/HEAD/LICENSE.txt +Copyright: Copyright (c) 2007-2026, RubyInstaller Team. All rights reserved. +ShortDescription: The Ruby language execution environment +Description: The RubyInstaller project provides a self-contained Windows-based installer that includes a Ruby-language execution environment and a baseline set of required RubyGems and extensions. +Moniker: ruby4-0 +Tags: +- language +- programming +- programming-language +- ruby +ReleaseNotes: |- + Changed + - Update to ruby-4.0.6, see release notes. + - Update the SSL CA certificate list. +ReleaseNotesUrl: https://github.com/oneclick/rubyinstaller2/releases/tag/RubyInstaller-4.0.6-1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/oneclick/rubyinstaller2/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RubyInstallerTeam/Ruby/4/0/4.0.6-1/RubyInstallerTeam.Ruby.4.0.locale.zh-CN.yaml b/manifests/r/RubyInstallerTeam/Ruby/4/0/4.0.6-1/RubyInstallerTeam.Ruby.4.0.locale.zh-CN.yaml new file mode 100644 index 0000000000000..24031910a214e --- /dev/null +++ b/manifests/r/RubyInstallerTeam/Ruby/4/0/4.0.6-1/RubyInstallerTeam.Ruby.4.0.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: RubyInstallerTeam.Ruby.4.0 +PackageVersion: 4.0.6-1 +PackageLocale: zh-CN +ShortDescription: Ruby 语言运行环境 +Description: RubyInstaller 项目提供一个独立的基于 Windows 的安装包,其中包含 Ruby 语言的运行环境,以及一组基本所需的 RubyGems 和扩展。 +Tags: +- ruby +- 编程 +- 编程语言 +- 语言 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RubyInstallerTeam/Ruby/4/0/4.0.6-1/RubyInstallerTeam.Ruby.4.0.yaml b/manifests/r/RubyInstallerTeam/Ruby/4/0/4.0.6-1/RubyInstallerTeam.Ruby.4.0.yaml new file mode 100644 index 0000000000000..b5b9ea7aff30d --- /dev/null +++ b/manifests/r/RubyInstallerTeam/Ruby/4/0/4.0.6-1/RubyInstallerTeam.Ruby.4.0.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: RubyInstallerTeam.Ruby.4.0 +PackageVersion: 4.0.6-1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.installer.yaml b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.installer.yaml new file mode 100644 index 0000000000000..b725a916d5f42 --- /dev/null +++ b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RyensX.OpenCodex +PackageVersion: 2.0.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: ce0e88bf-c4e1-5d5f-bd8c-44770c64a07a +ReleaseDate: 2026-07-10 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/RyensX/OpenCodex/releases/download/2.0.2/OpenCodex.Setup.2.0.2.exe + InstallerSha256: 2E2A54BFF3C902B2F5380A0A9B5A47B31D8116782BA003742A6E53FC04E2ABEB + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/RyensX/OpenCodex/releases/download/2.0.2/OpenCodex.Setup.2.0.2.exe + InstallerSha256: 2E2A54BFF3C902B2F5380A0A9B5A47B31D8116782BA003742A6E53FC04E2ABEB + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.locale.en-US.yaml b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.locale.en-US.yaml new file mode 100644 index 0000000000000..5d290a8e1bd2f --- /dev/null +++ b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RyensX.OpenCodex +PackageVersion: 2.0.2 +PackageLocale: en-US +Publisher: OpenAI +PublisherUrl: https://github.com/RyensX +PublisherSupportUrl: https://github.com/RyensX/OpenCodex/issues +PackageName: OpenCodex +PackageUrl: https://github.com/RyensX/OpenCodex +License: AGPL-3.0 +LicenseUrl: https://github.com/RyensX/OpenCodex/blob/HEAD/LICENSE +ShortDescription: A middleware layer for Codex Desktop. It lets you use a phone, tablet, or another computer to access and operate Codex on a target machine through a browser, making it suitable for continuous AI Coding in LAN or remote LAN environments. +Description: |- + OpenCodex is a middleware layer for Codex Desktop. It lets you use a phone, tablet, or another computer to access and operate Codex on a target machine through a browser, making it suitable for continuous AI Coding in LAN or remote LAN environments. + + Features + - Access Codex on the target machine through a browser, with no proxy network or extra account requirements, and support for phones, tablets, computers, and other devices. + - Native Codex experience. + - Supports local access, LAN access, and remote LAN access with Tailscale / ZeroTier / VPN. + - Supports setting an access password to avoid unauthenticated exposure. + - Provides a launcher for visual configuration of the listen address, port, access password, and more. + - Automatically updates to the local Codex Desktop version on startup, keeping compatibility with new-version features. + - Provides optimizations for mobile devices. +Tags: +- codex +ReleaseNotes: |- + - Compatible with the new ChatGPT Desktop and GPT5.6 + - Supports remote file downloads: You can right-click on blank areas, files, or folders in the file tree (sidebar) to download files to your local machine. + - Supports remotely selecting an existing folder to create/open a project: Added workspace root picker UI and gateway-side IPC/HTTP support. + - Enhanced login security: Added brute-force login protection and rate limiting logic. + - Added an "Anti-Hibernation" setting to the Launcher. + - Added an "Official Runtime Scan" switch to the Launcher. + - Adjustments related to macOS dmp support for x64 architecture. + Fixes + - Fixed remote file upload processing, completed picked files IPC and web bridge logic. + - Fixed the issue of missing credentials when loading the PWA manifest. + - Fixed the adaptation of web-shell top window controls/layout under PWA Window Controls Overlay. + - Fixed the issue of the gateway's local workspace folder selector not working. + - Fixed compatibility issues related to Windows remote file testing. Optimizations/Refactoring + - Launcher log writing optimization + - Simplified Gateway static resource mapping logic. + - Added/expanded multiple test coverage sets: auth rate limit, local files, static assets, workspace roots, official runtime, log writer, etc. + Documentation + - Supplemented environment variable documentation. + - Added Linux support information. +ReleaseNotesUrl: https://github.com/RyensX/OpenCodex/releases/tag/2.0.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.locale.zh-CN.yaml b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1fe515f70edb9 --- /dev/null +++ b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.locale.zh-CN.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: RyensX.OpenCodex +PackageVersion: 2.0.2 +PackageLocale: zh-CN +ShortDescription: 一个 Codex Desktop 中间层,可以让你使用手机、平板或另一台电脑通过浏览器里访问并操作目标机器上的 Codex,适合在局域网或远程局域网环境中持续 AI Coding。 +Description: |- + OpenCodex 是一个 Codex Desktop 中间层,它可以让你使用手机、平板或另一台电脑通过浏览器里访问并操作目标机器上的 Codex,适合在局域网或远程局域网环境中持续 AI Coding。 + + 特性 + - 通过浏览器访问目标机器上的 Codex,无需魔法网络和账号,支持手机、平板、电脑等多种设备。 + - 原汁原味 Codex 使用体验。 + - 支持本机访问、局域网访问和配合 Tailscale / ZeroTier / VPN 的远程局域网访问。 + - 支持设置访问密码,避免无认证暴露。 + - 提供桌面启动器,可可视化配置监听地址、端口和访问密码等。 + - 启动时会自动更新到本地 Codex Desktop 版本,自动兼容新版本功能。 + - 针对移动端提供优化。 +ReleaseNotes: |- + - 兼容全新的 ChatGPT Desktop 和 GPT5.6 + - 支持远程文件下载:可以在文件树(侧栏)右键空白处、文件、文件夹下载文件到本地。 + - 支持远程选择“已有文件夹”创建/打开项目:新增 workspace root picker UI 和 gateway 侧 IPC/HTTP 支持。 + - 登录安全增强:增加登录暴力破解防护和限流逻辑。 + - Launcher 新增“防休眠”设置。 + - Launcher 新增“官方 runtime 扫描”开关。 + - macOS dmp 支持 x64 架构相关调整。 + 修复 + - 修复远程文件上传处理,补齐 picked files IPC 与 web bridge 逻辑。 + - 修复 PWA manifest 加载时缺少 credentials 的问题。 + - 修复 PWA Window Controls Overlay 下 web-shell 顶部窗口控件/布局适配。 + - 修复 gateway 本地 workspace 文件夹选择器失效问题。 + - 修复 Windows 远程文件相关测试兼容性。 + 优化/重构 + - Launcher 日志写入优化 + - Gateway 静态资源映射逻辑简化。 + - 新增/扩展多组测试覆盖:auth rate limit、local files、static assets、workspace roots、official runtime、log writer 等。 + 文档 + - 补充环境变量文档。 + - 增加 Linux 支持说明。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.yaml b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.yaml new file mode 100644 index 0000000000000..957f32d4a6d6c --- /dev/null +++ b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: RyensX.OpenCodex +PackageVersion: 2.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.installer.yaml b/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.installer.yaml new file mode 100644 index 0000000000000..df2080be94083 --- /dev/null +++ b/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: rchase999.scratchtext +PackageVersion: 1.0.0 +InstallerType: portable +Commands: +- scratchtext +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/rchase999/scratchtext/releases/download/v1.0.0/scratchtext.exe + InstallerSha256: 31AA4E73069EF37E387A2F3EFB0CE2905795EC2582DA104BF39162B9083B55D5 +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2026-07-01 diff --git a/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.locale.en-US.yaml b/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.locale.en-US.yaml new file mode 100644 index 0000000000000..e1584d65bf147 --- /dev/null +++ b/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: rchase999.scratchtext +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: rchase999 +PublisherUrl: https://github.com/rchase999 +PublisherSupportUrl: https://github.com/rchase999/scratchtext/issues +Author: rchase999 +PackageName: scratchtext +PackageUrl: https://github.com/rchase999/scratchtext +License: MIT +LicenseUrl: https://github.com/rchase999/scratchtext/blob/main/LICENSE +Copyright: Copyright (c) 2026 rchase999 +ShortDescription: A text-based language that compiles to and decompiles from Scratch .sb3 projects. +Description: |- + scratchtext is a command-line tool for working with Scratch projects as text. + It compiles a readable .scratch source file into a Scratch .sb3 project, and + decompiles any .sb3 back into .scratch source plus its images and sounds. + You can drop your own PNG/JPG/SVG images into a folder and reference them as + sprites and backdrops. Every block round-trips losslessly, including all + built-in extensions (Pen, Music, Text to Speech) and custom TurboWarp + extensions. +Moniker: scratchtext +Tags: +- scratch +- sb3 +- compiler +- decompiler +- turbowarp +- education +- cli +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.yaml b/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.yaml new file mode 100644 index 0000000000000..6def485b57d6b --- /dev/null +++ b/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: rchase999.scratchtext +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/s/SST/OpenCodeDesktop/1.18.0/SST.OpenCodeDesktop.installer.yaml b/manifests/s/SST/OpenCodeDesktop/1.18.0/SST.OpenCodeDesktop.installer.yaml new file mode 100644 index 0000000000000..e440dd84df173 --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.18.0/SST.OpenCodeDesktop.installer.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SST.OpenCodeDesktop +PackageVersion: 1.18.0 +InstallerType: nullsoft +Scope: user +ProductCode: d074f30d-5f88-5885-b075-be1348cc7676 +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- DisplayName: OpenCode 1.18.0 + ProductCode: d074f30d-5f88-5885-b075-be1348cc7676 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\OpenCode' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.18.0/opencode-desktop-win-x64.exe + InstallerSha256: 31EB0DB8C69C3513AD213C5704BEB8AAAEDA2125A90569AC57649BA882515D6E +- Architecture: arm64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.18.0/opencode-desktop-win-arm64.exe + InstallerSha256: CA469EB09D8764224CB3BBD4993F5CA5E0B5AF308E3E0E8A2A4920D05DEC175E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/OpenCodeDesktop/1.18.0/SST.OpenCodeDesktop.locale.en-US.yaml b/manifests/s/SST/OpenCodeDesktop/1.18.0/SST.OpenCodeDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..e9480f6b1f046 --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.18.0/SST.OpenCodeDesktop.locale.en-US.yaml @@ -0,0 +1,57 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SST.OpenCodeDesktop +PackageVersion: 1.18.0 +PackageLocale: en-US +Publisher: OpenCode +PublisherUrl: https://anoma.ly/ +PublisherSupportUrl: https://github.com/anomalyco/opencode/issues +PackageName: OpenCode +PackageUrl: https://opencode.ai/ +License: MIT +LicenseUrl: https://github.com/anomalyco/opencode/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 opencode +ShortDescription: OpenCode is an open source agent that helps you write and run code with any AI model. It's available as a terminal-based interface, desktop app, or IDE extension. +Description: |- + opencode is an AI coding agent. It features: + - A responsive, native, themeable terminal UI and desktop app. + - Automatically loads the right LSPs, so the LLMs make fewer mistakes. + - Have multiple agents working in parallel on the same project. + - Create shareable links to any session for reference or to debug. + - Log in with Anthropic to use your Claude Pro or Claude Max account. + - Supports 75+ LLM providers through Models.dev, including local models. +Tags: +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotes: |- + Desktop + + Improvements + - Completed the Desktop v2 migration, including upgrade handling for the new layout and first-launch onboarding. + - Added a setting to switch between the new and old Desktop layouts during the transition period. + + Bugfixes + - Fixed file views using the wrong background in the v2 layout. + - Fixed connected project picker positioning when its anchor is still loading. + - Kept permission auto-accept state separate for each server. + - Fixed a project picker positioning crash. + - Kept terminal tab rename focused while editing. + - Enabled remote sessions to auto-accept permissions correctly. + - Fixed terminal tabs stealing focus when they mount. + - Loaded more timeline history at once to reduce repeated backfill while scrolling. + - Resynced the timeline correctly after reconnecting. + - Preserved the composer caret after request updates. + - Reduced Home cold-load time substantially. + - Preserved timeline bottom anchoring more reliably. + - Clarified status indicator severity. +ReleaseNotesUrl: https://github.com/anomalyco/opencode/releases/tag/v1.18.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://opencode.ai/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/OpenCodeDesktop/1.18.0/SST.OpenCodeDesktop.yaml b/manifests/s/SST/OpenCodeDesktop/1.18.0/SST.OpenCodeDesktop.yaml new file mode 100644 index 0000000000000..4cfae6b406120 --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.18.0/SST.OpenCodeDesktop.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: SST.OpenCodeDesktop +PackageVersion: 1.18.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.installer.yaml b/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.installer.yaml new file mode 100644 index 0000000000000..35e10c7d48c30 --- /dev/null +++ b/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.installer.yaml @@ -0,0 +1,20 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: SciScope.SciScopeTUI +PackageVersion: 0.1.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: sciscope-tui.exe + PortableCommandAlias: sciscope-tui +Commands: +- sciscope-tui +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Timcai06/SciScope/releases/download/v0.1.2/sciscope-tui_windows_amd64.zip + InstallerSha256: 877B79B8DAC5F5214B3E6157CCDE8C9D97A69C681A76ADE92F8593EE0B5E9D67 +- Architecture: arm64 + InstallerUrl: https://github.com/Timcai06/SciScope/releases/download/v0.1.2/sciscope-tui_windows_arm64.zip + InstallerSha256: 208F77A1FB3C60C1AE57D1292CAFC714B4A794102F3948055D2BA0F435E88347 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.locale.en-US.yaml b/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.locale.en-US.yaml new file mode 100644 index 0000000000000..a4b18ffd62cb0 --- /dev/null +++ b/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: SciScope.SciScopeTUI +PackageVersion: 0.1.2 +PackageLocale: en-US +Publisher: SciScope +PublisherUrl: https://github.com/Timcai06 +PublisherSupportUrl: https://github.com/Timcai06/SciScope/issues +Author: SciScope contributors +PackageName: SciScope TUI +PackageUrl: https://github.com/Timcai06/SciScope +License: Proprietary +ShortDescription: Terminal client for the SciScope research agent. +Description: SciScope TUI is a terminal client for a grounded research agent. It can run an offline demo or connect to a SciScope backend through SCISCOPE_BACKEND. +Moniker: sciscope-tui +Tags: +- ai +- agent +- research +- tui +- literature +ReleaseNotesUrl: https://github.com/Timcai06/SciScope/releases/tag/v0.1.2 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.yaml b/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.yaml new file mode 100644 index 0000000000000..d0ecfa1f4afce --- /dev/null +++ b/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: SciScope.SciScopeTUI +PackageVersion: 0.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.installer.yaml b/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.installer.yaml new file mode 100644 index 0000000000000..ad79739c87cc5 --- /dev/null +++ b/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SmokeTurner.Vouch +PackageVersion: 2026.7.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: vouch.exe + PortableCommandAlias: vouch +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/vouch-sh/vouch/releases/download/v2026.7.2/vouch-v2026.7.2-x86_64-pc-windows-msvc.zip + InstallerSha256: 85B038EA9597303A9602A6B51190FB1CAC34F357F77072BB8285AFEF4D511332 +- Architecture: arm64 + InstallerUrl: https://github.com/vouch-sh/vouch/releases/download/v2026.7.2/vouch-v2026.7.2-aarch64-pc-windows-msvc.zip + InstallerSha256: 27406A10EBE18706E02579AC6E4CA30083453A63A160D1900D1947111B0F4C53 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.locale.en-US.yaml b/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.locale.en-US.yaml new file mode 100644 index 0000000000000..0649d6432056b --- /dev/null +++ b/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SmokeTurner.Vouch +PackageVersion: 2026.7.2 +PackageLocale: en-US +Publisher: Smoke Turner, LLC +PublisherUrl: https://github.com/vouch-sh +PublisherSupportUrl: https://github.com/vouch-sh/vouch/issues +Author: Smoke Turner, LLC +PackageName: Vouch +PackageUrl: https://github.com/vouch-sh/vouch +License: Apache-2.0 +LicenseUrl: https://github.com/vouch-sh/vouch/blob/main/LICENSE-APACHE +Copyright: Copyright (c) Smoke Turner, LLC +ShortDescription: Hardware-backed identity for developers +Description: |- + Vouch is a hardware-backed authentication system that issues short-lived + credentials only after a human touches a YubiKey. One touch, one PIN, one + 8-hour session — then SSH, AWS, Kubernetes, and more just work. + + Vouch requires physical presence for every credential issuance, replacing + long-lived API keys and password-plus-push MFA with FIDO2-verified, time- + bounded credentials. +Moniker: vouch +Tags: +- aws +- cli +- fido2 +- kubernetes +- oidc +- ssh +- webauthn +- yubikey +ReleaseNotesUrl: https://github.com/vouch-sh/vouch/releases/tag/v2026.7.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.yaml b/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.yaml new file mode 100644 index 0000000000000..f76c58e128d5d --- /dev/null +++ b/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: SmokeTurner.Vouch +PackageVersion: 2026.7.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.installer.yaml b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.installer.yaml new file mode 100644 index 0000000000000..e291ce7cce73c --- /dev/null +++ b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Snowflake.SnowflakeCLI +PackageVersion: 3.22.1.0 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: TESTFILEPRODUCTDIR="" +UpgradeBehavior: install +Commands: +- snow +ProductCode: '{51377535-F551-4732-A2FA-22B4741093C3}' +AppsAndFeaturesEntries: +- UpgradeCode: '{74BDE2A7-BA7F-3B99-A9C9-67B28155C13A}' +Installers: +- Architecture: x64 + InstallerUrl: https://sfc-repo.snowflakecomputing.com/snowflake-cli/windows_x86_64/3.22.1/snowflake-cli-3.22.1.0-x86_64.msi + InstallerSha256: 868FAAD7736EA873D298EEB6D15AACA2A3AE7C6C2B08BD2368D14379A4724BBC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.locale.en-US.yaml b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..43602b60a7ecf --- /dev/null +++ b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Snowflake.SnowflakeCLI +PackageVersion: 3.22.1.0 +PackageLocale: en-US +Publisher: Snowflake, Inc. +PublisherUrl: https://www.snowflake.com/ +PublisherSupportUrl: https://www.snowflake.com/en/support/ +PrivacyUrl: https://www.snowflake.com/en/legal/privacy/privacy-policy/ +Author: Snowflake, Inc. +PackageName: Snowflake CLI +PackageUrl: https://docs.snowflake.com/en/developer-guide/snowflake-cli/index +License: Proprietary +LicenseUrl: https://www.snowflake.com/en/legal/terms-of-service/ +Copyright: © 2026 Snowflake Inc. All Rights Reserved +CopyrightUrl: https://www.snowflake.com/en/legal/terms-of-service/ +ShortDescription: A command-line tool for Snowflake developers to create, manage, update, and view apps running on Snowflake across workloads such as Streamlit in Snowflake, the Snowflake Native App Framework, Snowpark Container Services, and Snowpark. +Description: |- + Snowflake CLI is an open-source command-line tool explicitly designed for developer-centric workloads in addition to SQL operations. It is a flexible and extensible tool that can accommodate modern development practices and technologies. + With Snowflake CLI, developers can create, manage, update, and view apps running on Snowflake across workloads such as Streamlit in Snowflake, the Snowflake Native App Framework, Snowpark Container Services, and Snowpark. It supports a range of Snowflake features, including user-defined functions, stored procedures, Streamlit in Snowflake, and SQL execution. +Tags: +- database +- snowflake +- sql +ReleaseNotesUrl: https://docs.snowflake.com/en/release-notes/clients-drivers/snowflake-cli-2026 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.locale.zh-CN.yaml b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..56c25cfa71b89 --- /dev/null +++ b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.locale.zh-CN.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Snowflake.SnowflakeCLI +PackageVersion: 3.22.1.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 面向 Snowflake 开发者的命令行工具,用于创建、管理、更新和查看运行在 Snowflake 平台上的应用,支持 Streamlit in Snowflake、Snowflake 原生应用框架、Snowpark 容器服务和 Snowpark 等工作负载。 +Description: |- + Snowflake CLI 是一款专为开发者设计的开源命令行工具,除支持 SQL 操作外,更专注于开发工作负载场景。作为灵活可扩展的工具,它能完美适配现代开发实践与技术栈。 + 通过 Snowflake CLI,开发者可以针对以下工作负载创建、管理、更新和查看运行在 Snowflake 平台的应用:Snowflake 中的 Streamlit、原生应用框架、Snowpark 容器服务以及 Snowpark 开发。该工具全面支持 Snowflake 多项特性,包括用户自定义函数、存储过程、Streamlit in Snowflake 应用以及 SQL 脚本执行。 +Tags: +- snowflake +- sql +- 数据库 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.yaml b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.yaml new file mode 100644 index 0000000000000..16ace19d0b448 --- /dev/null +++ b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Snowflake.SnowflakeCLI +PackageVersion: 3.22.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.installer.yaml b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.installer.yaml similarity index 63% rename from manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.installer.yaml rename to manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.installer.yaml index bfe1d940a5c6f..4c8aa3e8f8f0e 100644 --- a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.installer.yaml +++ b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Sourcegraph.Amp -PackageVersion: 0.0.1784031823-g5829be +PackageVersion: 0.0.1784046309-g5bdc66 InstallerType: portable Commands: - amp @@ -11,7 +11,7 @@ Dependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x64 Installers: - Architecture: x64 - InstallerUrl: https://static.ampcode.com/cli/0.0.1784031823-g5829be/amp-windows-x64-baseline.exe - InstallerSha256: 06E5286CDED570FFFA814D1A8DEEA34E7C049258AF3A57C49E9AF614F4584EDA + InstallerUrl: https://static.ampcode.com/cli/0.0.1784046309-g5bdc66/amp-windows-x64-baseline.exe + InstallerSha256: 8FB09141D41D726EE256ADA492B9FEDD38747340E13D742CE0643379653E6E29 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.locale.en-US.yaml b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.locale.en-US.yaml similarity index 97% rename from manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.locale.en-US.yaml rename to manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.locale.en-US.yaml index 606db21d82b1c..0a725e97fdf60 100644 --- a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.locale.en-US.yaml +++ b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Sourcegraph.Amp -PackageVersion: 0.0.1784031823-g5829be +PackageVersion: 0.0.1784046309-g5bdc66 PackageLocale: en-US Publisher: Sourcegraph, Inc. PublisherUrl: https://ampcode.com/ diff --git a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.locale.zh-CN.yaml b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.locale.zh-CN.yaml similarity index 96% rename from manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.locale.zh-CN.yaml rename to manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.locale.zh-CN.yaml index 1e10db4b91998..4d01c1ba48ec1 100644 --- a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.locale.zh-CN.yaml +++ b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Sourcegraph.Amp -PackageVersion: 0.0.1784031823-g5829be +PackageVersion: 0.0.1784046309-g5bdc66 PackageLocale: zh-CN License: 专有软件 ShortDescription: 适用于终端与编辑器的前沿编码智能体。 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.yaml b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.yaml similarity index 85% rename from manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.yaml rename to manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.yaml index f65a92d9c0bca..4ca583bae8803 100644 --- a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.yaml +++ b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Sourcegraph.Amp -PackageVersion: 0.0.1784031823-g5829be +PackageVersion: 0.0.1784046309-g5bdc66 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/s/Sovera/Pulse/0.1.3/Sovera.Pulse.installer.yaml b/manifests/s/Sovera/Pulse/0.1.3/Sovera.Pulse.installer.yaml new file mode 100644 index 0000000000000..c052e4dd5587d --- /dev/null +++ b/manifests/s/Sovera/Pulse/0.1.3/Sovera.Pulse.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: Sovera.Pulse +PackageVersion: 0.1.3 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-06-26" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: pulse.exe + PortableCommandAlias: pulse + InstallerUrl: https://github.com/sovera-dev/sovera-toolkit/releases/download/v0.1.3/pulse_0.1.3_windows_arm64.zip + InstallerSha256: 682a1858b72fb830635005d1c62755cad8737fcebe95fc2aee0eaff2966842f3 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: pulse.exe + PortableCommandAlias: pulse + InstallerUrl: https://github.com/sovera-dev/sovera-toolkit/releases/download/v0.1.3/pulse_0.1.3_windows_amd64.zip + InstallerSha256: 5b93f276727b0ef5df904ec9a6e1cadce7563a68d3c695af1757e294d3a655e2 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sovera/Pulse/0.1.3/Sovera.Pulse.locale.en-US.yaml b/manifests/s/Sovera/Pulse/0.1.3/Sovera.Pulse.locale.en-US.yaml new file mode 100644 index 0000000000000..19dcef119e68c --- /dev/null +++ b/manifests/s/Sovera/Pulse/0.1.3/Sovera.Pulse.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: Sovera.Pulse +PackageVersion: 0.1.3 +PackageLocale: en-US +Publisher: Sovera +PackageName: Pulse +PackageUrl: https://github.com/sovera-dev/sovera-toolkit +License: MIT +ShortDescription: Pulse — Sovera Markdown↔Confluence sync CLI +Moniker: Pulse +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sovera/Pulse/0.1.3/Sovera.Pulse.yaml b/manifests/s/Sovera/Pulse/0.1.3/Sovera.Pulse.yaml new file mode 100644 index 0000000000000..54884de3fe279 --- /dev/null +++ b/manifests/s/Sovera/Pulse/0.1.3/Sovera.Pulse.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: Sovera.Pulse +PackageVersion: 0.1.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sovera/Pulse/0.1.4/Sovera.Pulse.installer.yaml b/manifests/s/Sovera/Pulse/0.1.4/Sovera.Pulse.installer.yaml new file mode 100644 index 0000000000000..2c3cfce605680 --- /dev/null +++ b/manifests/s/Sovera/Pulse/0.1.4/Sovera.Pulse.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: Sovera.Pulse +PackageVersion: 0.1.4 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-06-26" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: pulse.exe + PortableCommandAlias: pulse + InstallerUrl: https://github.com/sovera-dev/sovera-toolkit/releases/download/v0.1.4/pulse_0.1.4_windows_arm64.zip + InstallerSha256: 1ec503d8f562a25b1783d8aa82d79e6b1b66eab3ed1ac71660593aefe389e53e + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: pulse.exe + PortableCommandAlias: pulse + InstallerUrl: https://github.com/sovera-dev/sovera-toolkit/releases/download/v0.1.4/pulse_0.1.4_windows_amd64.zip + InstallerSha256: 83c8ea2cef6f2a78abc79fc9d0a48617352f73039d4120927fd939c6c740b007 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sovera/Pulse/0.1.4/Sovera.Pulse.locale.en-US.yaml b/manifests/s/Sovera/Pulse/0.1.4/Sovera.Pulse.locale.en-US.yaml new file mode 100644 index 0000000000000..4b1f31dfe6b76 --- /dev/null +++ b/manifests/s/Sovera/Pulse/0.1.4/Sovera.Pulse.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: Sovera.Pulse +PackageVersion: 0.1.4 +PackageLocale: en-US +Publisher: Sovera +PackageName: Pulse +PackageUrl: https://github.com/sovera-dev/sovera-toolkit +License: MIT +ShortDescription: Pulse — Sovera Markdown↔Confluence sync CLI +Moniker: Pulse +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sovera/Pulse/0.1.4/Sovera.Pulse.yaml b/manifests/s/Sovera/Pulse/0.1.4/Sovera.Pulse.yaml new file mode 100644 index 0000000000000..6647ffad83db6 --- /dev/null +++ b/manifests/s/Sovera/Pulse/0.1.4/Sovera.Pulse.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: Sovera.Pulse +PackageVersion: 0.1.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sovera/Pulse/0.1.5/Sovera.Pulse.installer.yaml b/manifests/s/Sovera/Pulse/0.1.5/Sovera.Pulse.installer.yaml new file mode 100644 index 0000000000000..d0b90af003d75 --- /dev/null +++ b/manifests/s/Sovera/Pulse/0.1.5/Sovera.Pulse.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: Sovera.Pulse +PackageVersion: 0.1.5 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-07-13" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: pulse.exe + PortableCommandAlias: pulse + InstallerUrl: https://github.com/sovera-dev/sovera-toolkit/releases/download/v0.1.5/pulse_0.1.5_windows_amd64.zip + InstallerSha256: 9e1794673194214a17f764a48dcccd79ae586331f84627ae401e591139b9ece3 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: pulse.exe + PortableCommandAlias: pulse + InstallerUrl: https://github.com/sovera-dev/sovera-toolkit/releases/download/v0.1.5/pulse_0.1.5_windows_arm64.zip + InstallerSha256: aaf6a49f800dfd5d41153bda09e51057e3d0c185520a99c04b7b72cc00df42d8 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sovera/Pulse/0.1.5/Sovera.Pulse.locale.en-US.yaml b/manifests/s/Sovera/Pulse/0.1.5/Sovera.Pulse.locale.en-US.yaml new file mode 100644 index 0000000000000..9b84c82ad8ec2 --- /dev/null +++ b/manifests/s/Sovera/Pulse/0.1.5/Sovera.Pulse.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: Sovera.Pulse +PackageVersion: 0.1.5 +PackageLocale: en-US +Publisher: Sovera +PackageName: Pulse +PackageUrl: https://github.com/sovera-dev/sovera-toolkit +License: MIT +ShortDescription: Pulse — Sovera Markdown↔Confluence sync CLI +Moniker: Pulse +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sovera/Pulse/0.1.5/Sovera.Pulse.yaml b/manifests/s/Sovera/Pulse/0.1.5/Sovera.Pulse.yaml new file mode 100644 index 0000000000000..6e10ea82a3577 --- /dev/null +++ b/manifests/s/Sovera/Pulse/0.1.5/Sovera.Pulse.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: Sovera.Pulse +PackageVersion: 0.1.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sovera/Pulse/0.1.6/Sovera.Pulse.installer.yaml b/manifests/s/Sovera/Pulse/0.1.6/Sovera.Pulse.installer.yaml new file mode 100644 index 0000000000000..24b065e1b1b14 --- /dev/null +++ b/manifests/s/Sovera/Pulse/0.1.6/Sovera.Pulse.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: Sovera.Pulse +PackageVersion: 0.1.6 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-07-13" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: pulse.exe + PortableCommandAlias: pulse + InstallerUrl: https://github.com/sovera-dev/sovera-toolkit/releases/download/v0.1.6/pulse_0.1.6_windows_arm64.zip + InstallerSha256: f7a5e86f363684eeb42c16127a07c1c355d7ed24f836327b68d114d4744f3d7b + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: pulse.exe + PortableCommandAlias: pulse + InstallerUrl: https://github.com/sovera-dev/sovera-toolkit/releases/download/v0.1.6/pulse_0.1.6_windows_amd64.zip + InstallerSha256: 402e38271da016e17420f97804f664ce0c34b8db678c4fd53bb96e05bb365f23 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sovera/Pulse/0.1.6/Sovera.Pulse.locale.en-US.yaml b/manifests/s/Sovera/Pulse/0.1.6/Sovera.Pulse.locale.en-US.yaml new file mode 100644 index 0000000000000..94172afdba669 --- /dev/null +++ b/manifests/s/Sovera/Pulse/0.1.6/Sovera.Pulse.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: Sovera.Pulse +PackageVersion: 0.1.6 +PackageLocale: en-US +Publisher: Sovera +PackageName: Pulse +PackageUrl: https://github.com/sovera-dev/sovera-toolkit +License: MIT +ShortDescription: Pulse — Sovera Markdown↔Confluence sync CLI +Moniker: Pulse +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sovera/Pulse/0.1.6/Sovera.Pulse.yaml b/manifests/s/Sovera/Pulse/0.1.6/Sovera.Pulse.yaml new file mode 100644 index 0000000000000..0d63071934825 --- /dev/null +++ b/manifests/s/Sovera/Pulse/0.1.6/Sovera.Pulse.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: Sovera.Pulse +PackageVersion: 0.1.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/StruisICT/InLook/0.7.0/StruisICT.InLook.installer.yaml b/manifests/s/StruisICT/InLook/0.7.0/StruisICT.InLook.installer.yaml new file mode 100644 index 0000000000000..d7aa02b608ed3 --- /dev/null +++ b/manifests/s/StruisICT/InLook/0.7.0/StruisICT.InLook.installer.yaml @@ -0,0 +1,30 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: StruisICT.InLook +PackageVersion: 0.7.0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.EdgeWebView2Runtime + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{F45DC426-664A-4A85-BAB9-95788C72BF68}' +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- ProductCode: '{F45DC426-664A-4A85-BAB9-95788C72BF68}' + UpgradeCode: '{8E5A3C2B-1D4F-4E7A-9B6C-7D8E9F0A1B2C}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\InLook' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/StruisICT/InLook/releases/download/v0.7.0/inlook-0.7.0-x86_64.msi + InstallerSha256: D8D620825E62215BBE30A0DDF8C9400303DFD8047BC45EA657BD3A7AB608249C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/StruisICT/InLook/0.7.0/StruisICT.InLook.locale.en-US.yaml b/manifests/s/StruisICT/InLook/0.7.0/StruisICT.InLook.locale.en-US.yaml new file mode 100644 index 0000000000000..bc931a0c67dc5 --- /dev/null +++ b/manifests/s/StruisICT/InLook/0.7.0/StruisICT.InLook.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: StruisICT.InLook +PackageVersion: 0.7.0 +PackageLocale: en-US +Publisher: Struis ICT +PublisherUrl: https://struisict.com/ +PublisherSupportUrl: https://github.com/StruisICT/InLook/issues +Author: Struis ICT +PackageName: InLook +PackageUrl: https://github.com/StruisICT/InLook +License: MIT +LicenseUrl: https://github.com/StruisICT/InLook/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Struis ICT +ShortDescription: Fast, free .eml email viewer +Description: |- + InLook is a small, fast viewer for .eml email files (the standard RFC 822 + / MIME format used by Outlook, Thunderbird, and most other mail clients + when saving a single message to disk). It renders headers, body (HTML or + plain text), and attachments, with embedded HTML sandboxed under a strict + Content Security Policy — no remote loads, no tracking pixels. Follows + the system light/dark theme, registers as the default .eml handler, and + never touches the network. Free Software from Struis ICT. +Moniker: inlook +Tags: +- email +- eml +- mail +- message +- viewer +ReleaseNotes: |- + 0.7.0 (2026-07-14) + Features + - default .eml-app prompt, WebView2 data-folder fix, and new icon (#43) (ac6d904) +ReleaseNotesUrl: https://github.com/StruisICT/InLook/releases/tag/v0.7.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/StruisICT/InLook/0.7.0/StruisICT.InLook.yaml b/manifests/s/StruisICT/InLook/0.7.0/StruisICT.InLook.yaml new file mode 100644 index 0000000000000..dfbbe9d111a79 --- /dev/null +++ b/manifests/s/StruisICT/InLook/0.7.0/StruisICT.InLook.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: StruisICT.InLook +PackageVersion: 0.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/Superhuman/Superhuman/1041.0.18/Superhuman.Superhuman.installer.yaml b/manifests/s/Superhuman/Superhuman/1041.0.18/Superhuman.Superhuman.installer.yaml new file mode 100644 index 0000000000000..f78a669e8306f --- /dev/null +++ b/manifests/s/Superhuman/Superhuman/1041.0.18/Superhuman.Superhuman.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Superhuman.Superhuman +PackageVersion: 1041.0.18 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- mailto +- superhuman +ProductCode: 49b7df64-6557-59ab-9b2b-f97a2de29e77 +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://download.superhuman.com/native-update/Superhuman%20Setup%201041.0.18-latest.exe + InstallerSha256: C8E5016BC402EFD0C66C2CBAE6068D6573C19076C28A41EBDC7BE0B15AD71730 +- Architecture: arm64 + InstallerUrl: https://download.superhuman.com/native-update/Superhuman%20Setup%201041.0.18-latest.exe + InstallerSha256: C8E5016BC402EFD0C66C2CBAE6068D6573C19076C28A41EBDC7BE0B15AD71730 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Superhuman/Superhuman/1041.0.18/Superhuman.Superhuman.locale.en-US.yaml b/manifests/s/Superhuman/Superhuman/1041.0.18/Superhuman.Superhuman.locale.en-US.yaml new file mode 100644 index 0000000000000..5a111fb0465b1 --- /dev/null +++ b/manifests/s/Superhuman/Superhuman/1041.0.18/Superhuman.Superhuman.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Superhuman.Superhuman +PackageVersion: 1041.0.18 +PackageLocale: en-US +Publisher: Superhuman Labs, LLC +PublisherUrl: https://superhuman.com/ +PublisherSupportUrl: https://help.superhuman.com/ +PrivacyUrl: https://superhuman.com/privacy +Author: Superhuman Labs, LLC +PackageName: Superhuman +PackageUrl: https://superhuman.com/download +License: Proprietary +LicenseUrl: https://superhuman.com/terms +Copyright: Copyright © 2026 Superhuman Labs, LLC +CopyrightUrl: https://superhuman.com/terms +ShortDescription: The most productive email app ever made. +Description: |- + Superhuman is an AI-native email platform designed to dramatically boost productivity and responsiveness. Built for professionals who live in their inbox, it transforms traditional email workflows with speed, intelligence, and precision. + Key Features + - ⚡ Speed & Efficiency: Navigate and manage emails twice as fast using intuitive keyboard shortcuts and streamlined UI. + - 🤖 AI-Powered Tools: + - Instant Reply: Drafts smart responses in seconds + - Send Later: Schedule emails for optimal timing + - Snooze: Delay non-urgent messages + - Social Insights: Contextual data to improve communication + - 📬 Inbox Mastery: + - Achieve Inbox Zero effortlessly + - Unsubscribe and clear spam instantly + - Organize with precision across Gmail and Outlook + - 👥 Collaboration-Ready: + - Built for teams—onboarding is seamless + - Enhances responsiveness across departments like Sales, Product, and Engineering +Tags: +- email +- mail +PurchaseUrl: https://superhuman.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Superhuman/Superhuman/1041.0.18/Superhuman.Superhuman.locale.zh-CN.yaml b/manifests/s/Superhuman/Superhuman/1041.0.18/Superhuman.Superhuman.locale.zh-CN.yaml new file mode 100644 index 0000000000000..90e4a91464046 --- /dev/null +++ b/manifests/s/Superhuman/Superhuman/1041.0.18/Superhuman.Superhuman.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Superhuman.Superhuman +PackageVersion: 1041.0.18 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 有史以来最高效的电子邮件应用。 +Description: |- + Superhuman 是一个原生集成人工智能的邮件平台,旨在显著提升工作效率和响应速度。专为那些高度依赖收件箱的专业人士打造,它以更快的速度、智能化和精准性彻底革新传统的邮件处理流程。 + 主要功能 + - ⚡ 速度与效率:通过直观的键盘快捷键和简化的用户界面,以两倍速度浏览和管理邮件。 + - 🤖 人工智能工具: + - 快速回复:几秒钟内生成智能回复草稿 + - 定时发送:按最佳时机安排邮件发送 + - 稍后提醒:延迟处理非紧急消息 + - 社交洞察:提供上下文数据以优化沟通效果 + - 📬 收件箱掌控: + - 轻松实现“收件箱归零” + - 一键退订并清除垃圾邮件 + - 在 Gmail 和 Outlook 之间精准组织管理 + - 👥 协作就绪: + - 专为团队设计,上手无缝流畅 + - 提升销售、产品、工程等部门的整体响应效率 +Tags: +- 电子邮件 +- 邮件 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Superhuman/Superhuman/1041.0.18/Superhuman.Superhuman.yaml b/manifests/s/Superhuman/Superhuman/1041.0.18/Superhuman.Superhuman.yaml new file mode 100644 index 0000000000000..e72672a8fb705 --- /dev/null +++ b/manifests/s/Superhuman/Superhuman/1041.0.18/Superhuman.Superhuman.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Superhuman.Superhuman +PackageVersion: 1041.0.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/skim-rs/skim/4.10.0/skim-rs.skim.installer.yaml b/manifests/s/skim-rs/skim/4.10.0/skim-rs.skim.installer.yaml new file mode 100644 index 0000000000000..d30085ce91e33 --- /dev/null +++ b/manifests/s/skim-rs/skim/4.10.0/skim-rs.skim.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: skim-rs.skim +PackageVersion: 4.10.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: sk.exe + PortableCommandAlias: sk +Commands: +- sk +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/skim-rs/skim/releases/download/v4.10.0/skim-x86_64-pc-windows-msvc.zip + InstallerSha256: FC68C1E76D45160D232A92B861502DC1706D0BF903F4AA69744CCDE3CF300B9A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/skim-rs/skim/4.10.0/skim-rs.skim.locale.en-US.yaml b/manifests/s/skim-rs/skim/4.10.0/skim-rs.skim.locale.en-US.yaml new file mode 100644 index 0000000000000..790adf49792ac --- /dev/null +++ b/manifests/s/skim-rs/skim/4.10.0/skim-rs.skim.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: skim-rs.skim +PackageVersion: 4.10.0 +PackageLocale: en-US +Publisher: skim-rs +Author: Loric ANDRE and contributors +PackageName: skim +PackageUrl: https://github.com/skim-rs/skim +License: MIT +LicenseUrl: https://github.com/skim-rs/skim/blob/v4.10.0/LICENSE +ShortDescription: A fast fuzzy finder for the command line written in Rust. +Moniker: skim +Tags: +- cli +- developer-tools +- fuzzy-finder +- search +- terminal +ReleaseNotesUrl: https://github.com/skim-rs/skim/releases/tag/v4.10.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/skim-rs/skim/4.10.0/skim-rs.skim.yaml b/manifests/s/skim-rs/skim/4.10.0/skim-rs.skim.yaml new file mode 100644 index 0000000000000..db03f9666029d --- /dev/null +++ b/manifests/s/skim-rs/skim/4.10.0/skim-rs.skim.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: skim-rs.skim +PackageVersion: 4.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.installer.yaml b/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.installer.yaml new file mode 100644 index 0000000000000..6c8ce898b89f9 --- /dev/null +++ b/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.installer.yaml @@ -0,0 +1,33 @@ +# This file was generated by anodizer (https://github.com/tj-smith47/anodizer). DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: TJSmith.Anodizer +PackageVersion: 0.20.0 +InstallerLocale: en-US +InstallerType: zip +ProductCode: '{049C02AE-5E20-5C64-8981-4F1A3A52BD22}' +Installers: +- Architecture: arm64 + InstallerUrl: https://github.com/tj-smith47/anodizer/releases/download/v0.20.0/anodizer-0.20.0-windows-arm64.zip + InstallerSha256: ef9bd215cb266b34b7f948297d447a381f7d85b015848d298df45fd78a0cc7db + UpgradeBehavior: install + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: anodizer.exe + PortableCommandAlias: anodizer + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +- Architecture: x64 + InstallerUrl: https://github.com/tj-smith47/anodizer/releases/download/v0.20.0/anodizer-0.20.0-windows-amd64.zip + InstallerSha256: 599f8339ebad9d0205a860f793a41d3be67ec15e6d919f60d0197ea1792929ef + UpgradeBehavior: install + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: anodizer.exe + PortableCommandAlias: anodizer + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-07-14 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.locale.en-US.yaml b/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.locale.en-US.yaml new file mode 100644 index 0000000000000..5b433c80e9f17 --- /dev/null +++ b/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.locale.en-US.yaml @@ -0,0 +1,30 @@ +# This file was generated by anodizer (https://github.com/tj-smith47/anodizer). DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: TJSmith.Anodizer +PackageVersion: 0.20.0 +PackageLocale: en-US +Publisher: TJ Smith +PublisherUrl: https://github.com/tj-smith47 +PublisherSupportUrl: https://github.com/tj-smith47/anodizer/issues +Author: TJ Smith +PackageName: anodizer +PackageUrl: https://github.com/tj-smith47/anodizer +License: MIT OR Apache-2.0 +Copyright: Copyright © 2026 TJ Smith +ShortDescription: Rust-native release automation +Description: A Rust-native release automation tool +Moniker: anodizer +Tags: +- release +- automation +- rust +ReleaseNotes: See release-notes URL for the full changelog. +ReleaseNotesUrl: https://github.com/tj-smith47/anodizer/releases/tag/v0.20.0 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://tj-smith47.github.io/anodizer +- DocumentLabel: Source + DocumentUrl: https://github.com/tj-smith47/anodizer +InstallationNotes: Run `anodizer --help` after installation. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.yaml b/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.yaml new file mode 100644 index 0000000000000..fcaf12059fccd --- /dev/null +++ b/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.yaml @@ -0,0 +1,7 @@ +# This file was generated by anodizer (https://github.com/tj-smith47/anodizer). DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: TJSmith.Anodizer +PackageVersion: 0.20.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/TP202610017/isw/0.2.3/TP202610017.isw.installer.yaml b/manifests/t/TP202610017/isw/0.2.3/TP202610017.isw.installer.yaml new file mode 100644 index 0000000000000..75f4d61d86565 --- /dev/null +++ b/manifests/t/TP202610017/isw/0.2.3/TP202610017.isw.installer.yaml @@ -0,0 +1,17 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: TP202610017.isw +PackageVersion: 0.2.3 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: isw.exe + PortableCommandAlias: isw +ReleaseDate: 2026-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/TP202610017/framework-llm-releases/releases/download/v0.2.3/isw_v0.2.3_windows_x86_64.zip + InstallerSha256: 8B7783CE066C4B89A108F95EA34932EE0A64C4501EE4A365E1FDF49EFFEB8EAE +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/t/TP202610017/isw/0.2.3/TP202610017.isw.locale.en-US.yaml b/manifests/t/TP202610017/isw/0.2.3/TP202610017.isw.locale.en-US.yaml new file mode 100644 index 0000000000000..26f1c48a443ed --- /dev/null +++ b/manifests/t/TP202610017/isw/0.2.3/TP202610017.isw.locale.en-US.yaml @@ -0,0 +1,27 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: TP202610017.isw +PackageVersion: 0.2.3 +PackageLocale: en-US +Publisher: TP202610017 +PublisherUrl: https://github.com/TP202610017 +PackageName: isw +PackageUrl: https://github.com/TP202610017/framework-llm-releases +License: Proprietary +Copyright: Copyright (c) 2026 TP202610017 +ShortDescription: Energy-aware code analysis and optimization CLI. +Description: |- + isw is an energy-aware code analysis and optimization command-line tool. It + scans a project, detects hotspots, and can optimize code (optionally with an + LLM agent) to reduce estimated energy and performance cost. Distributed as a + single self-contained binary. +Moniker: isw +Tags: +- cli +- code-analysis +- developer-tools +- optimization +- energy +ReleaseNotesUrl: https://github.com/TP202610017/framework-llm-releases/releases/tag/v0.2.3 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/t/TP202610017/isw/0.2.3/TP202610017.isw.yaml b/manifests/t/TP202610017/isw/0.2.3/TP202610017.isw.yaml new file mode 100644 index 0000000000000..32b1e065e354e --- /dev/null +++ b/manifests/t/TP202610017/isw/0.2.3/TP202610017.isw.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: TP202610017.isw +PackageVersion: 0.2.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.installer.yaml b/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.installer.yaml new file mode 100644 index 0000000000000..d7d7693bbe66d --- /dev/null +++ b/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: TragicCode.BuslyCLI +PackageVersion: 0.64.19 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: busly.exe +ReleaseDate: 2026-07-14 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/TraGicCode/busly-cli/releases/download/v0.64.19/busly-cli-v0.64.19-win-x64.zip + InstallerSha256: 36E35F20F6B4DD5531F09E83256C90DC45784CC7CC959732CC15507E4B6658EF +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.locale.en-US.yaml b/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..84695a9c3c6e1 --- /dev/null +++ b/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: TragicCode.BuslyCLI +PackageVersion: 0.64.19 +PackageLocale: en-US +Publisher: TragicCode +PublisherUrl: https://github.com/TraGicCode +PublisherSupportUrl: https://github.com/TraGicCode/busly-cli/issues +PackageName: Busly CLI +PackageUrl: https://github.com/TraGicCode/busly-cli +License: Apache-2.0 +LicenseUrl: https://github.com/TraGicCode/busly-cli/blob/HEAD/LICENSE +ShortDescription: The Unofficial CLI for NServiceBus +Tags: +- nservicebus +ReleaseNotes: |- + Changelog + All notable changes to this project will be documented in this file. + The format is based on Keep a Changelog and this project adheres to Semantic Versioning. + v0.64.19 - 2026-07-14 + Full Changelog + Fixed + - Bug/fix docker build not getting directory packages props #446 (TraGicCode) +ReleaseNotesUrl: https://github.com/TraGicCode/busly-cli/releases/tag/v0.64.19 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.yaml b/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.yaml new file mode 100644 index 0000000000000..bae16fb074361 --- /dev/null +++ b/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: TragicCode.BuslyCLI +PackageVersion: 0.64.19 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/v/v2matosevic/WinSnipper/0.5.1/v2matosevic.WinSnipper.installer.yaml b/manifests/v/v2matosevic/WinSnipper/0.5.1/v2matosevic.WinSnipper.installer.yaml new file mode 100644 index 0000000000000..d86ae98d209ca --- /dev/null +++ b/manifests/v/v2matosevic/WinSnipper/0.5.1/v2matosevic.WinSnipper.installer.yaml @@ -0,0 +1,18 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: v2matosevic.WinSnipper +PackageVersion: 0.5.1 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: portable +Commands: +- winsnipper +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/v2matosevic/WinSnipper/releases/download/v0.5.1/WinSnipper.exe + InstallerSha256: B317D1A10EF8922C888F0446FF7EFC9BA474CB05553FE1EF69D131F5E66B24E9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/v2matosevic/WinSnipper/0.5.1/v2matosevic.WinSnipper.locale.en-US.yaml b/manifests/v/v2matosevic/WinSnipper/0.5.1/v2matosevic.WinSnipper.locale.en-US.yaml new file mode 100644 index 0000000000000..8bf6df661d6fd --- /dev/null +++ b/manifests/v/v2matosevic/WinSnipper/0.5.1/v2matosevic.WinSnipper.locale.en-US.yaml @@ -0,0 +1,34 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: v2matosevic.WinSnipper +PackageVersion: 0.5.1 +PackageLocale: en-US +Publisher: Marko Matošević +PublisherUrl: https://github.com/v2matosevic +PublisherSupportUrl: https://github.com/v2matosevic/WinSnipper/issues +PackageName: WinSnipper +PackageUrl: https://github.com/v2matosevic/WinSnipper +License: MIT +LicenseUrl: https://github.com/v2matosevic/WinSnipper/blob/master/LICENSE +ShortDescription: Ultra-lightweight Win+Shift+S replacement - snip, floating thumbnail, annotate, paste. +Description: |- + WinSnipper replaces the built-in Windows snip with a faster flow: press the + hotkey, drag a region, and the snip is saved, copied to the clipboard, and + pinned as a small floating thumbnail. Click the thumbnail to annotate + (rectangle, freehand, ellipse, arrow, text, numbered step badges, + redact/pixelate, crop) or drag it straight into any app as a file. + No confirmation dialogs anywhere - closing the editor saves silently and + refreshes the clipboard. Built for fast feedback loops, especially pasting + annotated screenshots into AI coding chats. +Moniker: winsnipper +Tags: +- annotation +- capture +- ocr +- productivity +- screen-capture +- screenshot +- snip +- snipping-tool +ReleaseNotesUrl: https://github.com/v2matosevic/WinSnipper/releases/tag/v0.5.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/v2matosevic/WinSnipper/0.5.1/v2matosevic.WinSnipper.yaml b/manifests/v/v2matosevic/WinSnipper/0.5.1/v2matosevic.WinSnipper.yaml new file mode 100644 index 0000000000000..0cd0f6267ed4f --- /dev/null +++ b/manifests/v/v2matosevic/WinSnipper/0.5.1/v2matosevic.WinSnipper.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: v2matosevic.WinSnipper +PackageVersion: 0.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.installer.yaml b/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.installer.yaml new file mode 100644 index 0000000000000..00f137d50edcb --- /dev/null +++ b/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.installer.yaml @@ -0,0 +1,44 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: voidtools.Everything.Beta +PackageVersion: 1.5.0.1416b +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S +UpgradeBehavior: install +FileExtensions: +- efu +ReleaseDate: 2026-07-02 +Installers: +- Architecture: x86 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Everything.exe + PortableCommandAlias: everything + InstallerUrl: https://www.voidtools.com/Everything-1.5.0.1416b.x86.zip + InstallerSha256: E1590E8757C7D0E526183CFD50BBE5919C6D1F64534BEB63C2161821B79B7CD3 +- Architecture: x86 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://www.voidtools.com/Everything-1.5.0.1416b.x86-Setup.exe + InstallerSha256: BF1CB13A43A7F2CA9E546F4D5010E9CC726E1A132B87E09976F6BB638B03A3A4 +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Everything.exe + PortableCommandAlias: everything + InstallerUrl: https://www.voidtools.com/Everything-1.5.0.1416b.x64.zip + InstallerSha256: CC73C08C3F5C22140B93DF1FB5A0CE9CEE7664A1CF50150FD70C89C2AA084B34 +- Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://www.voidtools.com/Everything-1.5.0.1416b.x64-Setup.exe + InstallerSha256: 25A896740360DFF86815B09CBA9E5C74AC0EEC96ABCE81AD99828B77A86E921D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.locale.en-US.yaml b/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..99c1d86ae879f --- /dev/null +++ b/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: voidtools.Everything.Beta +PackageVersion: 1.5.0.1416b +PackageLocale: en-US +Publisher: voidtools +PublisherUrl: https://www.voidtools.com/ +PublisherSupportUrl: https://www.voidtools.com/support/everything/ +PrivacyUrl: https://www.voidtools.com/privacy +Author: David Carpenter +PackageName: Everything (Beta) +PackageUrl: https://www.voidtools.com/forum/viewtopic.php?f=12&t=9787 +License: MIT +LicenseUrl: https://www.voidtools.com/License.txt +Copyright: Copyright (C) 2018 David Carpenter +CopyrightUrl: https://www.voidtools.com/License.txt +ShortDescription: Locate files and folders by name instantly. +Description: | + Everything is search engine that locates files and folders by filename instantly for Windows. + Unlike Windows search Everything initially displays every file and folder on your computer (hence the name Everything). You type in a search filter to limit what files and folders are displayed. +Moniker: everything-beta +Tags: +- beta +- directory +- etpserver +- file +- file-search +- filesearch +- filesystem +- find +- folder +- ftpserver +- httpserver +- indexing +- search +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.yaml b/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.yaml new file mode 100644 index 0000000000000..e83842eeb83bf --- /dev/null +++ b/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: voidtools.Everything.Beta +PackageVersion: 1.5.0.1416b +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.installer.yaml b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.installer.yaml new file mode 100644 index 0000000000000..fcf0c5e4d0577 --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.installer.yaml @@ -0,0 +1,79 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: WXRIW.Lyricify +PackageVersion: 4.3.52 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /exenoui /quiet /norestart + SilentWithProgress: /exenoui /passive /norestart + InstallLocation: APPDIR="" + Log: /log "" +ExpectedReturnCodes: +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +- InstallerReturnCode: 1654 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1650 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1649 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1644 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1643 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1640 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 1639 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 1633 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1628 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1625 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1623 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress +- InstallerReturnCode: 1602 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1601 + ReturnResponse: contactSupport +- InstallerReturnCode: 87 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1 + ReturnResponse: invalidParameter +- InstallerReturnCode: -1 + ReturnResponse: cancelledByUser +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.6 +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- UpgradeCode: '{CA8FC4DE-6BEC-4C25-BD21-AD316980A6EF}' + InstallerType: msi +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/WXRIW/Lyricify-App/releases/download/v4.3.52/Lyricify.Setup.Ver.4.3.52.260715-release.x86.exe + InstallerSha256: C508F6C59BC5C8EFC92EB1B2E0B000CD06A26AFCEBC852185753A3E1B9A32209 + ProductCode: '{2FB0586B-F42A-4CA8-AE6A-7140C5CCA862}' +- Architecture: x64 + InstallerUrl: https://github.com/WXRIW/Lyricify-App/releases/download/v4.3.52/Lyricify.Setup.Ver.4.3.52.260715-release.x64.exe + InstallerSha256: 40A2112AEE7E0B26144F01A9E263E03B5F469DCF2932463120B1BB45BB3DC7B2 + ProductCode: '{39631AB1-D08D-4B1F-BD95-880B8A13C2C0}' +- Architecture: arm64 + InstallerUrl: https://github.com/WXRIW/Lyricify-App/releases/download/v4.3.52/Lyricify.Setup.Ver.4.3.52.260715-release.Arm64.exe + InstallerSha256: F51DD32340E94F0FF93EE33544782F92CAA1C6D3CD153FB8DE4834596505F213 + ProductCode: '{2E1D949D-EFEB-4F09-9A33-701389F01687}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.locale.en-US.yaml b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.locale.en-US.yaml new file mode 100644 index 0000000000000..a9d5e43e676fa --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: WXRIW.Lyricify +PackageVersion: 4.3.52 +PackageLocale: en-US +Publisher: WXRIW +PublisherUrl: https://github.com/WXRIW +PublisherSupportUrl: https://github.com/WXRIW/Lyricify-App/issues +PackageName: Lyricify +PackageUrl: https://lyricify.app/ +License: Freeware +Copyright: Copyright © 2026 WXRIW +ShortDescription: A fantastic app to provide scroll lyrics for Spotify and other apps +Tags: +- lyrics +- music +- spotify +ReleaseNotes: |- + 1. [Fix] Optimize Taskbar Lyrics loading. + 2. [Fix] Apple Music Lyrics animation stutter after track change. + 3. [Fix] Optimize the Taskbar Lyrics logo size when small taskbar buttons are enabled. + 4. [Fix] Apple Music Lyrics being clipped when scaled. + 5. [Fix] Handle Spotify refresh token expiration. + 6. [Fix] Romaji display in Taskbar Lyrics. + 7. [Fix] QRC decryption issue in some cases. +ReleaseNotesUrl: https://github.com/WXRIW/Lyricify-App/releases/tag/v4.3.52 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.locale.zh-CN.yaml b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2001e191b9bc8 --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.locale.zh-CN.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: WXRIW.Lyricify +PackageVersion: 4.3.52 +PackageLocale: zh-CN +License: 免费软件 +Copyright: 版权所有 © 2026 WXRIW +ShortDescription: 一款为 Spotify 等各种应用提供滚动歌词的软件 +Tags: +- spotify +- 歌词 +- 音乐 +ReleaseNotes: |- + 1. 优化任务栏歌词加载。 + 2. 修复 Apple Music 歌词切歌后动画卡顿的问题。 + 3. 优化启用小任务栏按钮时任务栏歌词 Logo 大小。 + 4. 修复 Apple Music 歌词缩放时被裁切。 + 5. 处理 Spotify Refresh Token 六个月强制过期的问题。 + 6. 修复任务栏歌词中的罗马音显示。 + 7. 修复部分情况下 QRC 解密问题。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.yaml b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.yaml new file mode 100644 index 0000000000000..4198e88d888bf --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: WXRIW.Lyricify +PackageVersion: 4.3.52 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.installer.yaml b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.installer.yaml new file mode 100644 index 0000000000000..b5abd399d5385 --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.installer.yaml @@ -0,0 +1,79 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: WXRIW.Lyricify.Lite +PackageVersion: 1.2.5 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /exenoui /quiet /norestart + SilentWithProgress: /exenoui /passive /norestart + InstallLocation: APPDIR="" + Log: /log "" +ExpectedReturnCodes: +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +- InstallerReturnCode: 1654 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1650 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1649 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1644 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1643 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1640 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 1639 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 1633 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1628 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1625 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1623 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress +- InstallerReturnCode: 1602 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1601 + ReturnResponse: contactSupport +- InstallerReturnCode: 87 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1 + ReturnResponse: invalidParameter +- InstallerReturnCode: -1 + ReturnResponse: cancelledByUser +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- UpgradeCode: '{CE507D23-ADD8-4A46-BD74-4A30BC85FED9}' + InstallerType: msi +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/WXRIW/Lyricify-App/releases/download/lite-v1.2.5/Lyricify.Lite.Setup.Ver.1.2.5.260715-release.x86.exe + InstallerSha256: A377DC0BB6DD1BD5E5EE2BBD5BE191218C6891FE1FDB8B0FBB1CC392F7860570 + ProductCode: '{A2EB501F-927B-4FCC-9A82-5B671DCEA444}' +- Architecture: x64 + InstallerUrl: https://github.com/WXRIW/Lyricify-App/releases/download/lite-v1.2.5/Lyricify.Lite.Setup.Ver.1.2.5.260715-release.x64.exe + InstallerSha256: E02E77B26F34D3D7C9D456C2EAE0D62ED5986F2E3068C061B274135AB309860A + ProductCode: '{E9A31849-25FE-4A4C-9355-E95356DB7F75}' +- Architecture: arm64 + InstallerUrl: https://github.com/WXRIW/Lyricify-App/releases/download/lite-v1.2.5/Lyricify.Lite.Setup.Ver.1.2.5.260715-release.Arm64.exe + InstallerSha256: F14CBC77F4C4441DF0B6A095ADC395A53CECF3129F3BFD5C2F624A7BD9F3C3F7 + ProductCode: '{F56F1FFD-103F-4228-8919-23F9C3DB953F}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.locale.en-US.yaml b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.locale.en-US.yaml new file mode 100644 index 0000000000000..164cc6f5c77c5 --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: WXRIW.Lyricify.Lite +PackageVersion: 1.2.5 +PackageLocale: en-US +Publisher: WXRIW +PublisherUrl: https://github.com/WXRIW +PublisherSupportUrl: https://github.com/WXRIW/Lyricify-App/issues +PackageName: Lyricify Lite +PackageUrl: https://lyricify.app/ +License: Freeware +Copyright: Copyright © 2026 WXRIW +ShortDescription: A fantastic app to provide scroll lyrics for Spotify and other apps +Tags: +- apple-music +- lyrics +- music +- netease-cloudmusic +- qq-music +- spotify +ReleaseNotes: |- + 1. [Fix] Optimize the Taskbar Lyrics logo size when small taskbar buttons are enabled. + 2. [Fix] Apple Music Lyrics being clipped when scaled. + 3. [Add] Discord RPC support. + 4. [Fix] Improve SMTC compatibility with QQ Music UWP. + 5. [Fix] Romaji display in Taskbar Lyrics. + 6. [Fix] QQ Music word-by-word lyrics fallback to line-synced lyrics and QRC decryption issue in some cases. +ReleaseNotesUrl: https://github.com/WXRIW/Lyricify-App/releases/tag/lite-v1.2.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.locale.zh-CN.yaml b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cd0a566ce49b4 --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: WXRIW.Lyricify.Lite +PackageVersion: 1.2.5 +PackageLocale: zh-CN +License: 免费软件 +Copyright: 版权所有 © 2026 WXRIW +ShortDescription: 一款为 Spotify 等各种应用提供滚动歌词的软件 +Tags: +- apple-music +- qq音乐 +- spotify +- 歌词 +- 网易云音乐 +- 音乐 +ReleaseNotes: |- + 1. 优化启用小任务栏按钮时任务栏歌词 Logo 大小。 + 2. 修复 Apple Music 歌词在缩放时被裁切的问题。 + 3. 添加 Discord RPC 支持。 + 4. 改进 QQ 音乐 UWP 的 SMTC 兼容性。 + 5. 修复任务栏歌词中的罗马音显示。 + 6. 修复 QQ 音乐逐字歌词回落至逐行歌词以及部分情况下的 QRC 解密问题。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.yaml b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.yaml new file mode 100644 index 0000000000000..411edba3f7118 --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: WXRIW.Lyricify.Lite +PackageVersion: 1.2.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/wenshui330/jy-draftc/0.1.1/wenshui330.jy-draftc.installer.yaml b/manifests/w/wenshui330/jy-draftc/0.1.1/wenshui330.jy-draftc.installer.yaml new file mode 100644 index 0000000000000..293d4aa3facf5 --- /dev/null +++ b/manifests/w/wenshui330/jy-draftc/0.1.1/wenshui330.jy-draftc.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: wenshui330.jy-draftc +PackageVersion: 0.1.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: jy-draftc-amd64-windows\jy-draftc.exe +Commands: +- jy-draftc +ReleaseDate: 2026-06-05 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/wenshui330/jy-draftc/releases/download/v0.1.1/jy-draftc-amd64-windows.zip + InstallerSha256: 63546A8F6013E860E825954FDF755A29751963CD56ECA8F83E26771485C53DBA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/wenshui330/jy-draftc/0.1.1/wenshui330.jy-draftc.locale.en-US.yaml b/manifests/w/wenshui330/jy-draftc/0.1.1/wenshui330.jy-draftc.locale.en-US.yaml new file mode 100644 index 0000000000000..8c3bb991e48bc --- /dev/null +++ b/manifests/w/wenshui330/jy-draftc/0.1.1/wenshui330.jy-draftc.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: wenshui330.jy-draftc +PackageVersion: 0.1.1 +PackageLocale: en-US +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: A tool for decrypting and re-encrypting Jianying Windows draft files. +Description: jy-draftc is a decryption and re-encryption tool for Jianying (CapCut) Windows draft JSON files. It can decrypt draft_content.json and draft_meta_info.json within a draft into plain text JSON, and re-encrypt them after modifications have been made. +# Moniker: +Tags: +- capcut +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/wenshui330/jy-draftc/0.1.1/wenshui330.jy-draftc.locale.zh-CN.yaml b/manifests/w/wenshui330/jy-draftc/0.1.1/wenshui330.jy-draftc.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5129cdce12d71 --- /dev/null +++ b/manifests/w/wenshui330/jy-draftc/0.1.1/wenshui330.jy-draftc.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: wenshui330.jy-draftc +PackageVersion: 0.1.1 +PackageLocale: zh-CN +Publisher: 问水 +PublisherUrl: https://github.com/wenshui330 +PublisherSupportUrl: https://github.com/wenshui330/jy-draftc/issues +# PrivacyUrl: +# Author: +PackageName: jy-draftc +PackageUrl: https://github.com/wenshui330/jy-draftc +License: MIT +LicenseUrl: https://github.com/wenshui330/jy-draftc/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 wenshui330 +# CopyrightUrl: +ShortDescription: 剪映 Windows 端的草稿解密与回加密工具。 +Description: jy-draftc 是一个用于剪映 Windows 端草稿 JSON 的解密和回加密工具。它能将草稿内的 draft_content.json 和 draft_meta_info.json 解密为明文json,并能在修改后回加密。 +# Moniker: +Tags: +- 剪映 +ReleaseNotes: |- + 修复了 .env 带 UTF-8 BOM 时 JY_INSTALL_DIR 解析失败、DLL 加载覆盖原 PATH 和相对路径受剪映目录切换影响导致看不到输出文件的问题。 + 添加了--debug参数以供调试分析。 +ReleaseNotesUrl: https://github.com/wenshui330/jy-draftc/releases/tag/v0.1.1 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/wenshui330/jy-draftc/0.1.1/wenshui330.jy-draftc.yaml b/manifests/w/wenshui330/jy-draftc/0.1.1/wenshui330.jy-draftc.yaml new file mode 100644 index 0000000000000..0d3fa107aaaf8 --- /dev/null +++ b/manifests/w/wenshui330/jy-draftc/0.1.1/wenshui330.jy-draftc.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: wenshui330.jy-draftc +PackageVersion: 0.1.1 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/willibrandon/scout/0.4.5/willibrandon.scout.installer.yaml b/manifests/w/willibrandon/scout/0.4.5/willibrandon.scout.installer.yaml new file mode 100644 index 0000000000000..1c87f03a30a40 --- /dev/null +++ b/manifests/w/willibrandon/scout/0.4.5/willibrandon.scout.installer.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +PackageIdentifier: willibrandon.scout +PackageVersion: 0.4.5 +Platform: + - Windows.Desktop +MinimumOSVersion: 10.0.18362.0 +InstallerType: msi +Scope: machine +InstallModes: + - interactive + - silent + - silentWithProgress +UpgradeBehavior: install +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/willibrandon/scout/releases/download/v0.4.5/scout-win-x64.msi + InstallerSha256: FAEB83325AF506DBDBD423DF7C1281456150ED2A82C36BD7A606F83041045EB4 + ProductCode: "{1FA1837C-95D4-49FD-816A-2E3FDFF2BE3D}" + - Architecture: arm64 + InstallerUrl: https://github.com/willibrandon/scout/releases/download/v0.4.5/scout-win-arm64.msi + InstallerSha256: 809EE07087950D85DC1D7C9FB8B2CB75D979A654DEE74A39B78CDB0EDA417AB3 + ProductCode: "{BA7E051E-F7F4-440B-A4D4-688957DC18A8}" +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/w/willibrandon/scout/0.4.5/willibrandon.scout.locale.en-US.yaml b/manifests/w/willibrandon/scout/0.4.5/willibrandon.scout.locale.en-US.yaml new file mode 100644 index 0000000000000..989451d8bdbb6 --- /dev/null +++ b/manifests/w/willibrandon/scout/0.4.5/willibrandon.scout.locale.en-US.yaml @@ -0,0 +1,26 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +PackageIdentifier: willibrandon.scout +PackageVersion: 0.4.5 +PackageLocale: en-US +Publisher: willibrandon +PublisherUrl: https://github.com/willibrandon +PackageName: scout +PackageUrl: https://github.com/willibrandon/scout +License: MIT +LicenseUrl: https://github.com/willibrandon/scout/blob/main/LICENSE +ShortDescription: Feature-complete port of ripgrep to .NET Native AOT +Description: |- + Scout recursively searches directory trees for regex patterns while respecting + gitignore rules, hidden-file defaults, binary-file handling, and ripgrep-style + output. It is a native .NET AOT implementation with statically linked PCRE2. +Tags: + - ripgrep + - grep + - search + - regex + - cli + - dotnet + - nativeaot + - pcre2 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/w/willibrandon/scout/0.4.5/willibrandon.scout.yaml b/manifests/w/willibrandon/scout/0.4.5/willibrandon.scout.yaml new file mode 100644 index 0000000000000..76da7cbef2d72 --- /dev/null +++ b/manifests/w/willibrandon/scout/0.4.5/willibrandon.scout.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +PackageIdentifier: willibrandon.scout +PackageVersion: 0.4.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.installer.yaml b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.installer.yaml new file mode 100644 index 0000000000000..9d2076074922b --- /dev/null +++ b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: XinTaoFei.Codeg +PackageVersion: 0.20.3 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: codeg +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/xintaofei/codeg/releases/download/v0.20.3/codeg_0.20.3_x64-setup.exe + InstallerSha256: 999B6868758C7090D1A9A3CB5C72F683D2F6DB02D5D73998F1768F343B8B91F6 +- Architecture: arm64 + InstallerUrl: https://github.com/xintaofei/codeg/releases/download/v0.20.3/codeg_0.20.3_arm64-setup.exe + InstallerSha256: DA8386C87A5CBA975022DE74122687446547AAFBA3633A085962D44F09F07C42 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.locale.en-US.yaml b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.locale.en-US.yaml new file mode 100644 index 0000000000000..873078e5180e8 --- /dev/null +++ b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: XinTaoFei.Codeg +PackageVersion: 0.20.3 +PackageLocale: en-US +Publisher: codeg +PublisherUrl: https://github.com/xintaofei +PublisherSupportUrl: https://github.com/xintaofei/codeg/issues +PackageName: codeg +PackageUrl: https://github.com/xintaofei/codeg +License: Apache-2.0 +LicenseUrl: https://github.com/xintaofei/codeg/blob/HEAD/LICENSE +ShortDescription: Aggregate and browse AI coding agent sessions (Claude Code, Codex, Gemini CLI, etc.) in one place. Desktop app, self-hosted server, or Docker. +Description: Codeg (Code Generation) is an enterprise-grade multi-agent coding workspace. It unifies local AI coding agents (Claude Code, Codex CLI, OpenCode, Gemini CLI, OpenClaw, Cline, etc.) in a desktop app, standalone server, or Docker container — enabling remote development from any browser — with conversation aggregation, parallel git worktree development, MCP/Skills management, chat channel interactions (Telegram, Lark, iLink, etc.), and integrated Git/file/terminal workflows. +Tags: +- agent +- agentic +- ai +- chatbot +- claude-code +- code +- codex +- coding +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + - feat(chat-channel): Telegram Topic mode. Run multiple sessions inside one Telegram forum supergroup, each bound to its own topic. /task opens a new topic and session, /resume binds an existing one, and plain text follows up in the current topic. Requires a forum supergroup with the bot as a topic-managing admin. Thanks @AnotiaWang (#322). + - feat(codex): Custom Codex models without hand-editing JSON. A structured editor in Codex settings lets you define custom models and curate the list — clone an official model, override only what differs, pick enum fields from dropdowns. Official models are read live from the launched Codex, so new ones appear automatically. + - feat(grok): Real Grok permission modes and reasoning effort. Permission mode now uses Grok's own --permission-mode values (old settings migrate automatically), and the reasoning-effort selector follows the chosen model — showing only the efforts it supports, or hiding entirely when it has none. + - feat(skills): Author your own skills. A new Custom tab in Skill Packs lets you create, edit, duplicate, and delete skills in the shared store and enable them for any agent — write once, reuse everywhere. Import from a local folder or from an agent's existing global skills. + - fix(chat): Async sub-agent results settle cleanly into their turn. Held-turn content no longer double-renders, the launch card updates in place to its finished result, and the "syncing results" strip stops lingering. + - fix(chat): Correct first-reply stats after resuming a conversation. The first reply after reopening a conversation no longer absorbs every earlier turn's duration and tokens — each reply reports only its own. + - fix(acp): A session's last error survives a reconnect. Reconnecting after missing the live error event still shows what went wrong, and a stale error is never resurrected onto a session that moved on. Thanks @ijry (#314). + - fix(chat-channel): Telegram tokens no longer leak; @username channels bind correctly. Bot tokens are scrubbed from error messages, and an @username is resolved to its numeric chat id so a follow-up no longer spawns a duplicate agent. + - fix(session): Completed sessions show their true runtime, computed from start and end timestamps. Thanks @cnYui (#311). + - fix(editor): Windows IME composition is preserved when typing Chinese, Japanese, or Korean in the built-in editor. Thanks @youxikexue (#332). + - fix(docker): Docker builds include the pnpm workspace config, so container and self-hosted deployments build cleanly. Thanks @AnotiaWang (#322). + - chore(agents): Bundled agents refreshed — Claude Code (0.59.0), OpenCode (1.17.20), OpenClaw (2026.7.1), Cline (3.0.40), CodeBuddy (2.121.2), Kimi Code (0.24.1), Grok (0.2.101). +ReleaseNotesUrl: https://github.com/xintaofei/codeg/releases/tag/v0.20.3 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.locale.zh-CN.yaml b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.locale.zh-CN.yaml new file mode 100644 index 0000000000000..672e4ef7b74b4 --- /dev/null +++ b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: XinTaoFei.Codeg +PackageVersion: 0.20.3 +PackageLocale: zh-CN +ShortDescription: 在一个地方聚合并浏览 AI 编程代理会话(如 Claude Code、Codex、Gemini CLI 等)。支持桌面应用、自建服务器或 Docker 部署。 +Description: Codeg(Code Generation,代码生成)是一款企业级多代理编码工作区。它将本地 AI 编程代理(包括 Claude Code、Codex CLI、OpenCode、Gemini CLI、OpenClaw、Cline 等)统一集成于桌面应用、独立服务器或 Docker 容器中,支持通过任意浏览器进行远程开发;具备对话聚合、并行 Git 工作树开发、MCP/技能管理、聊天频道交互(Telegram、飞书、iLink 等),以及集成的 Git/文件/终端工作流。 +Tags: +- claude-code +- codex +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +ReleaseNotes: |- + - 功能(聊天渠道):Telegram 话题模式。 在一个 Telegram 论坛超级群里同时跑多个会话,每个会话绑定各自的话题。/task <描述> 开新话题并启动新会话,/resume 绑定已有会话,纯文本即为当前话题的跟进。需要论坛超级群、并把机器人设为有话题管理权限的管理员。感谢 @AnotiaWang(#322)。 + - 功能(Codex):无需手写 JSON 的 Codex 自定义模型。 Codex 设置里的结构化编辑器让你定义自定义模型、精选列表——克隆官方模型、只覆盖差异字段、枚举字段从下拉选取。官方模型从启动的 Codex 实时读取,新模型会自动出现。 + - 功能(Grok):真实的 Grok 权限模式与推理强度。 权限模式改用 Grok 自己的 --permission-mode 取值(旧设置自动迁移),推理强度选择器跟随所选模型——只显示它支持的强度,无强度调节时则完全隐藏。 + - 功能(技能):创作你自己的技能。 技能包新增「自定义」标签,可在共享库里创建、编辑、复制、删除技能,并为任意智能体启用——一次编写、处处复用。支持从本地文件夹或某个智能体已有的全局技能导入。 + - 修复(聊天):异步子智能体的结果干净地归入所属回合。 回合内容不再重复渲染,启动卡片就地更新为完成结果,「同步结果中」提示条不再残留。 + - 修复(聊天):恢复会话后的首条回复统计正确了。 重开对话后的第一条回复不再吸收之前所有回合的时长与 token,每条回复只报告自己的数据。 + - 修复(会话):会话最近一次错误在重连后保留。 错过实时错误事件、之后重连仍能看到出错原因,且旧错误不会被复活到已经继续下去的会话上。感谢 @ijry(#314)。 + - 修复(聊天渠道):Telegram token 不再泄漏,@username 渠道正确绑定。 机器人 token 会从错误信息中抹除,@username 会解析为数字 chat id,跟进消息不再重复启动智能体。 + - 修复(会话):已完成会话显示真实运行时长, 依据开始与结束时间戳计算。感谢 @cnYui(#311)。 + - 修复(编辑器):保留 Windows 输入法组词, 在内置编辑器中输入中日韩文时不再丢字或错乱。感谢 @youxikexue(#332)。 + - 修复(Docker):Docker 构建包含 pnpm workspace 配置, 容器与自托管部署可正常构建。感谢 @AnotiaWang(#322)。 + - 更新(智能体):内置智能体已刷新 —— Claude Code(0.59.0)、OpenCode(1.17.20)、OpenClaw(2026.7.1)、Cline(3.0.40)、CodeBuddy(2.121.2)、Kimi Code(0.24.1)、Grok(0.2.101)。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.yaml b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.yaml new file mode 100644 index 0000000000000..c0f9b857890b6 --- /dev/null +++ b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: XinTaoFei.Codeg +PackageVersion: 0.20.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/y/Yerong/OfficeToolPlus/.validation b/manifests/y/Yerong/OfficeToolPlus/.validation new file mode 100644 index 0000000000000..7b042a759e10b --- /dev/null +++ b/manifests/y/Yerong/OfficeToolPlus/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"fd764451-1723-4e65-a084-05dc1fc5032e","TestPlan":"Validation-Domain","PackagePath":"manifests/y/Yerong/OfficeToolPlus/11.5.7.0","CommitId":"a602e238b6ddd61d7119c64fe8258d7921eeb813"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/y/Yerong/OfficeToolPlus/11.5.7.0/Yerong.OfficeToolPlus.installer.yaml b/manifests/y/Yerong/OfficeToolPlus/11.5.7.0/Yerong.OfficeToolPlus.installer.yaml index 07fa4d78caab9..95528e09b24e0 100644 --- a/manifests/y/Yerong/OfficeToolPlus/11.5.7.0/Yerong.OfficeToolPlus.installer.yaml +++ b/manifests/y/Yerong/OfficeToolPlus/11.5.7.0/Yerong.OfficeToolPlus.installer.yaml @@ -21,10 +21,10 @@ Dependencies: ReleaseDate: 2026-06-10 Installers: - Architecture: x64 - InstallerUrl: https://github.com/YerongAI/Office-Tool/releases/download/v11.5.7.0/Office_Tool_v11.5.7.0_x64.zip + InstallerUrl: https://otp.landian.vip/redirect/download.php?type=normal&arch=x64&version=11.5.7.0 InstallerSha256: CB0FD9DB95D0FFD73C642EB29AC24964E51DC651AC3762AE56F2521BAD8480D8 - Architecture: arm64 - InstallerUrl: https://github.com/YerongAI/Office-Tool/releases/download/v11.5.7.0/Office_Tool_v11.5.7.0_arm64.zip + InstallerUrl: https://otp.landian.vip/redirect/download.php?type=normal&arch=arm64&version=11.5.7.0 InstallerSha256: 65E6184857EDB01365CD42B64F134CC71E29195286CCD615D79D45D99CC34A30 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/Alma/0.0.875/yetone.Alma.installer.yaml b/manifests/y/yetone/Alma/0.0.875/yetone.Alma.installer.yaml new file mode 100644 index 0000000000000..a935473ec3e0e --- /dev/null +++ b/manifests/y/yetone/Alma/0.0.875/yetone.Alma.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: yetone.Alma +PackageVersion: 0.0.875 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 53efb302-dbc3-52a1-8bb5-041beae96976 +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://updates.alma.now/alma-0.0.875-win-x64.exe + InstallerSha256: 2C3703D4AB8828D22BBCCD4709B5B6FEAEF85FEF270D99D15B6F03BDBCD9831B + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://updates.alma.now/alma-0.0.875-win-x64.exe + InstallerSha256: 2C3703D4AB8828D22BBCCD4709B5B6FEAEF85FEF270D99D15B6F03BDBCD9831B + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/Alma/0.0.875/yetone.Alma.locale.en-US.yaml b/manifests/y/yetone/Alma/0.0.875/yetone.Alma.locale.en-US.yaml new file mode 100644 index 0000000000000..79333cde9d42a --- /dev/null +++ b/manifests/y/yetone/Alma/0.0.875/yetone.Alma.locale.en-US.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: yetone.Alma +PackageVersion: 0.0.875 +PackageLocale: en-US +Publisher: yetone +PublisherUrl: https://alma.now/ +PackageName: Alma +PackageUrl: https://alma.now/ +License: Freeware +Copyright: © 2026 Alma +ShortDescription: A beautiful desktop application that unifies your AI experience. Seamlessly switch between OpenAI, Anthropic, Google Gemini, and custom providers. +Description: |- + Alma is a Local-First, Memory-First AI Agent app — zero barrier to entry, putting Agent capability in everyone's hands. + Why Alma? + Unified Experience + Instead of switching between ChatGPT, Claude, and other AI interfaces, Alma lets you access all your AI providers from a single application. Switch between models with a single click. + Privacy First + Alma runs entirely on your desktop. Your API keys and conversation history stay on your machine - we don't operate any cloud servers that process your data. + Powerful Features + Beyond basic chat, Alma offers: + - Memory First - The AI remembers important information across conversations + - Tools - File operations, shell commands, web search, and more + - Skills - Extend AI behavior with custom prompts and workflows + - Workspaces - Associate chats with project directories for coding assistance + - MCP - Extend capabilities with third-party integrations + Beautiful Design + A modern, clean interface with customizable themes, keyboard shortcuts, and attention to detail. +Tags: +- agent +- agentic +- ai +- large-language-model +- llm +ReleaseNotes: |- + 0.0.875 + Features + - File paths in assistant messages are now clickable, letting you quickly open the referenced file. + Bug Fixes + - The “Select All” keyboard shortcut (Cmd+A/Ctrl+A) now only selects text inside the file preview, avoiding accidental selection elsewhere. + - User-defined capability overrides are now always respected, ensuring your permissions are applied consistently. + - Fixed a file linking issue that prevented installation on openSUSE. +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://alma.now/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/Alma/0.0.875/yetone.Alma.locale.zh-CN.yaml b/manifests/y/yetone/Alma/0.0.875/yetone.Alma.locale.zh-CN.yaml new file mode 100644 index 0000000000000..16ae686d2df36 --- /dev/null +++ b/manifests/y/yetone/Alma/0.0.875/yetone.Alma.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: yetone.Alma +PackageVersion: 0.0.875 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 一款精美的桌面应用程序,可统一您的 AI 体验。无缝切换 OpenAI、Anthropic、Google Gemini 和自定义提供商。 +Description: |- + Alma 是一款以本地为先、记忆为先的 AI Agent 应用——零门槛上手,让每个人都能轻松使用 Agent 功能。 + 为什么选择 Alma? + 统一体验 + 无需在 ChatGPT、Claude 和其他 AI 界面之间来回切换,Alma 让你通过一个应用程序访问所有 AI 服务提供商。只需单击一下即可切换模型。 + 注重隐私 + Alma 完全在你的桌面运行。你的 API 密钥和对话历史都保留在本地设备中——我们不运营任何用于处理你数据的云服务器。 + 强大功能 + 除了基础聊天外,Alma 还提供: + - 记忆优先 —— AI 能在不同对话间记住重要信息 + - 工具 —— 文件操作、shell 命令、网页搜索等 + - 技能 —— 通过自定义提示词和工作流扩展 AI 行为 + - 工作区 —— 将聊天与项目目录关联,辅助编程开发 + - MCP —— 通过第三方集成扩展能力 + 精美设计 + 现代简洁的界面,支持自定义主题、键盘快捷键,并注重每一个细节。 +Tags: +- 人工智能 +- 大语言模型 +- 智能体 +- 自主智能 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://alma.now/docs/zh/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/Alma/0.0.875/yetone.Alma.yaml b/manifests/y/yetone/Alma/0.0.875/yetone.Alma.yaml new file mode 100644 index 0000000000000..3a8ae581233bf --- /dev/null +++ b/manifests/y/yetone/Alma/0.0.875/yetone.Alma.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: yetone.Alma +PackageVersion: 0.0.875 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.installer.yaml b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.installer.yaml new file mode 100644 index 0000000000000..7119944fbfbf4 --- /dev/null +++ b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: zhukunpenglinyutong.CCGUI +PackageVersion: 0.7.2 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: ccgui +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/zhukunpenglinyutong/desktop-cc-gui/releases/download/v0.7.2/ccgui_0.7.2_x64-setup.exe + InstallerSha256: D4B0463854BFD65F40143B01C63B8FE9975038A900677342E99710692CBE68FA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.locale.en-US.yaml b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.locale.en-US.yaml new file mode 100644 index 0000000000000..3c61370d49b0e --- /dev/null +++ b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: zhukunpenglinyutong.CCGUI +PackageVersion: 0.7.2 +PackageLocale: en-US +ShortDescription: CC GUI Client (Vibe Coding Platform Designed for Developers) +Description: CC GUI targets professional developers, serving as a replacement for Cursor. Focusing on developer experience, our ultimate goal is to build a 100% open-source and transparent next-generation Vibe Coding editor (supporting engines such as Claude Code, Codex, etc.) +Tags: +- ai +- claude-code +- code +- coding +- large-language-model +- llm +- programming +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.locale.zh-CN.yaml b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3f62537be3c90 --- /dev/null +++ b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.locale.zh-CN.yaml @@ -0,0 +1,50 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: zhukunpenglinyutong.CCGUI +PackageVersion: 0.7.2 +PackageLocale: zh-CN +Publisher: zhukunpenglinyutong +PublisherUrl: https://github.com/zhukunpenglinyutong +PublisherSupportUrl: https://github.com/zhukunpenglinyutong/desktop-cc-gui/issues +Author: 朱昆鹏 +PackageName: ccgui +PackageUrl: https://github.com/zhukunpenglinyutong/desktop-cc-gui +License: MIT +LicenseUrl: https://github.com/zhukunpenglinyutong/desktop-cc-gui/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2026 Thomas Ricouard + Copyright (c) 2026 zhukunpenglinyutong(朱昆鹏) +ShortDescription: CC GUI 客户端(专为开发者打造的 Vibe Coding 平台) +Description: CC GUI 目标群体是专业开发者,可以替代 Curosr 使用。专注于开发者体验,我们最终目标是打造一个 100% 开源透明的下一代 Vibe Coding 编辑器(支持 Claude Code,Codex 等引擎) +Tags: +- claude-code +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ReleaseNotes: |- + New Features + - add "send to composer" context menu for terminal selection and file paths + - unify scrollbar geometry and style across all scroll containers + - 完成前端资源下载安装闭环 + - 优化全局搜索结果分层 + - reduce idle chrome render cost (behaviour-visible split of #807) + Fixes + - sync package-lock with radix-ui overrides + - keep bottom follow through send-time layout shock + - restore scrollbar thumb color with fallback variable + - 统一幕布钉底收敛与重开回刷时序 + - 补齐新增文件 diff 入口 + - 修复 composer 冷启动状态回环 + - 修复 React 19 ScrollArea ref 回环 + - 修复自动滚底锚点更新回环 + - 延长会话健康检查超时 + - 修复首次启动 React 渲染崩溃 + - 根治首次启动会话行更新回环 + - 根治 Tooltip 启动更新回环 + Performance Improvements + - reduce idle recalc and render cost across chrome +ReleaseNotesUrl: https://github.com/zhukunpenglinyutong/desktop-cc-gui/releases/tag/v0.7.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.yaml b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.yaml new file mode 100644 index 0000000000000..a0320502bc4ee --- /dev/null +++ b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: zhukunpenglinyutong.CCGUI +PackageVersion: 0.7.2 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0