diff --git a/Tools/SandboxTest.ps1 b/Tools/SandboxTest.ps1 index af314c84d9e6e..68a1fd2d36f71 100644 --- a/Tools/SandboxTest.ps1 +++ b/Tools/SandboxTest.ps1 @@ -112,10 +112,11 @@ $oldProgressPreference = $ProgressPreference $ProgressPreference = 'SilentlyContinue' $latestRelease = Get-Release +$versionTag = $latestRelease.releaseTag $desktopAppInstaller = @{ url = $latestRelease.msixFileUrl hash = $latestRelease.shaFileContent - SaveTo = $(Join-Path $env:LOCALAPPDATA -ChildPath "Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\bin\$($latestRelease.releaseTag)\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle") + SaveTo = $(Join-Path $env:LOCALAPPDATA -ChildPath "Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\bin\$versionTag\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle") } $ProgressPreference = $oldProgressPreference @@ -165,11 +166,15 @@ foreach ($dependency in $dependencies) { $WebClient.DownloadFile($dependency.url, $dependency.SaveTo) } catch { - #Pass the exception as an inner exception - throw [System.Net.WebException]::new("Error downloading $($dependency.url).", $_.Exception) + # If the download failed, remove the item so the sandbox can fall-back to using the PowerShell module + Remove-Item $dependency.SaveTo -Force | Out-Null } if (-not ($dependency.hash -eq $(Get-FileHash $dependency.SaveTo).Hash)) { - throw [System.Activities.VersionMismatchException]::new('Dependency hash does not match the downloaded file') + # If the hash didn't match, remove the item so the sandbox can fall-back to using the PowerShell module + Write-Host -ForegroundColor Red ' Dependency hash does not match the downloaded file' + Write-Host -ForegroundColor Red ' Please open an issue referencing this error at https://bit.ly/WinGet-SandboxTest-Needs-Update' + Write-Host + Remove-Item $dependency.SaveTo -Force | Out-Null } } } @@ -226,7 +231,23 @@ Write-Host @' --> Installing WinGet '@ `$ProgressPreference = 'SilentlyContinue' -Add-AppxPackage -Path '$($desktopAppInstaller.pathInSandbox)' -DependencyPath '$($vcLibsUwp.pathInSandbox)','$($uiLibsUwp.pathInSandbox)' +try { + Add-AppxPackage -Path '$($desktopAppInstaller.pathInSandbox)' -DependencyPath '$($vcLibsUwp.pathInSandbox)','$($uiLibsUwp.pathInSandbox)' +} catch { + Write-Host -ForegroundColor Red 'Could not install from cached packages. Falling back to Repair-WinGetPackageManager cmdlet' + try { + Install-PackageProvider -Name NuGet -Force | Out-Null + Install-Module -Name Microsoft.WinGet.Client -Force -Repository PSGallery | Out-Null + } catch { + throw "Microsoft.Winget.Client was not installed successfully" + } finally { + # Check to be sure it acutally installed + if (-not(Get-Module -ListAvailable -Name Microsoft.Winget.Client)) { + throw "Microsoft.Winget.Client was not found. Check that the Windows Package Manager PowerShell module was installed correctly." + } + } + Repair-WinGetPackageManager -Version $versionTag +} Write-Host @' --> Disabling safety warning when running installer diff --git a/manifests/1/123/123pan/1.3.3.0/123.123pan.installer.yaml b/manifests/1/123/123pan/1.3.3.0/123.123pan.installer.yaml index 32fa6daa93fe7..57a0336fe5f9a 100644 --- a/manifests/1/123/123pan/1.3.3.0/123.123pan.installer.yaml +++ b/manifests/1/123/123pan/1.3.3.0/123.123pan.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: 123.123pan diff --git a/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.en-US.yaml b/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.en-US.yaml index a3c2aa7166227..57669e9775190 100644 --- a/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.en-US.yaml +++ b/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: 123.123pan diff --git a/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.zh-CN.yaml b/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.zh-CN.yaml index 788be80cc7baa..6020c33f14ac8 100644 --- a/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.zh-CN.yaml +++ b/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json PackageIdentifier: 123.123pan diff --git a/manifests/1/123/123pan/1.3.3.0/123.123pan.yaml b/manifests/1/123/123pan/1.3.3.0/123.123pan.yaml index 95c2ecd58ca45..07f73db06e5af 100644 --- a/manifests/1/123/123pan/1.3.3.0/123.123pan.yaml +++ b/manifests/1/123/123pan/1.3.3.0/123.123pan.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: 123.123pan diff --git a/manifests/a/AgileBits/1Password/Beta/8.10.26-11.BETA/AgileBits.1Password.Beta.installer.yaml b/manifests/a/AgileBits/1Password/Beta/8.10.26-11.BETA/AgileBits.1Password.Beta.installer.yaml new file mode 100644 index 0000000000000..441fa536901b6 --- /dev/null +++ b/manifests/a/AgileBits/1Password/Beta/8.10.26-11.BETA/AgileBits.1Password.Beta.installer.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json + +PackageIdentifier: AgileBits.1Password.Beta +PackageVersion: 8.10.26-11.BETA +Installers: +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://downloads.1password.com/win/1PasswordSetup-latest.BETA.exe + InstallerSha256: A800F41BE35E8B760FCA51DFC7764881580D6B24F326D4B00DDBC88FA7AE4029 + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +ManifestType: installer +ManifestVersion: 1.2.0 diff --git a/manifests/a/AgileBits/1Password/Beta/8.10.26-11.BETA/AgileBits.1Password.Beta.locale.en-US.yaml b/manifests/a/AgileBits/1Password/Beta/8.10.26-11.BETA/AgileBits.1Password.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..5fdd13096497e --- /dev/null +++ b/manifests/a/AgileBits/1Password/Beta/8.10.26-11.BETA/AgileBits.1Password.Beta.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json + +PackageIdentifier: AgileBits.1Password.Beta +PackageVersion: 8.10.26-11.BETA +PackageLocale: en-US +Publisher: AgileBits, Inc. +PublisherUrl: https://1password.com/ +PublisherSupportUrl: https://support.1password.com/ +PackageName: 1Password Beta +PackageUrl: https://support.1password.com/betas/ +License: Proprietary +Copyright: Copyright © 2022 AgileBits, Inc. +ShortDescription: 1Password remembers all your passwords for you, and keeps them safe and secure behind the one password that only you know. +ManifestType: defaultLocale +ManifestVersion: 1.2.0 diff --git a/manifests/a/AgileBits/1Password/Beta/8.10.26-11.BETA/AgileBits.1Password.Beta.yaml b/manifests/a/AgileBits/1Password/Beta/8.10.26-11.BETA/AgileBits.1Password.Beta.yaml new file mode 100644 index 0000000000000..6732f3c9a24b3 --- /dev/null +++ b/manifests/a/AgileBits/1Password/Beta/8.10.26-11.BETA/AgileBits.1Password.Beta.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json + +PackageIdentifier: AgileBits.1Password.Beta +PackageVersion: 8.10.26-11.BETA +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.2.0 diff --git a/manifests/a/Amazon/AWSCLI/2.15.16/Amazon.AWSCLI.installer.yaml b/manifests/a/Amazon/AWSCLI/2.15.16/Amazon.AWSCLI.installer.yaml new file mode 100644 index 0000000000000..0289bc961e26e --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.15.16/Amazon.AWSCLI.installer.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.15.16 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- aws +ProductCode: '{2F929040-6374-47FE-8C7D-5E58DC4D4CF8}' +AppsAndFeaturesEntries: +- DisplayName: AWS Command Line Interface v2 + DisplayVersion: 2.15.16.0 + ProductCode: '{2F929040-6374-47FE-8C7D-5E58DC4D4CF8}' + UpgradeCode: '{E1C1971C-384E-4D6D-8D02-F1AC48281CF8}' +Installers: +- Architecture: x64 + InstallerUrl: https://awscli.amazonaws.com/AWSCLIV2-2.15.16.msi + InstallerSha256: 7188844E26DF7FDEA3ADBE655971D01EFE6B69E9EBE40D25518A75F222BCE490 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/a/Amazon/AWSCLI/2.15.16/Amazon.AWSCLI.locale.en-US.yaml b/manifests/a/Amazon/AWSCLI/2.15.16/Amazon.AWSCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..782d9e83167d3 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.15.16/Amazon.AWSCLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.15.16 +PackageLocale: en-US +Publisher: Amazon Web Services +PublisherUrl: https://github.com/aws/aws-cli +PublisherSupportUrl: https://github.com/aws/aws-cli/issues +Author: Amazon Web Services +PackageName: AWS Command Line Interface +PackageUrl: https://aws.amazon.com/cli +License: Apache 2.0 license +LicenseUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +Copyright: Copyright 2012-2020 Amazon.com, Inc. +CopyrightUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +ShortDescription: Universal Command Line Interface for Amazon Web Services +Description: |- + The AWS CLI is an open source tool built on top of the AWS SDK for Python (Boto) that provides commands for interacting with AWS services. + With minimal configuration, you can start using all of the functionality provided by the AWS Management Console from your favorite terminal program. +Tags: +- aws +- awscli +- cli +- cloud +- foss +- open-source +- s3 +- services +- web +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/a/Amazon/AWSCLI/2.15.16/Amazon.AWSCLI.yaml b/manifests/a/Amazon/AWSCLI/2.15.16/Amazon.AWSCLI.yaml new file mode 100644 index 0000000000000..ca3bfbfae3201 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.15.16/Amazon.AWSCLI.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.15.16 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/a/Amazon/Kindle/2.3.70673/Amazon.Kindle.installer.yaml b/manifests/a/Amazon/Kindle/2.3.0.70673/Amazon.Kindle.installer.yaml similarity index 92% rename from manifests/a/Amazon/Kindle/2.3.70673/Amazon.Kindle.installer.yaml rename to manifests/a/Amazon/Kindle/2.3.0.70673/Amazon.Kindle.installer.yaml index 6ef3ac05bab99..fcbbb98e1b92b 100644 --- a/manifests/a/Amazon/Kindle/2.3.70673/Amazon.Kindle.installer.yaml +++ b/manifests/a/Amazon/Kindle/2.3.0.70673/Amazon.Kindle.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Amazon.Kindle -PackageVersion: 2.3.70673 +PackageVersion: 2.3.0.70673 MinimumOSVersion: 6.2.0.0 InstallerType: nullsoft Scope: user diff --git a/manifests/a/Amazon/Kindle/2.3.70673/Amazon.Kindle.locale.en-US.yaml b/manifests/a/Amazon/Kindle/2.3.0.70673/Amazon.Kindle.locale.en-US.yaml similarity index 94% rename from manifests/a/Amazon/Kindle/2.3.70673/Amazon.Kindle.locale.en-US.yaml rename to manifests/a/Amazon/Kindle/2.3.0.70673/Amazon.Kindle.locale.en-US.yaml index 1d51d337c7360..2dffa863ea863 100644 --- a/manifests/a/Amazon/Kindle/2.3.70673/Amazon.Kindle.locale.en-US.yaml +++ b/manifests/a/Amazon/Kindle/2.3.0.70673/Amazon.Kindle.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Amazon.Kindle -PackageVersion: 2.3.70673 +PackageVersion: 2.3.0.70673 PackageLocale: en-US Publisher: Amazon PublisherUrl: https://www.amazon.com/ diff --git a/manifests/a/Amazon/Kindle/2.3.70673/Amazon.Kindle.yaml b/manifests/a/Amazon/Kindle/2.3.0.70673/Amazon.Kindle.yaml similarity index 86% rename from manifests/a/Amazon/Kindle/2.3.70673/Amazon.Kindle.yaml rename to manifests/a/Amazon/Kindle/2.3.0.70673/Amazon.Kindle.yaml index 10e65ded274cd..46b60519f8eff 100644 --- a/manifests/a/Amazon/Kindle/2.3.70673/Amazon.Kindle.yaml +++ b/manifests/a/Amazon/Kindle/2.3.0.70673/Amazon.Kindle.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Amazon.Kindle -PackageVersion: 2.3.70673 +PackageVersion: 2.3.0.70673 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.5.0 diff --git a/manifests/a/AppFlowy/AppFlowy/0.4.4/AppFlowy.AppFlowy.installer.yaml b/manifests/a/AppFlowy/AppFlowy/0.4.4/AppFlowy.AppFlowy.installer.yaml new file mode 100644 index 0000000000000..41a2281c45684 --- /dev/null +++ b/manifests/a/AppFlowy/AppFlowy/0.4.4/AppFlowy.AppFlowy.installer.yaml @@ -0,0 +1,13 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: AppFlowy.AppFlowy +PackageVersion: 0.4.4 +InstallerType: inno +ReleaseDate: 2024-02-01 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/AppFlowy-IO/AppFlowy/releases/download/0.4.4/AppFlowy-0.4.4-windows-x86_64.exe + InstallerSha256: 028A6932A73BDD6C2302F82CEE64EF2A66E3E9DE5F45582E153E0AA26579389D +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/a/AppFlowy/AppFlowy/0.4.4/AppFlowy.AppFlowy.locale.en-US.yaml b/manifests/a/AppFlowy/AppFlowy/0.4.4/AppFlowy.AppFlowy.locale.en-US.yaml new file mode 100644 index 0000000000000..f362399b5115f --- /dev/null +++ b/manifests/a/AppFlowy/AppFlowy/0.4.4/AppFlowy.AppFlowy.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: AppFlowy.AppFlowy +PackageVersion: 0.4.4 +PackageLocale: en-US +Publisher: AppFlowy-IO +PublisherUrl: https://github.com/AppFlowy-IO +PublisherSupportUrl: https://github.com/AppFlowy-IO/AppFlowy/issues +PackageName: AppFlowy +PackageUrl: https://github.com/AppFlowy-IO/AppFlowy +License: AGPL-3.0 +LicenseUrl: https://github.com/AppFlowy-IO/AppFlowy/blob/HEAD/LICENSE +Copyright: Copyright (C) 2007 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/AppFlowy-IO/AppFlowy/blob/main/LICENSE +ShortDescription: The Open Source Alternative To Notion. +Description: |- + AppFlowy is an open source alternative to Notion. + You are in charge of your data and customizations. +Tags: +- content-management +- content-services +- editor +- flutter +- flutter-app +- flutter-apps +- flutter-examples +- flutter-ui +- low-code +- no-code +- notion +- notion-alternative +- rust +- rust-lang +- rust-language +- wiki +ReleaseNotes: |- + Release Notes + Version 0.4.4 - 01/31/2024 + New Features + - Added functionality for uploading images to cloud storage. + - Enabled anonymous sign-in option for mobile platform users. + - Introduced the ability to customize cloud settings directly from the startup page. + - Added support for inserting reminders on the mobile platform. + - Overhauled the user interface on mobile devices, including improvements to the action bottom sheet, editor toolbar, database details page, and app bar. + - Implemented a shortcut (F2 key) to rename the current view. +ReleaseNotesUrl: https://github.com/AppFlowy-IO/AppFlowy/releases/tag/0.4.4 +PurchaseUrl: https://ko-fi.com/appflowy +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/a/AppFlowy/AppFlowy/0.4.4/AppFlowy.AppFlowy.yaml b/manifests/a/AppFlowy/AppFlowy/0.4.4/AppFlowy.AppFlowy.yaml new file mode 100644 index 0000000000000..5974d68c3b1e1 --- /dev/null +++ b/manifests/a/AppFlowy/AppFlowy/0.4.4/AppFlowy.AppFlowy.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: AppFlowy.AppFlowy +PackageVersion: 0.4.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/a/Appest/TickTick/5.0.6.0/Appest.TickTick.installer.yaml b/manifests/a/Appest/TickTick/5.0.6.0/Appest.TickTick.installer.yaml new file mode 100644 index 0000000000000..6e8a4de7a8095 --- /dev/null +++ b/manifests/a/Appest/TickTick/5.0.6.0/Appest.TickTick.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Appest.TickTick +PackageVersion: 5.0.6.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- ticktick +ReleaseDate: 2024-01-24 +Installers: +- Architecture: x86 + InstallerUrl: https://d2atcrkye2ik4e.cloudfront.net/download/win/tick_win_setup_release_x86_5060.exe + InstallerSha256: 624C69738851333FD1E2634766B0C9C39ED92CF7ADE3B7E7CEC3A67CDED5227A +- Architecture: x64 + InstallerUrl: https://d2atcrkye2ik4e.cloudfront.net/download/win64/tick_win_setup_release_x64_5060.exe + InstallerSha256: 4931889E93C1898C9DABD270C3F7E4AD06149C46BE86022D8E57B772EB52D0F3 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/a/Appest/TickTick/5.0.6.0/Appest.TickTick.locale.en-US.yaml b/manifests/a/Appest/TickTick/5.0.6.0/Appest.TickTick.locale.en-US.yaml new file mode 100644 index 0000000000000..5e3cdd69c9266 --- /dev/null +++ b/manifests/a/Appest/TickTick/5.0.6.0/Appest.TickTick.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Appest.TickTick +PackageVersion: 5.0.6.0 +PackageLocale: en-US +Publisher: Appest.com +PublisherUrl: https://ticktick.com/ +PublisherSupportUrl: https://support.ticktick.com/ +PrivacyUrl: https://www.ticktick.com/about/privacy +Author: Appest Inc. +PackageName: TickTick +PackageUrl: https://www.ticktick.com/ +License: Proprietary +LicenseUrl: https://ticktick.com/about/tos +Copyright: © 2024 TickTick Team All rights reserved +# CopyrightUrl: +ShortDescription: To-Do List & Calendar +Description: TickTick is a powerful to-do & task management app with seamless cloud synchronization across all your devices. Whether you need to schedule an agenda, make memos, share shopping lists, collaborate in a team, or even develop a new habit, TickTick is always here to help you get stuff done and keep life on track. +# Moniker: +Tags: +- agenda +- calendar +- checklist +- collaboration +- gtd +- list +- memo +- memorandum +- notes +- reminder +- schedule +- task +- to-do +- todo +ReleaseNotes: |- + - A more convenient way to clear time is now provided. Just select "Clear" from the task’s right-click menu to easily complete it. + - Added "Do Not Disturb" switch for subscribed calendars, accessible in "Settings - Subscribed Calendars." +ReleaseNotesUrl: https://www.ticktick.com/public/changelog/en.html +PurchaseUrl: https://www.ticktick.com/about/upgrade +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/a/Appest/TickTick/5.0.6.0/Appest.TickTick.locale.zh-CN.yaml b/manifests/a/Appest/TickTick/5.0.6.0/Appest.TickTick.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a5d9a4923b1c1 --- /dev/null +++ b/manifests/a/Appest/TickTick/5.0.6.0/Appest.TickTick.locale.zh-CN.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Appest.TickTick +PackageVersion: 5.0.6.0 +PackageLocale: zh-CN +Publisher: Appest.com +PublisherUrl: https://ticktick.com/ +PublisherSupportUrl: https://support.ticktick.com/ +PrivacyUrl: https://www.ticktick.com/about/privacy +Author: Appest Inc. +PackageName: TickTick +PackageUrl: https://www.ticktick.com/ +License: 专有软件 +LicenseUrl: https://ticktick.com/about/tos +Copyright: 版权所有©2024 TickTick团队 保留一切权力 +# CopyrightUrl: +ShortDescription: 专注日历提醒事项和时间管理番茄钟 +Description: TickTick,一款轻便的待办事项(Todo)、日程管理(GTD)应用,全球逾千万用户的共同选择。它可以帮你制定项目计划、设置会议提醒、 安排行程规划、保持工作专注,还能用于记录备忘、整理购物清单。TickTick 集计划表、备忘录、日程清单、笔记、便签、闹钟、日历、番茄钟、在线协作多种实用功能于一体,是你高效办公、目标管理、习惯养成及便捷生活的得力助手。 +# Moniker: +Tags: +- 任务 +- 列表 +- 协作 +- 协同 +- 备忘 +- 备忘录 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 日程管理 +- 时间管理 +- 清单 +- 笔记 +- 议程 +ReleaseNotes: |- + - 对于已设定时间的任务,现在提供了更加便捷的清除时间方式。只需在任务右键菜单中选择“清除”,即可轻松完成。 + - 订阅日历新增「勿扰」开关,你可以在“设置-日历订阅”中开启。 +ReleaseNotesUrl: https://www.ticktick.com/public/changelog/zh.html +PurchaseUrl: https://www.ticktick.com/about/upgrade +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/a/Appest/TickTick/5.0.6.0/Appest.TickTick.yaml b/manifests/a/Appest/TickTick/5.0.6.0/Appest.TickTick.yaml new file mode 100644 index 0000000000000..4d1c1369ce44f --- /dev/null +++ b/manifests/a/Appest/TickTick/5.0.6.0/Appest.TickTick.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Appest.TickTick +PackageVersion: 5.0.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/a/Aserto/DSLoad/0.30.4/Aserto.DSLoad.installer.yaml b/manifests/a/Aserto/DSLoad/0.30.4/Aserto.DSLoad.installer.yaml new file mode 100644 index 0000000000000..51cdbdf5538a5 --- /dev/null +++ b/manifests/a/Aserto/DSLoad/0.30.4/Aserto.DSLoad.installer.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Aserto.DSLoad +PackageVersion: 0.30.4 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ds-load-auth0.exe + PortableCommandAlias: ds-load-auth0 +- RelativeFilePath: ds-load-azuread.exe + PortableCommandAlias: ds-load-azuread +- RelativeFilePath: ds-load-cognito.exe + PortableCommandAlias: ds-load-cognito +- RelativeFilePath: ds-load-google.exe + PortableCommandAlias: ds-load-google +- RelativeFilePath: ds-load-ldap.exe + PortableCommandAlias: ds-load-ldap +- RelativeFilePath: ds-load-okta.exe + PortableCommandAlias: ds-load-okta +- RelativeFilePath: ds-load.exe + PortableCommandAlias: ds-load +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aserto-dev/ds-load/releases/download/v0.30.4/ds-load_0.30.4_windows_x86_64.zip + InstallerSha256: 467E43195174B1B456DE18E4469D198F7F6407E4CAD1F084C1B20BB1F91579B8 +ManifestType: installer +ManifestVersion: 1.5.0 +ReleaseDate: 2024-01-15 diff --git a/manifests/a/Aserto/DSLoad/0.30.4/Aserto.DSLoad.locale.en-US.yaml b/manifests/a/Aserto/DSLoad/0.30.4/Aserto.DSLoad.locale.en-US.yaml new file mode 100644 index 0000000000000..c11a0d6784bd0 --- /dev/null +++ b/manifests/a/Aserto/DSLoad/0.30.4/Aserto.DSLoad.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Aserto.DSLoad +PackageVersion: 0.30.4 +PackageLocale: en-US +Publisher: Aserto +PublisherUrl: https://aserto.com +PublisherSupportUrl: https://github.com/aserto-dev/ds-load/issues +PackageName: ds-load +PackageUrl: https://github.com/aserto-dev/ds-load +License: Apache License 2.0 +LicenseUrl: https://github.com/aserto-dev/ds-load/blob/main/LICENSE +ShortDescription: Directory Loader CLI +ReleaseNotes: |- + Changelog + - b9b0c71 Make id configurable +ReleaseNotesUrl: https://github.com/aserto-dev/ds-load/releases/tag/v0.30.4 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/a/Aserto/DSLoad/0.30.4/Aserto.DSLoad.yaml b/manifests/a/Aserto/DSLoad/0.30.4/Aserto.DSLoad.yaml new file mode 100644 index 0000000000000..554d639232b18 --- /dev/null +++ b/manifests/a/Aserto/DSLoad/0.30.4/Aserto.DSLoad.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Aserto.DSLoad +PackageVersion: 0.30.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/a/Aserto/Topaz/0.30.29/Aserto.Topaz.installer.yaml b/manifests/a/Aserto/Topaz/0.30.29/Aserto.Topaz.installer.yaml new file mode 100644 index 0000000000000..5d475b3f2c771 --- /dev/null +++ b/manifests/a/Aserto/Topaz/0.30.29/Aserto.Topaz.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Aserto.Topaz +PackageVersion: 0.30.29 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: topaz.exe + PortableCommandAlias: topaz +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aserto-dev/topaz/releases/download/v0.30.29/topaz_windows_x86_64.zip + InstallerSha256: 7AF3E3A54D1237D44E8607C671E78AD7A151AB27F4F9135C4AA9E4B26B191CF0 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/a/Aserto/Topaz/0.30.29/Aserto.Topaz.locale.en-US.yaml b/manifests/a/Aserto/Topaz/0.30.29/Aserto.Topaz.locale.en-US.yaml new file mode 100644 index 0000000000000..4f95b428a2858 --- /dev/null +++ b/manifests/a/Aserto/Topaz/0.30.29/Aserto.Topaz.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Aserto.Topaz +PackageVersion: 0.30.29 +PackageLocale: en-US +Publisher: Aserto +PublisherUrl: https://aserto.com +PublisherSupportUrl: https://github.com/aserto-dev/topaz/issues +PackageName: Topaz +PackageUrl: https://github.com/aserto-dev/topaz +License: Apache License 2.0 +LicenseUrl: https://github.com/aserto-dev/topaz/blob/main/LICENSE +ShortDescription: ReBAC & ABAC Application Authorization Solution +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/a/Aserto/Topaz/0.30.29/Aserto.Topaz.yaml b/manifests/a/Aserto/Topaz/0.30.29/Aserto.Topaz.yaml new file mode 100644 index 0000000000000..0465ee9e393b0 --- /dev/null +++ b/manifests/a/Aserto/Topaz/0.30.29/Aserto.Topaz.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Aserto.Topaz +PackageVersion: 0.30.29 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/a/Aserto/Topaz/0.30.30/Aserto.Topaz.installer.yaml b/manifests/a/Aserto/Topaz/0.30.30/Aserto.Topaz.installer.yaml new file mode 100644 index 0000000000000..4c95aa5b72dc8 --- /dev/null +++ b/manifests/a/Aserto/Topaz/0.30.30/Aserto.Topaz.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Aserto.Topaz +PackageVersion: 0.30.30 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: topaz.exe + PortableCommandAlias: topaz +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aserto-dev/topaz/releases/download/v0.30.30/topaz_windows_x86_64.zip + InstallerSha256: 22E05558D8E6FE62257F0CB9D0E5C2847795E5FFE58F8FB635875FA75F6F0B55 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/a/Aserto/Topaz/0.30.30/Aserto.Topaz.locale.en-US.yaml b/manifests/a/Aserto/Topaz/0.30.30/Aserto.Topaz.locale.en-US.yaml new file mode 100644 index 0000000000000..9d3f1365df8e9 --- /dev/null +++ b/manifests/a/Aserto/Topaz/0.30.30/Aserto.Topaz.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Aserto.Topaz +PackageVersion: 0.30.30 +PackageLocale: en-US +Publisher: Aserto +PublisherUrl: https://aserto.com +PublisherSupportUrl: https://github.com/aserto-dev/topaz/issues +PackageName: Topaz +PackageUrl: https://github.com/aserto-dev/topaz +License: Apache License 2.0 +LicenseUrl: https://github.com/aserto-dev/topaz/blob/main/LICENSE +ShortDescription: ReBAC & ABAC Application Authorization Solution +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/a/Aserto/Topaz/0.30.30/Aserto.Topaz.yaml b/manifests/a/Aserto/Topaz/0.30.30/Aserto.Topaz.yaml new file mode 100644 index 0000000000000..8b4efe6416845 --- /dev/null +++ b/manifests/a/Aserto/Topaz/0.30.30/Aserto.Topaz.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Aserto.Topaz +PackageVersion: 0.30.30 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/a/AviSynth/AviSynthPlus/3.7.3.4003/AviSynth.AviSynthPlus.installer.yaml b/manifests/a/AviSynth/AviSynthPlus/3.7.3.4003/AviSynth.AviSynthPlus.installer.yaml index d0a1b79ad82d4..ca2a880a8f11d 100644 --- a/manifests/a/AviSynth/AviSynthPlus/3.7.3.4003/AviSynth.AviSynthPlus.installer.yaml +++ b/manifests/a/AviSynth/AviSynthPlus/3.7.3.4003/AviSynth.AviSynthPlus.installer.yaml @@ -12,16 +12,16 @@ FileExtensions: ReleaseDate: 2023-07-16 Installers: - Architecture: x64 - InstallerUrl: https://github.com/AviSynth/AviSynthPlus/releases/download/v3.7.3/AviSynthPlus_3.7.3_20230715_vcredist.exe - InstallerSha256: 9567A44146B80C2C4DA93605B046707F6E46BCE48BAB4B9B7DD9BD52FD1D6FAF + InstallerUrl: https://github.com/AviSynth/AviSynthPlus/releases/download/v3.7.3/AviSynthPlus_3.7.3_20230715.exe + InstallerSha256: 82E10B6661D253E83AA3CFC95A99B683AE6E7F532AE16156D2ACADFED70B2617 Dependencies: PackageDependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x64 - PackageIdentifier: Microsoft.VCRedist.2015+.x86 ProductCode: '{AC78780F-BACA-4805-8D4F-AE1B52B7E7D3}_is1' - Architecture: x86 - InstallerUrl: https://github.com/AviSynth/AviSynthPlus/releases/download/v3.7.3/AviSynthPlus_3.7.3_20230715_vcredist.exe - InstallerSha256: 9567A44146B80C2C4DA93605B046707F6E46BCE48BAB4B9B7DD9BD52FD1D6FAF + InstallerUrl: https://github.com/AviSynth/AviSynthPlus/releases/download/v3.7.3/AviSynthPlus_3.7.3_20230715.exe + InstallerSha256: 82E10B6661D253E83AA3CFC95A99B683AE6E7F532AE16156D2ACADFED70B2617 Dependencies: PackageDependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x86 diff --git a/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.installer.yaml b/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.installer.yaml index 69f3b3bb458cc..e763965c34cab 100644 --- a/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.installer.yaml +++ b/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Axosoft.GitKraken diff --git a/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.locale.en-US.yaml b/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.locale.en-US.yaml index 9895e6d8032a3..f92df33e0e5db 100644 --- a/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.locale.en-US.yaml +++ b/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Axosoft.GitKraken diff --git a/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.yaml b/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.yaml index c0033c48602e7..5ace7d7604129 100644 --- a/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.yaml +++ b/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Axosoft.GitKraken diff --git a/manifests/a/alexx2000/DoubleCommander/1.0.11/alexx2000.DoubleCommander.installer.yaml b/manifests/a/alexx2000/DoubleCommander/1.0.11/alexx2000.DoubleCommander.installer.yaml new file mode 100644 index 0000000000000..8792c23c71c02 --- /dev/null +++ b/manifests/a/alexx2000/DoubleCommander/1.0.11/alexx2000.DoubleCommander.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: alexx2000.DoubleCommander +PackageVersion: 1.0.11 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{42A17E47-CE8C-4D73-A90A-72012645394A}' +ReleaseDate: 2023-04-02 +AppsAndFeaturesEntries: +- UpgradeCode: '{D220A081-E26D-4ECD-B399-EFEB4D6678EA}' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/doublecmd/doublecmd/releases/download/v1.0.11/doublecmd-1.0.11.i386-win32.msi + InstallerSha256: 1AFF3E3E2002165AAA25F9A38BCF1131B1A27A5E41E5DAFC73A325FF06F01958 +- Architecture: x64 + InstallerUrl: https://github.com/doublecmd/doublecmd/releases/download/v1.0.11/doublecmd-1.0.11.i386-win32.msi + InstallerSha256: 1AFF3E3E2002165AAA25F9A38BCF1131B1A27A5E41E5DAFC73A325FF06F01958 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/a/alexx2000/DoubleCommander/1.0.11/alexx2000.DoubleCommander.locale.en-US.yaml b/manifests/a/alexx2000/DoubleCommander/1.0.11/alexx2000.DoubleCommander.locale.en-US.yaml new file mode 100644 index 0000000000000..deff303a3e116 --- /dev/null +++ b/manifests/a/alexx2000/DoubleCommander/1.0.11/alexx2000.DoubleCommander.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: alexx2000.DoubleCommander +PackageVersion: 1.0.11 +PackageLocale: en-US +Publisher: Alexander Koblov +PublisherUrl: https://github.com/doublecmd +PublisherSupportUrl: https://github.com/doublecmd/doublecmd/issues +Author: Alexander Koblov +PackageName: Double Commander +PackageUrl: https://doublecmd.sourceforge.io/ +License: GPL-2.0 +LicenseUrl: https://github.com/doublecmd/doublecmd/blob/HEAD/LICENSE.md +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://sourceforge.net/p/doublecmd/code/HEAD/tree/trunk/doc/COPYING.txt +ShortDescription: Free cross platform open source file manager with two panels side by side +Description: Double Commander is a cross platform open source file manager with two panels side by side. It is inspired by Total Commander and features some new ideas. +Moniker: doublecmd +Tags: +- commander +- cross-platform +- file-explorer +- file-manager +- foss +- manager +- open-source +ReleaseNotes: |- + This the bugfix release addressing known problems in 1.0.10 release. + Read the latest release changelog for more details about fixed bugs. +ReleaseNotesUrl: https://github.com/doublecmd/doublecmd/releases/tag/v1.0.11 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/a/alexx2000/DoubleCommander/1.0.11/alexx2000.DoubleCommander.yaml b/manifests/a/alexx2000/DoubleCommander/1.0.11/alexx2000.DoubleCommander.yaml new file mode 100644 index 0000000000000..4fd9e4fc03b64 --- /dev/null +++ b/manifests/a/alexx2000/DoubleCommander/1.0.11/alexx2000.DoubleCommander.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: alexx2000.DoubleCommander +PackageVersion: 1.0.11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/a/aquaproj/aqua/2.23.0/aquaproj.aqua.installer.yaml b/manifests/a/aquaproj/aqua/2.23.0/aquaproj.aqua.installer.yaml new file mode 100644 index 0000000000000..7a284b1be0925 --- /dev/null +++ b/manifests/a/aquaproj/aqua/2.23.0/aquaproj.aqua.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.5.0.schema.json +PackageIdentifier: aquaproj.aqua +PackageVersion: 2.23.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-02-01" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: aqua.exe + PortableCommandAlias: aqua + InstallerUrl: https://github.com/aquaproj/aqua/releases/download/v2.23.0/aqua_windows_arm64.zip + InstallerSha256: d75a4e05603fd13482713995733435f620391b992f0c142178c281ab5a4d2d2d + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: aqua.exe + PortableCommandAlias: aqua + InstallerUrl: https://github.com/aquaproj/aqua/releases/download/v2.23.0/aqua_windows_amd64.zip + InstallerSha256: d810478591c266b698ca966ddd2c1a598d591ffe992973b83340e0e9752e6f5a + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/a/aquaproj/aqua/2.23.0/aquaproj.aqua.locale.en-US.yaml b/manifests/a/aquaproj/aqua/2.23.0/aquaproj.aqua.locale.en-US.yaml new file mode 100644 index 0000000000000..b8c47ed26ad6e --- /dev/null +++ b/manifests/a/aquaproj/aqua/2.23.0/aquaproj.aqua.locale.en-US.yaml @@ -0,0 +1,20 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json +PackageIdentifier: aquaproj.aqua +PackageVersion: 2.23.0 +PackageLocale: en-US +Publisher: aquaproj +PublisherSupportUrl: https://github.com/aquaproj/aqua/discussions +PackageName: aqua +PackageUrl: https://github.com/aquaproj/aqua +License: mit +LicenseUrl: https://github.com/aquaproj/aqua/blob/main/LICENSE +ShortDescription: Declarative CLI Version manager written in Go +Description: | + Declarative CLI Version manager written in Go. + Support Lazy Install, Registry, and continuous update by Renovate. + CLI version is switched seamlessly +Moniker: aqua +ReleaseNotesUrl: https://github.com/aquaproj/aqua/releases/tag/v2.23.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/a/aquaproj/aqua/2.23.0/aquaproj.aqua.yaml b/manifests/a/aquaproj/aqua/2.23.0/aquaproj.aqua.yaml new file mode 100644 index 0000000000000..145c2f2d8ea4d --- /dev/null +++ b/manifests/a/aquaproj/aqua/2.23.0/aquaproj.aqua.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.5.0.schema.json +PackageIdentifier: aquaproj.aqua +PackageVersion: 2.23.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/Balena/BalenaCLI/17.5.1/Balena.BalenaCLI.installer.yaml b/manifests/b/Balena/BalenaCLI/17.5.1/Balena.BalenaCLI.installer.yaml new file mode 100644 index 0000000000000..f94546126ee9d --- /dev/null +++ b/manifests/b/Balena/BalenaCLI/17.5.1/Balena.BalenaCLI.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Balena.BalenaCLI +PackageVersion: 17.5.1 +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Commands: +- balena +ProductCode: balena-cli +ReleaseDate: 2024-01-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/balena-io/balena-cli/releases/download/v17.5.1/balena-cli-v17.5.1-windows-x64-installer.exe + InstallerSha256: AD81E5377FEF7EB89A4C2FE88D88912A04010FC22F0518DBAE6D4C3FD1C8A5F8 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/Balena/BalenaCLI/17.5.1/Balena.BalenaCLI.locale.en-US.yaml b/manifests/b/Balena/BalenaCLI/17.5.1/Balena.BalenaCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..a5eeedef753cc --- /dev/null +++ b/manifests/b/Balena/BalenaCLI/17.5.1/Balena.BalenaCLI.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Balena.BalenaCLI +PackageVersion: 17.5.1 +PackageLocale: en-US +Publisher: Balena Inc. (https://balena.io/) +PublisherUrl: https://github.com/balena-io/balena-cli +PublisherSupportUrl: https://github.com/balena-io/balena-cli/issues +PrivacyUrl: https://www.balena.io/privacy-policy +Author: Juan Cruz Viotti +PackageName: balena-cli +PackageUrl: https://www.balena.io/docs/reference/balena-cli +License: Apache-2.0 +LicenseUrl: https://github.com/balena-io/balena-cli/blob/HEAD/LICENSE +Copyright: Copyright 2023 Balena +ShortDescription: The balena CLI is a Command Line Interface for balenaCloud or openBalena. +Description: |- + The balena CLI is a Command Line Interface for balenaCloud or openBalena. + It is a software tool available for Windows, macOS and Linux, used through a command prompt / terminal window. + It can be used interactively or invoked in scripts. + The balena CLI builds on the balena API and the balena SDK, and can also be directly imported in Node.js applications. + The balena CLI is an open-source project on GitHub, and your contribution is also welcome! +Tags: +- balena-io +- cli +- command-line-interface +- iot +ReleaseNotes: |- + a4a4e33d (Dedupe dependencies, 2024-01-30) + 8d6a621b (Fix target state construction with livepush, 2024-01-30) +ReleaseNotesUrl: https://github.com/balena-io/balena-cli/releases/tag/v17.5.1 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/Balena/BalenaCLI/17.5.1/Balena.BalenaCLI.yaml b/manifests/b/Balena/BalenaCLI/17.5.1/Balena.BalenaCLI.yaml new file mode 100644 index 0000000000000..974c9588c4e47 --- /dev/null +++ b/manifests/b/Balena/BalenaCLI/17.5.1/Balena.BalenaCLI.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Balena.BalenaCLI +PackageVersion: 17.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/12.4.8.13/BitSum.ProcessLasso.Beta.installer.yaml b/manifests/b/BitSum/ProcessLasso/Beta/12.4.8.13/BitSum.ProcessLasso.Beta.installer.yaml new file mode 100644 index 0000000000000..e3f5482e1c5d5 --- /dev/null +++ b/manifests/b/BitSum/ProcessLasso/Beta/12.4.8.13/BitSum.ProcessLasso.Beta.installer.yaml @@ -0,0 +1,22 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json + +PackageIdentifier: BitSum.ProcessLasso.Beta +PackageVersion: 12.4.8.13 +InstallerLocale: en-US +MinimumOSVersion: 10.0.0.0 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://dl.bitsum.com/files/beta/processlassosetup64.exe + InstallerSha256: E1025F80D3064D66A9A936FA1E7B935AB391BAA25CD4B70110938C3BEBD61BA2 +- Architecture: x86 + InstallerUrl: https://dl.bitsum.com/files/beta/processlassosetup32.exe + InstallerSha256: 034889DAB56D1787F5F1DFEA51B958875378CA0658EB03E08DCCE0D4A38D025F +ManifestType: installer +ManifestVersion: 1.2.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/12.4.8.13/BitSum.ProcessLasso.Beta.locale.en-US.yaml b/manifests/b/BitSum/ProcessLasso/Beta/12.4.8.13/BitSum.ProcessLasso.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..1fa381e5d5c52 --- /dev/null +++ b/manifests/b/BitSum/ProcessLasso/Beta/12.4.8.13/BitSum.ProcessLasso.Beta.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json + +PackageIdentifier: BitSum.ProcessLasso.Beta +PackageVersion: 12.4.8.13 +PackageLocale: en-US +Publisher: Bitsum +PublisherUrl: https://bitsum.com +PublisherSupportUrl: https://community.bitsum.com/forum/ +PrivacyUrl: https://bitsum.com/privacy-policy/ +Author: Bitsum +PackageName: Process Lasso Beta +PackageUrl: https://bitsum.com +License: Proprietary +LicenseUrl: https://bitsum.com/terms-of-use/ +Copyright: Copyright (c) Bitsum LLC +CopyrightUrl: https://bitsum.com/our-copyright-notice/ +ShortDescription: Process Lasso is a tool designed to manage and edit how your processes and services run. +Description: Process Lasso is a tool designed to manage and edit how your processes and services run. It offers a robust list of capabilities including default process priorities and affinities, termination of disallowed processes, instance count limits, a system responsiveness graph, logging of processes, keep select processes running (auto-restart), and much more. +Moniker: processlasso-beta +Tags: +- execute +- manager +- optimizer +- priority +- process +ManifestType: defaultLocale +ManifestVersion: 1.2.0 diff --git a/manifests/m/MathiasSvensson/MultiCommander/12.8.0.2929/MathiasSvensson.MultiCommander.yaml b/manifests/b/BitSum/ProcessLasso/Beta/12.4.8.13/BitSum.ProcessLasso.Beta.yaml similarity index 53% rename from manifests/m/MathiasSvensson/MultiCommander/12.8.0.2929/MathiasSvensson.MultiCommander.yaml rename to manifests/b/BitSum/ProcessLasso/Beta/12.4.8.13/BitSum.ProcessLasso.Beta.yaml index f7b4df7706b5b..6bd22c4ae8c4b 100644 --- a/manifests/m/MathiasSvensson/MultiCommander/12.8.0.2929/MathiasSvensson.MultiCommander.yaml +++ b/manifests/b/BitSum/ProcessLasso/Beta/12.4.8.13/BitSum.ProcessLasso.Beta.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.1.4 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: MathiasSvensson.MultiCommander -PackageVersion: 12.8.0.2929 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json + +PackageIdentifier: BitSum.ProcessLasso.Beta +PackageVersion: 12.4.8.13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.2.0 diff --git a/manifests/b/BleuBleu/FamiStudio/4.1.0/BleuBleu.FamiStudio.installer.yaml b/manifests/b/BleuBleu/FamiStudio/4.1.0/BleuBleu.FamiStudio.installer.yaml new file mode 100644 index 0000000000000..34b22aadbec27 --- /dev/null +++ b/manifests/b/BleuBleu/FamiStudio/4.1.0/BleuBleu.FamiStudio.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: BleuBleu.FamiStudio +PackageVersion: 4.1.0 +InstallerLocale: en-US +InstallerType: zip +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + - PackageIdentifier: Microsoft.DotNet.Runtime.5 +Installers: +- Architecture: x64 + NestedInstallerType: msi + NestedInstallerFiles: + - RelativeFilePath: Setup.msi + InstallerUrl: https://github.com/BleuBleu/FamiStudio/releases/download/4.1.0/FamiStudio410-WinInstaller.zip + InstallerSha256: B8F6B3CE5203D5AA4237C4FB46E0B660D9000A0AB5F719FABBEA23172A1194C7 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/BleuBleu/FamiStudio/4.1.0/BleuBleu.FamiStudio.locale.en-US.yaml b/manifests/b/BleuBleu/FamiStudio/4.1.0/BleuBleu.FamiStudio.locale.en-US.yaml new file mode 100644 index 0000000000000..a86e51dd595c2 --- /dev/null +++ b/manifests/b/BleuBleu/FamiStudio/4.1.0/BleuBleu.FamiStudio.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: BleuBleu.FamiStudio +PackageVersion: 4.1.0 +PackageLocale: en-US +Publisher: BleuBleu +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +PackageName: FamiStudio +# PackageUrl: +License: MIT License +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: FamiStudio NES Music Editor +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/BleuBleu/FamiStudio/4.1.0/BleuBleu.FamiStudio.yaml b/manifests/b/BleuBleu/FamiStudio/4.1.0/BleuBleu.FamiStudio.yaml new file mode 100644 index 0000000000000..3a1c27125f3cf --- /dev/null +++ b/manifests/b/BleuBleu/FamiStudio/4.1.0/BleuBleu.FamiStudio.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: BleuBleu.FamiStudio +PackageVersion: 4.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/BleuBleu/FamiStudio/4.1.1/BleuBleu.FamiStudio.installer.yaml b/manifests/b/BleuBleu/FamiStudio/4.1.1/BleuBleu.FamiStudio.installer.yaml new file mode 100644 index 0000000000000..6f0acc603db4d --- /dev/null +++ b/manifests/b/BleuBleu/FamiStudio/4.1.1/BleuBleu.FamiStudio.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: BleuBleu.FamiStudio +PackageVersion: 4.1.1 +InstallerLocale: en-US +InstallerType: zip +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + - PackageIdentifier: Microsoft.DotNet.Runtime.5 +Installers: +- Architecture: x64 + NestedInstallerType: msi + NestedInstallerFiles: + - RelativeFilePath: Setup.msi + InstallerUrl: https://github.com/BleuBleu/FamiStudio/releases/download/4.1.1/FamiStudio411-WinInstaller.zip + InstallerSha256: CF69C4DB96876115C6CDD6858A510CBC629A5B9EE6ADAB49A9C807B9D3880755 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/BleuBleu/FamiStudio/4.1.1/BleuBleu.FamiStudio.locale.en-US.yaml b/manifests/b/BleuBleu/FamiStudio/4.1.1/BleuBleu.FamiStudio.locale.en-US.yaml new file mode 100644 index 0000000000000..72f35c648b71e --- /dev/null +++ b/manifests/b/BleuBleu/FamiStudio/4.1.1/BleuBleu.FamiStudio.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: BleuBleu.FamiStudio +PackageVersion: 4.1.1 +PackageLocale: en-US +Publisher: BleuBleu +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +PackageName: FamiStudio +# PackageUrl: +License: MIT License +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: FamiStudio NES Music Editor +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/BleuBleu/FamiStudio/4.1.1/BleuBleu.FamiStudio.yaml b/manifests/b/BleuBleu/FamiStudio/4.1.1/BleuBleu.FamiStudio.yaml new file mode 100644 index 0000000000000..d4d35d86401ec --- /dev/null +++ b/manifests/b/BleuBleu/FamiStudio/4.1.1/BleuBleu.FamiStudio.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: BleuBleu.FamiStudio +PackageVersion: 4.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/BleuBleu/FamiStudio/4.1.2/BleuBleu.FamiStudio.installer.yaml b/manifests/b/BleuBleu/FamiStudio/4.1.2/BleuBleu.FamiStudio.installer.yaml new file mode 100644 index 0000000000000..02a20d8ebda8e --- /dev/null +++ b/manifests/b/BleuBleu/FamiStudio/4.1.2/BleuBleu.FamiStudio.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: BleuBleu.FamiStudio +PackageVersion: 4.1.2 +InstallerLocale: en-US +InstallerType: zip +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + - PackageIdentifier: Microsoft.DotNet.Runtime.5 +Installers: +- Architecture: x64 + NestedInstallerType: msi + NestedInstallerFiles: + - RelativeFilePath: Setup.msi + InstallerUrl: https://github.com/BleuBleu/FamiStudio/releases/download/4.1.2/FamiStudio412-WinInstaller.zip + InstallerSha256: 50D542FD90006F20318334FC36FE54B25DA46E6EA50E4AF864DE92BAB0B5A7E1 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/BleuBleu/FamiStudio/4.1.2/BleuBleu.FamiStudio.locale.en-US.yaml b/manifests/b/BleuBleu/FamiStudio/4.1.2/BleuBleu.FamiStudio.locale.en-US.yaml new file mode 100644 index 0000000000000..c63ec354e3d45 --- /dev/null +++ b/manifests/b/BleuBleu/FamiStudio/4.1.2/BleuBleu.FamiStudio.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: BleuBleu.FamiStudio +PackageVersion: 4.1.2 +PackageLocale: en-US +Publisher: BleuBleu +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +PackageName: FamiStudio +# PackageUrl: +License: MIT License +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: FamiStudio NES Music Editor +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/BleuBleu/FamiStudio/4.1.2/BleuBleu.FamiStudio.yaml b/manifests/b/BleuBleu/FamiStudio/4.1.2/BleuBleu.FamiStudio.yaml new file mode 100644 index 0000000000000..3c060e38c8906 --- /dev/null +++ b/manifests/b/BleuBleu/FamiStudio/4.1.2/BleuBleu.FamiStudio.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: BleuBleu.FamiStudio +PackageVersion: 4.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/BleuBleu/FamiStudio/4.1.3/BleuBleu.FamiStudio.installer.yaml b/manifests/b/BleuBleu/FamiStudio/4.1.3/BleuBleu.FamiStudio.installer.yaml new file mode 100644 index 0000000000000..0b7ec59036763 --- /dev/null +++ b/manifests/b/BleuBleu/FamiStudio/4.1.3/BleuBleu.FamiStudio.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: BleuBleu.FamiStudio +PackageVersion: 4.1.3 +InstallerLocale: en-US +InstallerType: zip +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + - PackageIdentifier: Microsoft.DotNet.Runtime.5 +Installers: +- Architecture: x64 + NestedInstallerType: msi + NestedInstallerFiles: + - RelativeFilePath: Setup.msi + InstallerUrl: https://github.com/BleuBleu/FamiStudio/releases/download/4.1.3/FamiStudio413-WinInstaller.zip + InstallerSha256: DA75AC3E336CA668367156FB0CF1789070C11D49AB41DA3CEEA059799EF16FBF +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/BleuBleu/FamiStudio/4.1.3/BleuBleu.FamiStudio.locale.en-US.yaml b/manifests/b/BleuBleu/FamiStudio/4.1.3/BleuBleu.FamiStudio.locale.en-US.yaml new file mode 100644 index 0000000000000..545ae69d0d227 --- /dev/null +++ b/manifests/b/BleuBleu/FamiStudio/4.1.3/BleuBleu.FamiStudio.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: BleuBleu.FamiStudio +PackageVersion: 4.1.3 +PackageLocale: en-US +Publisher: BleuBleu +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +PackageName: FamiStudio +# PackageUrl: +License: MIT License +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: FamiStudio NES Music Editor +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/BleuBleu/FamiStudio/4.1.3/BleuBleu.FamiStudio.yaml b/manifests/b/BleuBleu/FamiStudio/4.1.3/BleuBleu.FamiStudio.yaml new file mode 100644 index 0000000000000..2f93bb4223f14 --- /dev/null +++ b/manifests/b/BleuBleu/FamiStudio/4.1.3/BleuBleu.FamiStudio.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: BleuBleu.FamiStudio +PackageVersion: 4.1.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.0/BlueBubbles.BlueBubbles.installer.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.0/BlueBubbles.BlueBubbles.installer.yaml new file mode 100644 index 0000000000000..ace6757d9a8c6 --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.0/BlueBubbles.BlueBubbles.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.0 +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/BlueBubblesApp/bluebubbles-app/releases/download/v1.12.0+53/bluebubbles-windows.exe + InstallerSha256: 88F2D2A5844C8DB26B2C67625F71717F1AA7CFA654F0ECE642647323631AAD73 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/BlueBubblesApp/bluebubbles-app/releases/download/v1.12.0+53/bluebubbles-windows.exe + InstallerSha256: 88F2D2A5844C8DB26B2C67625F71717F1AA7CFA654F0ECE642647323631AAD73 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.0/BlueBubbles.BlueBubbles.locale.en-US.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.0/BlueBubbles.BlueBubbles.locale.en-US.yaml new file mode 100644 index 0000000000000..fb002b8c686d9 --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.0/BlueBubbles.BlueBubbles.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.0 +PackageLocale: en-US +Publisher: BlueBubbles +PublisherUrl: https://bluebubbles.app/ +PublisherSupportUrl: https://github.com/BlueBubblesApp/bluebubbles-app/issues +# PrivacyUrl: +# Author: +PackageName: BlueBubbles +PackageUrl: https://bluebubbles.app/ +License: Apache-2.0 +LicenseUrl: https://github.com/BlueBubblesApp/bluebubbles-app/blob/master/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: A cross-platform app ecosystem, bringing iMessage to Android, PC (Windows, Linux, & even macOS), and Web! +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.0/BlueBubbles.BlueBubbles.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.0/BlueBubbles.BlueBubbles.yaml new file mode 100644 index 0000000000000..3f3ac826488b4 --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.0/BlueBubbles.BlueBubbles.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.2/BlueBubbles.BlueBubbles.installer.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.2/BlueBubbles.BlueBubbles.installer.yaml new file mode 100644 index 0000000000000..e5568bf0b18fb --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.2/BlueBubbles.BlueBubbles.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.2 +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/BlueBubblesApp/bluebubbles-app/releases/download/v1.12.2+55/bluebubbles-windows.exe + InstallerSha256: F18423AC71BB83E5BCA8E57789773003D553AB464EAE1F92D8970D8198EE9D6C + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/BlueBubblesApp/bluebubbles-app/releases/download/v1.12.2+55/bluebubbles-windows.exe + InstallerSha256: F18423AC71BB83E5BCA8E57789773003D553AB464EAE1F92D8970D8198EE9D6C + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.2/BlueBubbles.BlueBubbles.locale.en-US.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.2/BlueBubbles.BlueBubbles.locale.en-US.yaml new file mode 100644 index 0000000000000..ae6535fa726f9 --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.2/BlueBubbles.BlueBubbles.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.2 +PackageLocale: en-US +Publisher: BlueBubbles +PublisherUrl: https://bluebubbles.app/ +PublisherSupportUrl: https://github.com/BlueBubblesApp/bluebubbles-app/issues +# PrivacyUrl: +# Author: +PackageName: BlueBubbles +PackageUrl: https://bluebubbles.app/ +License: Apache-2.0 +LicenseUrl: https://github.com/BlueBubblesApp/bluebubbles-app/blob/master/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: A cross-platform app ecosystem, bringing iMessage to Android, PC (Windows, Linux, & even macOS), and Web! +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.2/BlueBubbles.BlueBubbles.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.2/BlueBubbles.BlueBubbles.yaml new file mode 100644 index 0000000000000..1ec587cfc23ee --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.2/BlueBubbles.BlueBubbles.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.4/BlueBubbles.BlueBubbles.installer.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.4/BlueBubbles.BlueBubbles.installer.yaml new file mode 100644 index 0000000000000..3b921dac5d516 --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.4/BlueBubbles.BlueBubbles.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.4 +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/BlueBubblesApp/bluebubbles-app/releases/download/v1.12.4+58/bluebubbles-windows.exe + InstallerSha256: CF789AD4DBBD4C393CC89F369B8745A4C53CD23D989A50A4EC96FD45E7FE6A87 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/BlueBubblesApp/bluebubbles-app/releases/download/v1.12.4+58/bluebubbles-windows.exe + InstallerSha256: CF789AD4DBBD4C393CC89F369B8745A4C53CD23D989A50A4EC96FD45E7FE6A87 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.4/BlueBubbles.BlueBubbles.locale.en-US.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.4/BlueBubbles.BlueBubbles.locale.en-US.yaml new file mode 100644 index 0000000000000..452467dda756f --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.4/BlueBubbles.BlueBubbles.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.4 +PackageLocale: en-US +Publisher: BlueBubbles +PublisherUrl: https://bluebubbles.app/ +PublisherSupportUrl: https://github.com/BlueBubblesApp/bluebubbles-app/issues +# PrivacyUrl: +# Author: +PackageName: BlueBubbles +PackageUrl: https://bluebubbles.app/ +License: Apache-2.0 +LicenseUrl: https://github.com/BlueBubblesApp/bluebubbles-app/blob/master/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: A cross-platform app ecosystem, bringing iMessage to Android, PC (Windows, Linux, & even macOS), and Web! +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.4/BlueBubbles.BlueBubbles.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.4/BlueBubbles.BlueBubbles.yaml new file mode 100644 index 0000000000000..520eef8557c8f --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.4/BlueBubbles.BlueBubbles.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.5/BlueBubbles.BlueBubbles.installer.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.5/BlueBubbles.BlueBubbles.installer.yaml new file mode 100644 index 0000000000000..26658f4a27950 --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.5/BlueBubbles.BlueBubbles.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.5 +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/BlueBubblesApp/bluebubbles-app/releases/download/v1.12.5+59/bluebubbles-windows.exe + InstallerSha256: 20CB360F1C1F77222985B70FE618A66F7B3552C5B15E49BD67BDC965E220BC83 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/BlueBubblesApp/bluebubbles-app/releases/download/v1.12.5+59/bluebubbles-windows.exe + InstallerSha256: 20CB360F1C1F77222985B70FE618A66F7B3552C5B15E49BD67BDC965E220BC83 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.5/BlueBubbles.BlueBubbles.locale.en-US.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.5/BlueBubbles.BlueBubbles.locale.en-US.yaml new file mode 100644 index 0000000000000..9cac514f1c73b --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.5/BlueBubbles.BlueBubbles.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.5 +PackageLocale: en-US +Publisher: BlueBubbles +PublisherUrl: https://bluebubbles.app/ +PublisherSupportUrl: https://github.com/BlueBubblesApp/bluebubbles-app/issues +# PrivacyUrl: +# Author: +PackageName: BlueBubbles +PackageUrl: https://bluebubbles.app/ +License: Apache-2.0 +LicenseUrl: https://github.com/BlueBubblesApp/bluebubbles-app/blob/master/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: A cross-platform app ecosystem, bringing iMessage to Android, PC (Windows, Linux, & even macOS), and Web! +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.5/BlueBubbles.BlueBubbles.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.5/BlueBubbles.BlueBubbles.yaml new file mode 100644 index 0000000000000..a85b951a9588e --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.5/BlueBubbles.BlueBubbles.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.6/BlueBubbles.BlueBubbles.installer.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.6/BlueBubbles.BlueBubbles.installer.yaml new file mode 100644 index 0000000000000..37319f7a1754a --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.6/BlueBubbles.BlueBubbles.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.6 +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/BlueBubblesApp/bluebubbles-app/releases/download/v1.12.6+60/bluebubbles-windows.exe + InstallerSha256: B19FFB88F7010507BE2221EA29415AF0294B4EA1792E3F711DDADBE7EA8CC6AE + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/BlueBubblesApp/bluebubbles-app/releases/download/v1.12.6+60/bluebubbles-windows.exe + InstallerSha256: B19FFB88F7010507BE2221EA29415AF0294B4EA1792E3F711DDADBE7EA8CC6AE + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.6/BlueBubbles.BlueBubbles.locale.en-US.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.6/BlueBubbles.BlueBubbles.locale.en-US.yaml new file mode 100644 index 0000000000000..3e0585b7625a2 --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.6/BlueBubbles.BlueBubbles.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.6 +PackageLocale: en-US +Publisher: BlueBubbles +PublisherUrl: https://bluebubbles.app/ +PublisherSupportUrl: https://github.com/BlueBubblesApp/bluebubbles-app/issues +# PrivacyUrl: +# Author: +PackageName: BlueBubbles +PackageUrl: https://bluebubbles.app/ +License: Apache-2.0 +LicenseUrl: https://github.com/BlueBubblesApp/bluebubbles-app/blob/master/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: A cross-platform app ecosystem, bringing iMessage to Android, PC (Windows, Linux, & even macOS), and Web! +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.6/BlueBubbles.BlueBubbles.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.6/BlueBubbles.BlueBubbles.yaml new file mode 100644 index 0000000000000..49beb08f602d0 --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.6/BlueBubbles.BlueBubbles.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.7/BlueBubbles.BlueBubbles.installer.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.7/BlueBubbles.BlueBubbles.installer.yaml new file mode 100644 index 0000000000000..59697774d8ac5 --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.7/BlueBubbles.BlueBubbles.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.7 +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/BlueBubblesApp/bluebubbles-app/releases/download/v1.12.7+61/bluebubbles-windows.exe + InstallerSha256: 5EA11C4E0C261C1232B08C20AF5CBDD1F502E5C1D3D646DB2B1A9F8F7DEE1042 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/BlueBubblesApp/bluebubbles-app/releases/download/v1.12.7+61/bluebubbles-windows.exe + InstallerSha256: 5EA11C4E0C261C1232B08C20AF5CBDD1F502E5C1D3D646DB2B1A9F8F7DEE1042 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.7/BlueBubbles.BlueBubbles.locale.en-US.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.7/BlueBubbles.BlueBubbles.locale.en-US.yaml new file mode 100644 index 0000000000000..49ba22dee9c9a --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.7/BlueBubbles.BlueBubbles.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.7 +PackageLocale: en-US +Publisher: BlueBubbles +PublisherUrl: https://bluebubbles.app/ +PublisherSupportUrl: https://github.com/BlueBubblesApp/bluebubbles-app/issues +# PrivacyUrl: +# Author: +PackageName: BlueBubbles +PackageUrl: https://bluebubbles.app/ +License: Apache-2.0 +LicenseUrl: https://github.com/BlueBubblesApp/bluebubbles-app/blob/master/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: A cross-platform app ecosystem, bringing iMessage to Android, PC (Windows, Linux, & even macOS), and Web! +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/BlueBubbles/BlueBubbles/1.12.7/BlueBubbles.BlueBubbles.yaml b/manifests/b/BlueBubbles/BlueBubbles/1.12.7/BlueBubbles.BlueBubbles.yaml new file mode 100644 index 0000000000000..eab53236eaf57 --- /dev/null +++ b/manifests/b/BlueBubbles/BlueBubbles/1.12.7/BlueBubbles.BlueBubbles.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: BlueBubbles.BlueBubbles +PackageVersion: 1.12.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/Brave/Brave/121.1.62.156/Brave.Brave.installer.yaml b/manifests/b/Brave/Brave/121.1.62.156/Brave.Brave.installer.yaml new file mode 100644 index 0000000000000..e37d0a68de7e3 --- /dev/null +++ b/manifests/b/Brave/Brave/121.1.62.156/Brave.Brave.installer.yaml @@ -0,0 +1,81 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Brave.Brave +PackageVersion: 121.1.62.156 +InstallerType: exe +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" +ExpectedReturnCodes: +- InstallerReturnCode: 3 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 4 + ReturnResponse: downgrade +- InstallerReturnCode: 22 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 60 + ReturnResponse: installInProgress +UpgradeBehavior: install +Protocols: +- ftp +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://updates-cdn.bravesoftware.com/build/Brave-Release/x86-rel/win/121.1.62.156/brave_installer-ia32.exe + InstallerSha256: 0A3CC393D944244509F1EB8ECAADFBC01B845B84509A7863726DF63F2D29F8EA + InstallerSwitches: + Custom: --do-not-launch-chrome + ProductCode: BraveSoftware Brave-Browser +- Architecture: x86 + Scope: machine + InstallerUrl: https://updates-cdn.bravesoftware.com/build/Brave-Release/x86-rel/win/121.1.62.156/brave_installer-ia32.exe + InstallerSha256: 0A3CC393D944244509F1EB8ECAADFBC01B845B84509A7863726DF63F2D29F8EA + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level + ProductCode: BraveSoftware Brave-Browser +- Architecture: x64 + Scope: user + InstallerUrl: https://updates-cdn.bravesoftware.com/build/Brave-Release/x64-rel/win/121.1.62.156/brave_installer-x64.exe + InstallerSha256: FEA024D610B998644F1FB2A3028A5E57EBCCF7AC6226E2E075CF0CF024FF2BFC + InstallerSwitches: + Custom: --do-not-launch-chrome + ProductCode: BraveSoftware Brave-Browser +- Architecture: x64 + Scope: machine + InstallerUrl: https://updates-cdn.bravesoftware.com/build/Brave-Release/x64-rel/win/121.1.62.156/brave_installer-x64.exe + InstallerSha256: FEA024D610B998644F1FB2A3028A5E57EBCCF7AC6226E2E075CF0CF024FF2BFC + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level + ProductCode: BraveSoftware Brave-Browser +- Architecture: arm64 + Scope: user + InstallerUrl: https://updates-cdn.bravesoftware.com/build/Brave-Release/arm64-rel/win/121.1.62.156/brave_installer-arm64.exe + InstallerSha256: A44C9CEF368AE7AFABBE622A11B5ABFC8AB8C715C1CFABD11E6AE1B63B3C65BC + InstallerSwitches: + Custom: --do-not-launch-chrome + ProductCode: BraveSoftware Brave-Browser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://updates-cdn.bravesoftware.com/build/Brave-Release/arm64-rel/win/121.1.62.156/brave_installer-arm64.exe + InstallerSha256: A44C9CEF368AE7AFABBE622A11B5ABFC8AB8C715C1CFABD11E6AE1B63B3C65BC + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level + ProductCode: BraveSoftware Brave-Browser +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/Brave/Brave/121.1.62.156/Brave.Brave.locale.en-US.yaml b/manifests/b/Brave/Brave/121.1.62.156/Brave.Brave.locale.en-US.yaml new file mode 100644 index 0000000000000..87aabc8de4746 --- /dev/null +++ b/manifests/b/Brave/Brave/121.1.62.156/Brave.Brave.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Brave.Brave +PackageVersion: 121.1.62.156 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PublisherSupportUrl: https://support.brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave +PackageUrl: https://brave.com/download +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: Copyright © 2024 The Brave Authors. All rights reserved. +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: Secure, Fast & Private Web Browser with Adblocker +Description: |- + The new Brave browser blocks ads and trackers that slow you down and invade your privacy. + Discover a new way of thinking about how the web can work. +# Moniker: +Tags: +- browser +- chromium +- internet +- privacy +- web +- webpage +ReleaseNotes: |- + Web3 + - Fixed unlocking Brave Wallet via the panel sometimes closes the panel. (#35612) + General + - Updated URL bar icon for local files. (#35316) + - Decreased URL bar height to 32px. (#35506) + - Fixed sync crash when forcing device polling in certain cases. (#35554) + - Fixed “declarativeNetRequest” rules not being added when Brave is launched. (#30854) + - Fixed out of sync cookie settings under brave://settings/cookies and brave://settings/shields. (#35415) + - Fixed solid color for the New Tab Page background not being respected. (#35596) + - Fixed missing background for “Allowed” and “Not allowed” URL buttons when using light theme. (#35358) + - Fixed clipped hover state for icons in the URL bar. (#35507) + - Upgraded Chromium to 121.0.6167.139. (#35704) +ReleaseNotesUrl: https://brave.com/latest +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://brave.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/Brave/Brave/121.1.62.156/Brave.Brave.locale.zh-CN.yaml b/manifests/b/Brave/Brave/121.1.62.156/Brave.Brave.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b6f5d904079db --- /dev/null +++ b/manifests/b/Brave/Brave/121.1.62.156/Brave.Brave.locale.zh-CN.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Brave.Brave +PackageVersion: 121.1.62.156 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PublisherSupportUrl: https://support.brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave +PackageUrl: https://brave.com/zh/download +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: 版权所有2024 Brave Software Inc。保留所有权利。 +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: 带有广告拦截器的安全、快速且私密的网络浏览器 +Description: 全新的 Brave 浏览器会阻止那些导致运行速度变慢和侵犯隐私的广告和跟踪程序。探索重新思考网络运作的全新方式。 +# Moniker: +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +# ReleaseNotes: +ReleaseNotesUrl: https://brave.com/latest +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/b/Brave/Brave/121.1.62.156/Brave.Brave.yaml b/manifests/b/Brave/Brave/121.1.62.156/Brave.Brave.yaml new file mode 100644 index 0000000000000..d2aaed371d637 --- /dev/null +++ b/manifests/b/Brave/Brave/121.1.62.156/Brave.Brave.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Brave.Brave +PackageVersion: 121.1.62.156 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/Brave/Brave/Beta/121.1.63.141/Brave.Brave.Beta.installer.yaml b/manifests/b/Brave/Brave/Beta/121.1.63.141/Brave.Brave.Beta.installer.yaml new file mode 100644 index 0000000000000..1dcc76ca8f544 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/121.1.63.141/Brave.Brave.Beta.installer.yaml @@ -0,0 +1,80 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Brave.Brave.Beta +PackageVersion: 121.1.63.141 +InstallerType: exe +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" +ExpectedReturnCodes: +- InstallerReturnCode: 3 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 4 + ReturnResponse: downgrade +- InstallerReturnCode: 22 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 60 + ReturnResponse: installInProgress +UpgradeBehavior: install +Protocols: +- ftp +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://updates-cdn.bravesoftware.com/build/Brave-Browser-Beta/x86-be/win/121.1.63.141/brave_installer-ia32.exe + InstallerSha256: B6760FCFC12752D76A843A5321EB1D588ABB1B28CC888B9EF79FBD29CECBDA18 + InstallerSwitches: + Custom: --chrome-beta --do-not-launch-chrome + ProductCode: BraveSoftware Brave-Browser-Beta +- Architecture: x86 + Scope: machine + InstallerUrl: https://updates-cdn.bravesoftware.com/build/Brave-Browser-Beta/x86-be/win/121.1.63.141/brave_installer-ia32.exe + InstallerSha256: B6760FCFC12752D76A843A5321EB1D588ABB1B28CC888B9EF79FBD29CECBDA18 + InstallerSwitches: + Custom: --chrome-beta --do-not-launch-chrome --system-level + ProductCode: BraveSoftware Brave-Browser-Beta +- Architecture: x64 + Scope: user + InstallerUrl: https://updates-cdn.bravesoftware.com/build/Brave-Browser-Beta/x64-be/win/121.1.63.141/brave_installer-x64.exe + InstallerSha256: D43D93F0406A00918E8541B749CF5236CE9EE84F31CE1F013AB8EE65CF2B4550 + InstallerSwitches: + Custom: --chrome-beta --do-not-launch-chrome + ProductCode: BraveSoftware Brave-Browser-Beta +- Architecture: x64 + Scope: machine + InstallerUrl: https://updates-cdn.bravesoftware.com/build/Brave-Browser-Beta/x64-be/win/121.1.63.141/brave_installer-x64.exe + InstallerSha256: D43D93F0406A00918E8541B749CF5236CE9EE84F31CE1F013AB8EE65CF2B4550 + InstallerSwitches: + Custom: --chrome-beta --do-not-launch-chrome --system-level + ProductCode: BraveSoftware Brave-Browser-Beta +- Architecture: arm64 + Scope: user + InstallerUrl: https://updates-cdn.bravesoftware.com/build/Brave-Browser-Beta/arm64-be/win/121.1.63.141/brave_installer-arm64.exe + InstallerSha256: D5D9B8095077D15847B0D27AC653F339DB60879B4377459D0BE6E5CA55970369 + InstallerSwitches: + Custom: --chrome-beta --do-not-launch-chrome + ProductCode: BraveSoftware Brave-Browser-Beta +- Architecture: arm64 + Scope: machine + InstallerUrl: https://updates-cdn.bravesoftware.com/build/Brave-Browser-Beta/arm64-be/win/121.1.63.141/brave_installer-arm64.exe + InstallerSha256: D5D9B8095077D15847B0D27AC653F339DB60879B4377459D0BE6E5CA55970369 + InstallerSwitches: + Custom: --chrome-beta --do-not-launch-chrome --system-level + ProductCode: BraveSoftware Brave-Browser-Beta +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/Brave/Brave/Beta/121.1.63.141/Brave.Brave.Beta.locale.en-US.yaml b/manifests/b/Brave/Brave/Beta/121.1.63.141/Brave.Brave.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..cf0ed749a1696 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/121.1.63.141/Brave.Brave.Beta.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Brave.Brave.Beta +PackageVersion: 121.1.63.141 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PublisherSupportUrl: https://support.brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Beta +PackageUrl: https://brave.com/download-beta +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: Copyright © 2024 The Brave Authors. All rights reserved. +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: Brave Beta is an early preview for new versions of Brave that showcases the newest advances that we're bringing to your browser. +Description: |- + Brave Beta is an early preview for new versions of Brave. + This build showcases the newest advances that we’re bringing to your browser and it’s ready for your daily use. + Brave Beta automatically sends us crash reports when things go wrong. +# Moniker: +Tags: +- browser +- chromium +- internet +- privacy +- web +- webpage +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://brave.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/Brave/Brave/Beta/121.1.63.141/Brave.Brave.Beta.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Beta/121.1.63.141/Brave.Brave.Beta.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ae3d6fd48191c --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/121.1.63.141/Brave.Brave.Beta.locale.zh-CN.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Brave.Brave.Beta +PackageVersion: 121.1.63.141 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PublisherSupportUrl: https://support.brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Beta +PackageUrl: https://brave.com/download-beta +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: 版权所有2024 Brave Software Inc。保留所有权利。 +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: Brave Beta 是 Brave 新版本的早期预览,展示了我们为您的浏览器带来的最新进展。 +Description: Brave Beta 是 Brave 新版本的早期预览,展示了我们为您的浏览器带来的最新进展,并已经准备好供您日常使用。当出现问题时,Brave Beta 会自动向我们发送崩溃报告。 +# Moniker: +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/b/Brave/Brave/Beta/121.1.63.141/Brave.Brave.Beta.yaml b/manifests/b/Brave/Brave/Beta/121.1.63.141/Brave.Brave.Beta.yaml new file mode 100644 index 0000000000000..4b64f5bd29833 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/121.1.63.141/Brave.Brave.Beta.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Brave.Brave.Beta +PackageVersion: 121.1.63.141 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/ByteDance/DouyinIDE/4.2.0/ByteDance.DouyinIDE.installer.yaml b/manifests/b/ByteDance/DouyinIDE/4.2.0/ByteDance.DouyinIDE.installer.yaml new file mode 100644 index 0000000000000..8fdaf5758254a --- /dev/null +++ b/manifests/b/ByteDance/DouyinIDE/4.2.0/ByteDance.DouyinIDE.installer.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: ByteDance.DouyinIDE +PackageVersion: 4.2.0 +InstallerType: nullsoft +InstallerSwitches: + Custom: /currentuser +UpgradeBehavior: install +Protocols: +- bytedanceide +FileExtensions: +- js +- json +- ts +- ttml +- ttss +ReleaseDate: 2024-01-30 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://sf1-cdn-tos.douyinstatic.com/obj/microapp/frontend/ide/package/obj/developer/ide/11540631/win32/抖音开发者工具-4.2.0.exe + InstallerSha256: 4CEE645C34451C498BBE01657B9FA6336340641307775F699111A6660CA10DA4 + ProductCode: 0d6cc698-a1aa-5593-a60b-0310adcebfe2 +- Architecture: x64 + Scope: machine + InstallerUrl: https://sf1-cdn-tos.douyinstatic.com/obj/microapp/frontend/ide/package/obj/developer/ide/11540631/win32/抖音开发者工具-4.2.0.exe + InstallerSha256: 4CEE645C34451C498BBE01657B9FA6336340641307775F699111A6660CA10DA4 + ProductCode: 0d6cc698-a1aa-5593-a60b-0310adcebfe2 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/ByteDance/DouyinIDE/4.2.0/ByteDance.DouyinIDE.locale.en-US.yaml b/manifests/b/ByteDance/DouyinIDE/4.2.0/ByteDance.DouyinIDE.locale.en-US.yaml new file mode 100644 index 0000000000000..65a77086f59ff --- /dev/null +++ b/manifests/b/ByteDance/DouyinIDE/4.2.0/ByteDance.DouyinIDE.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: ByteDance.DouyinIDE +PackageVersion: 4.2.0 +PackageLocale: en-US +Publisher: Beijing Douyin Information Service Co., Ltd. +PublisherUrl: https://developer.open-douyin.com/ +PublisherSupportUrl: https://developer.open-douyin.com/forum +# PrivacyUrl: +Author: Beijing Douyin Information Service Co., Ltd. +PackageName: 抖音开发者工具 +PackageUrl: https://developer.open-douyin.com/docs/resource/zh-CN/mini-app/develop/developer-instrument/overview +License: Freeware +# LicenseUrl: +Copyright: Copyright © ByteDance 2024 +# CopyrightUrl: +ShortDescription: A desktop IDE for ByteDance Mini-APP developers +Description: Douyin IDE is a desktop IDE (Integrated Development Environment) for ByteDance Mini-APP developers, providing Mini-APP development, debugging, previewing and uploading, as well as developer services such as intelligent customer service. It supports Windows and macOS, and is designed to help developers develop Mini-APP more efficiently. +# Moniker: +Tags: +- bytedance +- develop +- development +- devtools +- douyin +- ide +- mini-app +- mini-program +- toutiao +- web +- xigua +# ReleaseNotes: +ReleaseNotesUrl: https://developer.open-douyin.com/docs/resource/zh-CN/mini-app/develop/developer-instrument/download/developer-instrument-update-and-download +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://developer.open-douyin.com/docs/resource/zh-CN/mini-app/develop/developer-instrument/questions +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/ByteDance/DouyinIDE/4.2.0/ByteDance.DouyinIDE.locale.zh-CN.yaml b/manifests/b/ByteDance/DouyinIDE/4.2.0/ByteDance.DouyinIDE.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1182ff61d2467 --- /dev/null +++ b/manifests/b/ByteDance/DouyinIDE/4.2.0/ByteDance.DouyinIDE.locale.zh-CN.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: ByteDance.DouyinIDE +PackageVersion: 4.2.0 +PackageLocale: zh-CN +Publisher: 北京抖音信息服务有限公司 +PublisherUrl: https://developer.open-douyin.com/ +PublisherSupportUrl: https://developer.open-douyin.com/forum +# PrivacyUrl: +Author: 北京抖音信息服务有限公司 +PackageName: 抖音开发者工具 +PackageUrl: https://developer.open-douyin.com/docs/resource/zh-CN/mini-app/develop/developer-instrument/overview +License: 免费软件 +# LicenseUrl: +Copyright: Copyright © ByteDance 2024 +# CopyrightUrl: +ShortDescription: 面向字节系小程序开发者推出的桌面端集成开发环境 +Description: 开发者工具是面向字节系小程序开发者推出的桌面端集成开发环境(Integrated Development Environment,IDE)。IDE 支持小程序开发、调试、预览、上传等基本功能,并且集成开发者服务(包含智能客服等),支持在 Windows、Mac 平台上运行,旨在帮助开发者更高效地开发小程序。 +# Moniker: +Tags: +- ide +- 今日头条 +- 字节跳动 +- 小程序 +- 开发 +- 开发者工具 +- 抖音 +- 网页 +- 西瓜视频 +ReleaseNotes: |- + 新增:小游戏新增抖音云入口 + 修复:首次安装并启动 IDE 时模拟器偶现一直加载的问题 + 修复:切换模拟器时未能够切换请求 user-agent 问题,无法区分 iOS 和 Android + 修复:设置页快捷键面板显示异常问题 + 修复:小游戏修复 Windows 下单文件分包时,包大小计算错误的问题 + 修复:小游戏工程管理页 appid 下拉列表获取不到部分小游戏问题 +ReleaseNotesUrl: https://developer.open-douyin.com/docs/resource/zh-CN/mini-app/develop/developer-instrument/download/developer-instrument-update-and-download +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://developer.open-douyin.com/docs/resource/zh-CN/mini-app/develop/developer-instrument/questions +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/b/ByteDance/DouyinIDE/4.2.0/ByteDance.DouyinIDE.yaml b/manifests/b/ByteDance/DouyinIDE/4.2.0/ByteDance.DouyinIDE.yaml new file mode 100644 index 0000000000000..f357eb9538835 --- /dev/null +++ b/manifests/b/ByteDance/DouyinIDE/4.2.0/ByteDance.DouyinIDE.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: ByteDance.DouyinIDE +PackageVersion: 4.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/ByteDance/Lark/7.10.8/ByteDance.Lark.installer.yaml b/manifests/b/ByteDance/Lark/7.10.8/ByteDance.Lark.installer.yaml new file mode 100644 index 0000000000000..7056b4e0e1eca --- /dev/null +++ b/manifests/b/ByteDance/Lark/7.10.8/ByteDance.Lark.installer.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: ByteDance.Lark +PackageVersion: 7.10.8 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --command=quiet_install + SilentWithProgress: --command=quiet_install + InstallLocation: --target_dir="" + Log: --log_dir="" +UpgradeBehavior: install +Protocols: +- feishu +- feishu-open +- lark +- x-lark +ReleaseDate: 2024-01-26 +Installers: +- Architecture: x86 + InstallerUrl: https://sf16-va.larksuitecdn.com/obj/lark-artifact-storage/562a5094/Lark-win32_ia32-7.10.8-signed.exe + InstallerSha256: E4322276E70BF9C8ED0452F0C34781B9FB2AC340C91EF1149B63C52DC614516B + ProductCode: Lark +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/ByteDance/Lark/7.10.8/ByteDance.Lark.locale.en-US.yaml b/manifests/b/ByteDance/Lark/7.10.8/ByteDance.Lark.locale.en-US.yaml new file mode 100644 index 0000000000000..a31fcdd508643 --- /dev/null +++ b/manifests/b/ByteDance/Lark/7.10.8/ByteDance.Lark.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: ByteDance.Lark +PackageVersion: 7.10.8 +PackageLocale: en-US +Publisher: Lark Technologies Pte. Ltd. +PublisherUrl: https://www.larksuite.com/en_us/ +PublisherSupportUrl: https://www.larksuite.com/hc/en-US/ +PrivacyUrl: https://www.larksuite.com/en_us/privacy-policy +Author: Lark Technologies Pte. Ltd. +PackageName: Lark +PackageUrl: https://www.larksuite.com/en_us/download +License: Proprietary +LicenseUrl: https://www.larksuite.com/en_us/user-terms-of-service +Copyright: Copyright © 2024 Lark Technologies Pte. Ltd. +# CopyrightUrl: +ShortDescription: The Next-Gen Collaboration Suite +Description: Lark is a next-generation office suite that integrates messaging, schedule management, collaborative documents, video conferencing, and many more applications in a single platform. +Moniker: larksuite +Tags: +- attendance +- bussiness +- check-in +- collaboration +- communicate +- comunication +- conference +- docs +- document +- enterprise +- meeting +- oa +- office +- saas +- team +- working +ReleaseNotes: |- + Messenger + - When you open a page in Lark, you can view all chats that have discussed the page. + - You can now enjoy a smoother experience when sending both voice and text, sending only voice, or converting voice to text. + Docs + - Create or edit shapes to the exact size you need by turning on show dimensions. Select a shape and hover around its sides or resize a shape to see its dimensions. +ReleaseNotesUrl: https://www.larksuite.com/hc/en-US/articles/898244228303 +PurchaseUrl: https://www.larksuite.com/en_us/plans +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/ByteDance/Lark/7.10.8/ByteDance.Lark.locale.zh-CN.yaml b/manifests/b/ByteDance/Lark/7.10.8/ByteDance.Lark.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f968b0f701c69 --- /dev/null +++ b/manifests/b/ByteDance/Lark/7.10.8/ByteDance.Lark.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: ByteDance.Lark +PackageVersion: 7.10.8 +PackageLocale: zh-CN +Publisher: Lark Technologies Pte. Ltd. +PublisherUrl: https://www.larksuite.com/zh_cn/ +PublisherSupportUrl: https://www.larksuite.com/hc/zh-CN/ +PrivacyUrl: https://www.larksuite.com/zh_cn/privacy-policy +Author: Lark Technologies Pte. Ltd. +PackageName: Lark +PackageUrl: https://www.larksuite.com/zh_cn/download +License: 专有软件 +LicenseUrl: https://www.larksuite.com/zh_cn/user-terms-of-service +Copyright: Copyright © 2024 Lark Technologies Pte. Ltd. +# CopyrightUrl: +ShortDescription: 新一代协同套件 +Description: 一站式整合即时沟通、日历、视频会议、云文档、云盘、工作台等功能 +# Moniker: +Tags: +- oa +- saas +- 交流 +- 企业 +- 会议 +- 公司 +- 办公 +- 协作 +- 协同 +- 团队 +- 工作 +- 打卡 +- 文档 +- 沟通 +- 签到 +- 考勤 +ReleaseNotes: |- + 即时消息 + - 新增“相关讨论”功能,在 Lark 内浏览页面时,可一键查看所有讨论过该页面的会话,聚拢相关聊天,沟通更高效 + - 语音输入体验优化,录音、语音加文字、语音转文字三种模式体验更丝滑,消息回复更轻松 + 云文档 + - 你可以在画板中查看图形的精确尺寸,拖拽拉伸图形大小时也会同时显示尺寸信息,图形设置更精确 +ReleaseNotesUrl: https://www.larksuite.com/hc/zh-CN/articles/898244228303 +PurchaseUrl: https://www.larksuite.com/zh_cn/plans +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/b/ByteDance/Lark/7.10.8/ByteDance.Lark.yaml b/manifests/b/ByteDance/Lark/7.10.8/ByteDance.Lark.yaml new file mode 100644 index 0000000000000..11d52f1db0726 --- /dev/null +++ b/manifests/b/ByteDance/Lark/7.10.8/ByteDance.Lark.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: ByteDance.Lark +PackageVersion: 7.10.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/Portable/17.0.0/BytecodeAlliance.Wasmtime.Portable.installer.yaml b/manifests/b/BytecodeAlliance/Wasmtime/Portable/17.0.0/BytecodeAlliance.Wasmtime.Portable.installer.yaml new file mode 100644 index 0000000000000..f21e9e879ad4a --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/Portable/17.0.0/BytecodeAlliance.Wasmtime.Portable.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: BytecodeAlliance.Wasmtime.Portable +PackageVersion: 17.0.0 +InstallerLocale: en-US +InstallerType: zip +FileExtensions: +- wasm +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: wasmtime-v17.0.0-x86_64-windows\wasmtime.exe + PortableCommandAlias: wasmtime + - RelativeFilePath: wasmtime-v17.0.0-x86_64-windows\wasmtime-min.exe + PortableCommandAlias: wasmtime-min + InstallerUrl: https://github.com/bytecodealliance/wasmtime/releases/download/v17.0.0/wasmtime-v17.0.0-x86_64-windows.zip + InstallerSha256: BC0B837E258E2E7283DA90EDB9FFEAA7C3716D5B33C9A8C53D9BAA957A687C8C +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/Portable/17.0.0/BytecodeAlliance.Wasmtime.Portable.locale.en-US.yaml b/manifests/b/BytecodeAlliance/Wasmtime/Portable/17.0.0/BytecodeAlliance.Wasmtime.Portable.locale.en-US.yaml new file mode 100644 index 0000000000000..c99c977cb467a --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/Portable/17.0.0/BytecodeAlliance.Wasmtime.Portable.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: BytecodeAlliance.Wasmtime.Portable +PackageVersion: 17.0.0 +PackageLocale: en-US +Publisher: Bytecode Alliance +PublisherUrl: https://bytecodealliance.org/ +PublisherSupportUrl: https://github.com/bytecodealliance/wasmtime/issues +PackageName: Wasmtime +PackageUrl: https://wasmtime.dev/ +License: Apache-2.0 +LicenseUrl: https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE +Copyright: Copyright © 2019-2023 the Bytecode Alliance contributors. +ShortDescription: A fast and secure runtime for WebAssembly +Description: Wasmtime is a Bytecode Alliance project that is a standalone wasm-only optimizing runtime for WebAssembly and WASI. It runs WebAssembly code outside of the Web, and can be used both as a command-line utility or as a library embedded in a larger application. +Tags: +- aot +- cranelift +- jit +- runtime +- rust +- sandbox +- standalone +- wasi +- wasm +- wasmtime +- webassembly +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/Portable/17.0.0/BytecodeAlliance.Wasmtime.Portable.yaml b/manifests/b/BytecodeAlliance/Wasmtime/Portable/17.0.0/BytecodeAlliance.Wasmtime.Portable.yaml new file mode 100644 index 0000000000000..c2ee6a463f48f --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/Portable/17.0.0/BytecodeAlliance.Wasmtime.Portable.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: BytecodeAlliance.Wasmtime.Portable +PackageVersion: 17.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/blacktop/ipsw/3.1.451/blacktop.ipsw.installer.yaml b/manifests/b/blacktop/ipsw/3.1.451/blacktop.ipsw.installer.yaml new file mode 100644 index 0000000000000..930f18f0aafa2 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.451/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.5.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.451 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-01-31" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.451/ipsw_3.1.451_windows_arm64.zip + InstallerSha256: faccc53b690d58008a4a9da1ca52005769b6a6b9ad64657d069b76c661ae15f3 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.451/ipsw_3.1.451_windows_x86_64.zip + InstallerSha256: 3051c6bdcb59e678c2d50d61cd25bcca1638daa12ed6cdeb80f8b1a169d0307f + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/blacktop/ipsw/3.1.451/blacktop.ipsw.locale.en-US.yaml b/manifests/b/blacktop/ipsw/3.1.451/blacktop.ipsw.locale.en-US.yaml new file mode 100644 index 0000000000000..6a0f7c5827dc6 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.451/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.5.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.451 +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.5.0 diff --git a/manifests/b/blacktop/ipsw/3.1.451/blacktop.ipsw.yaml b/manifests/b/blacktop/ipsw/3.1.451/blacktop.ipsw.yaml new file mode 100644 index 0000000000000..fb088c67253fc --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.451/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.5.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.451 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/blacktop/ipsw/3.1.452/blacktop.ipsw.installer.yaml b/manifests/b/blacktop/ipsw/3.1.452/blacktop.ipsw.installer.yaml new file mode 100644 index 0000000000000..eebd5508d221b --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.452/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.5.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.452 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-01-31" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.452/ipsw_3.1.452_windows_arm64.zip + InstallerSha256: 6214410094546ee4f885604ec1158bc6e7de059a54c3f77e733458ab4150072f + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.452/ipsw_3.1.452_windows_x86_64.zip + InstallerSha256: e3483b6859ffa972af68c64012d23e5d4af04305295b9e6b48cd50c3b5294261 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/blacktop/ipsw/3.1.452/blacktop.ipsw.locale.en-US.yaml b/manifests/b/blacktop/ipsw/3.1.452/blacktop.ipsw.locale.en-US.yaml new file mode 100644 index 0000000000000..de654f94e290a --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.452/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.5.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.452 +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.5.0 diff --git a/manifests/b/blacktop/ipsw/3.1.452/blacktop.ipsw.yaml b/manifests/b/blacktop/ipsw/3.1.452/blacktop.ipsw.yaml new file mode 100644 index 0000000000000..f6df224465833 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.452/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.5.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.452 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/blacktop/ipswd/3.1.451/blacktop.ipswd.installer.yaml b/manifests/b/blacktop/ipswd/3.1.451/blacktop.ipswd.installer.yaml new file mode 100644 index 0000000000000..ec333e305ed40 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.451/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.5.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.451 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-01-31" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.451/ipswd_3.1.451_windows_x86_64.zip + InstallerSha256: cdaf19c8059a17b0044e7bbaf48c795fe04a5a199b24a2c8a706dbce6e16dd61 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.451/ipswd_3.1.451_windows_arm64.zip + InstallerSha256: 736dcbfffd340b880d2c3375c7500910009eab6ab67d148856de545fd238c641 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/blacktop/ipswd/3.1.451/blacktop.ipswd.locale.en-US.yaml b/manifests/b/blacktop/ipswd/3.1.451/blacktop.ipswd.locale.en-US.yaml new file mode 100644 index 0000000000000..90b4059ecb5a2 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.451/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.5.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.451 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipswd +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: ipsw - Daemon +Moniker: ipswd +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/blacktop/ipswd/3.1.451/blacktop.ipswd.yaml b/manifests/b/blacktop/ipswd/3.1.451/blacktop.ipswd.yaml new file mode 100644 index 0000000000000..83ef29ec19330 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.451/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.5.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.451 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/blacktop/ipswd/3.1.452/blacktop.ipswd.installer.yaml b/manifests/b/blacktop/ipswd/3.1.452/blacktop.ipswd.installer.yaml new file mode 100644 index 0000000000000..84c3f6030ea27 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.452/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.5.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.452 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-01-31" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.452/ipswd_3.1.452_windows_x86_64.zip + InstallerSha256: 78dfe7697506fb834352038420d91148c6bff8adf4592f235892f35cb949c5cd + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.452/ipswd_3.1.452_windows_arm64.zip + InstallerSha256: 10d2ffbdc4e8ae831aa802cc1e6fee122dbfc0966af48d3f9d51eea84e9afea7 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/blacktop/ipswd/3.1.452/blacktop.ipswd.locale.en-US.yaml b/manifests/b/blacktop/ipswd/3.1.452/blacktop.ipswd.locale.en-US.yaml new file mode 100644 index 0000000000000..b4dd1246b8cd8 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.452/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.5.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.452 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipswd +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: ipsw - Daemon +Moniker: ipswd +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/blacktop/ipswd/3.1.452/blacktop.ipswd.yaml b/manifests/b/blacktop/ipswd/3.1.452/blacktop.ipswd.yaml new file mode 100644 index 0000000000000..6696b25a9d31c --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.452/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.5.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.452 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/buchen/portfolio/0.67.2/buchen.portfolio.installer.yaml b/manifests/b/buchen/portfolio/0.67.2/buchen.portfolio.installer.yaml new file mode 100644 index 0000000000000..feda69f003c3a --- /dev/null +++ b/manifests/b/buchen/portfolio/0.67.2/buchen.portfolio.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: buchen.portfolio +PackageVersion: 0.67.2 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/portfolio-performance/portfolio/releases/download/0.67.2/PortfolioPerformance-0.67.2-setup.exe + InstallerSha256: 5DB0CACEBEBAE7BC4DD6BC0DE1E594CB91561D9733F468BE87ABC70A7BD6CEF3 +ManifestType: installer +ManifestVersion: 1.5.0 +ReleaseDate: 2024-1-28 diff --git a/manifests/b/buchen/portfolio/0.67.2/buchen.portfolio.locale.de-DE.yaml b/manifests/b/buchen/portfolio/0.67.2/buchen.portfolio.locale.de-DE.yaml new file mode 100644 index 0000000000000..4ca326f93c8ce --- /dev/null +++ b/manifests/b/buchen/portfolio/0.67.2/buchen.portfolio.locale.de-DE.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: buchen.portfolio +PackageVersion: 0.67.2 +PackageLocale: de-DE +Publisher: Andreas Buchen +PublisherUrl: http://abuchen.name +PublisherSupportUrl: https://github.com/buchen/portfolio/issues +PackageName: Portfolio Performance +PackageUrl: https://github.com/buchen/portfolio +License: EPL-1.0 +LicenseUrl: https://github.com/buchen/portfolio/blob/master/LICENSE +ShortDescription: Portfolio Performance berechnet die Gesamtperformance Ihres Anlageportfolios. +ReleaseNotes: |- + - New: 2 new widgets with the heatmap of monthly taxes or fees + - New: PDF importer for Computershare, J&T Direktbank, AKF Bank + - Improvement of the PDF importer: Barclays, Renault Bank, Raiffeisenbank, Gladbacher Bank, Baader Bank, sBroker, Vanguard, eBase, Postbank, ING DiBa, Trade Republic, Directa SIM, DAB, DADAT, JustTrade, Kreissparkasse, Quirin + - Fix: Fixes a problem with deleting widgets of the type "Description" + - Fix: Updates the CoinGecko call frequency to avoid hitting the limit of the free plan +ReleaseNotesUrl: https://github.com/buchen/portfolio/releases/tag/0.67.2 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/buchen/portfolio/0.67.2/buchen.portfolio.yaml b/manifests/b/buchen/portfolio/0.67.2/buchen.portfolio.yaml new file mode 100644 index 0000000000000..37e64665f1e77 --- /dev/null +++ b/manifests/b/buchen/portfolio/0.67.2/buchen.portfolio.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: buchen.portfolio +PackageVersion: 0.67.2 +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/CMU/CLAN/7.87.00/CMU.CLAN.installer.yaml b/manifests/c/CMU/CLAN/7.87.00/CMU.CLAN.installer.yaml new file mode 100644 index 0000000000000..c618fef54d9d1 --- /dev/null +++ b/manifests/c/CMU/CLAN/7.87.00/CMU.CLAN.installer.yaml @@ -0,0 +1,26 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json + +PackageIdentifier: CMU.CLAN +PackageVersion: 7.87.00 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallModes: +- silent +- silentWithProgress +- interactive +AppsAndFeaturesEntries: +- InstallerType: msi + ProductCode: '{00A4C5E6-6DB1-486C-99FF-D9269488C955}' +Installers: +- Architecture: x86 + InstallerType: exe + InstallerUrl: https://dali.talkbank.org/clan/clanwin.exe + InstallerSha256: 5E1394C8464304CF7516A44214B0CBBF37A2EF6CC23796009A1D0C766FD1BA10 + InstallerSwitches: + Silent: /qn + SilentWithProgress: /qb + ProductCode: '{00A4C5E6-6DB1-486C-99FF-D9269488C955}' +ManifestType: installer +ManifestVersion: 1.2.0 diff --git a/manifests/c/CMU/CLAN/7.87.00/CMU.CLAN.locale.en-US.yaml b/manifests/c/CMU/CLAN/7.87.00/CMU.CLAN.locale.en-US.yaml new file mode 100644 index 0000000000000..a7800de43205e --- /dev/null +++ b/manifests/c/CMU/CLAN/7.87.00/CMU.CLAN.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json + +PackageIdentifier: CMU.CLAN +PackageVersion: 7.87.00 +PackageLocale: en-US +Publisher: CMU +PublisherUrl: https://talkbank.org/ +PackageName: CLAN +PackageUrl: https://dali.talkbank.org/clan/ +License: GNU General Public License +Copyright: Copyright (C) 2022 CMU +ShortDescription: The acronym CLAN stands for Computerized Language ANalysis. CLAN is designed specifically to analyze data transcribed in the CHAT format. This is the format used in the various segments of the TalkBank system. +Moniker: clan +ReleaseNotes: After installing a new version of CLAN for use with old data, you will need to get a new version of the MOR grammar by running the "Get MOR Grammar" option under the "File" menu. You should then run MOR, POST, and CHECK again on your old data to make sure they work with the newer format. Alternatively, you may wish continue using old versions of CLAN with old versions of corpora. CHILDES data on the web are continually updated to run with current versions of CLAN and MOR. +ReleaseNotesUrl: https://dali.talkbank.org/clan/ +InstallationNotes: https://dali.talkbank.org/clan/ +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://talkbank.org/manuals/CLAN.pdf +- DocumentLabel: Screencasts + DocumentUrl: https://talkbank.org/screencasts/ +ManifestType: defaultLocale +ManifestVersion: 1.2.0 diff --git a/manifests/l/Logitech/Options/10.10.58/Logitech.Options.yaml b/manifests/c/CMU/CLAN/7.87.00/CMU.CLAN.yaml similarity index 57% rename from manifests/l/Logitech/Options/10.10.58/Logitech.Options.yaml rename to manifests/c/CMU/CLAN/7.87.00/CMU.CLAN.yaml index c735f28533322..ecc90a91592ed 100644 --- a/manifests/l/Logitech/Options/10.10.58/Logitech.Options.yaml +++ b/manifests/c/CMU/CLAN/7.87.00/CMU.CLAN.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.1.4 $debug=AUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Logitech.Options -PackageVersion: 10.10.58 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json + +PackageIdentifier: CMU.CLAN +PackageVersion: 7.87.00 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.2.0 diff --git a/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.installer.yaml b/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.installer.yaml index e01bfa77ffc48..02f2115f02c1c 100644 --- a/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.installer.yaml +++ b/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/29 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: CPUID.CPU-Z.ROG diff --git a/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.locale.en-US.yaml b/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.locale.en-US.yaml index 726683cd6f5c9..2892f796b5a7a 100644 --- a/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.locale.en-US.yaml +++ b/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/29 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: CPUID.CPU-Z.ROG diff --git a/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.yaml b/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.yaml index 0049696b4a2f0..99caec5193c61 100644 --- a/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.yaml +++ b/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/29 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: CPUID.CPU-Z.ROG diff --git a/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.installer.yaml b/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.installer.yaml index 4fbd6fad8ad92..e402c29dbf8a7 100644 --- a/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.installer.yaml +++ b/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Cimbali.pympress diff --git a/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.locale.en-US.yaml b/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.locale.en-US.yaml index 02a59d810cfb1..a3b90db2e8723 100644 --- a/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.locale.en-US.yaml +++ b/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Cimbali.pympress diff --git a/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.yaml b/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.yaml index 79857c4e8e617..2f09047a6d894 100644 --- a/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.yaml +++ b/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Cimbali.pympress diff --git a/manifests/c/CloudFoundry/CLI/v7/.validation b/manifests/c/CloudFoundry/CLI/v7/.validation new file mode 100644 index 0000000000000..718ee971c0654 --- /dev/null +++ b/manifests/c/CloudFoundry/CLI/v7/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"ed915a8a-7076-4764-9266-39e8f68c6fe2","TestPlan":"Validation-Domain","PackagePath":"manifests/c/CloudFoundry/CLI/v7/7.7.7","CommitId":"6a11aebcf5edb2050e3c8793e33ad72a65e2ad17"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/c/CloudFoundry/CLI/v7/7.7.7/CloudFoundry.CLI.v7.installer.yaml b/manifests/c/CloudFoundry/CLI/v7/7.7.7/CloudFoundry.CLI.v7.installer.yaml new file mode 100644 index 0000000000000..8e07082bdc34b --- /dev/null +++ b/manifests/c/CloudFoundry/CLI/v7/7.7.7/CloudFoundry.CLI.v7.installer.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS0.CRLF.7-4-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: CloudFoundry.CLI.v7 +PackageVersion: 7.7.7 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: 2023-12-27 +Installers: +- Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cf.exe + PortableCommandAlias: cf + - RelativeFilePath: cf7.exe + PortableCommandAlias: cf7 + InstallerUrl: https://s3-us-west-1.amazonaws.com/v7-cf-cli-releases/releases/v7.7.7/cf7-cli_7.7.7_winx64.zip + InstallerSha256: D6B7A61BA0157518943F0D692546F84FA7B6BAEA80E690B9BE21DCC114A550C7 +- Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cf.exe + PortableCommandAlias: cf + - RelativeFilePath: cf7.exe + PortableCommandAlias: cf7 + InstallerUrl: https://s3-us-west-1.amazonaws.com/v7-cf-cli-releases/releases/v7.7.7/cf7-cli_7.7.7_win32.zip + InstallerSha256: 1A240DA5575EC03917D5C17A8327EB48899A79BD6AE7A64D8DE4A0C053C0AD2B +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/CloudFoundry/CLI/v7/7.7.7/CloudFoundry.CLI.v7.locale.en-US.yaml b/manifests/c/CloudFoundry/CLI/v7/7.7.7/CloudFoundry.CLI.v7.locale.en-US.yaml new file mode 100644 index 0000000000000..02ab15be2b2a3 --- /dev/null +++ b/manifests/c/CloudFoundry/CLI/v7/7.7.7/CloudFoundry.CLI.v7.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS0.CRLF.7-4-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: CloudFoundry.CLI.v7 +PackageVersion: 7.7.7 +PackageLocale: en-US +Publisher: Cloud Foundry Foundation +PublisherUrl: https://cli.cloudfoundry.org/ +PublisherSupportUrl: https://github.com/cloudfoundry/cli/issues +# PrivacyUrl: +Author: Cristhian Peña +PackageName: Cloud Foundry CLI v7 +PackageUrl: https://github.com/cloudfoundry/cli/releases +License: Apache-2.0 +LicenseUrl: https://github.com/cloudfoundry/cli/blob/main/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: The official command line client for Cloud Foundry v7. +# Description: +Moniker: cf7 +Tags: +- cf-cli +- cli +- cloud-foundry +- cloud-foundry-cli +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +InstallationNotes: Run "cf help -a" to view the help for all commands available in your currently installed version. +Documentations: +- DocumentLabel: Using the Cloud Foundry Command Line Interface + DocumentUrl: https://docs.cloudfoundry.org/cf-cli/ +- DocumentLabel: Wiki + DocumentUrl: https://github.com/cloudfoundry/cli/wiki +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/CloudFoundry/CLI/v7/7.7.7/CloudFoundry.CLI.v7.yaml b/manifests/c/CloudFoundry/CLI/v7/7.7.7/CloudFoundry.CLI.v7.yaml new file mode 100644 index 0000000000000..7e2795ecfddda --- /dev/null +++ b/manifests/c/CloudFoundry/CLI/v7/7.7.7/CloudFoundry.CLI.v7.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS0.CRLF.7-4-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: CloudFoundry.CLI.v7 +PackageVersion: 7.7.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/CloudFoundry/CLI/v8/8.7.4/CloudFoundry.CLI.v8.installer.yaml b/manifests/c/CloudFoundry/CLI/v8/8.7.4/CloudFoundry.CLI.v8.installer.yaml new file mode 100644 index 0000000000000..a071c26c5a748 --- /dev/null +++ b/manifests/c/CloudFoundry/CLI/v8/8.7.4/CloudFoundry.CLI.v8.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.7-4-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: CloudFoundry.CLI.v8 +PackageVersion: 8.7.4 +InstallerType: zip +Installers: +- Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cf.exe + PortableCommandAlias: cf + - RelativeFilePath: cf8.exe + PortableCommandAlias: cf8 + InstallerUrl: https://s3-us-west-1.amazonaws.com/v8-cf-cli-releases/releases/v8.7.4/cf8-cli_8.7.4_winx64.zip + InstallerSha256: B8076BF3940E34FBDCD0E79AE74DA94B691382CEC88C766E5EED9256D075BE71 +- Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cf.exe + PortableCommandAlias: cf + - RelativeFilePath: cf8.exe + PortableCommandAlias: cf8 + InstallerUrl: https://s3-us-west-1.amazonaws.com/v8-cf-cli-releases/releases/v8.7.4/cf8-cli_8.7.4_win32.zip + InstallerSha256: 19DDC5002BE3E193E9ECAB4635C8AFC08EABB8CB60816DECF756EACD15AC7E86 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/CloudFoundry/CLI/v8/8.7.4/CloudFoundry.CLI.v8.locale.en-US.yaml b/manifests/c/CloudFoundry/CLI/v8/8.7.4/CloudFoundry.CLI.v8.locale.en-US.yaml new file mode 100644 index 0000000000000..bf47ab5344bc0 --- /dev/null +++ b/manifests/c/CloudFoundry/CLI/v8/8.7.4/CloudFoundry.CLI.v8.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.7-4-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: CloudFoundry.CLI.v8 +PackageVersion: 8.7.4 +PackageLocale: en-US +Publisher: Cloud Foundry Foundation +PublisherUrl: https://cli.cloudfoundry.org/ +PublisherSupportUrl: https://github.com/cloudfoundry/cli/issues +# PrivacyUrl: +# Author: +PackageName: Cloud Foundry CLI v8 +PackageUrl: https://cli.cloudfoundry.org/en-US/v8/ +License: Apache-2.0 +LicenseUrl: https://github.com/cloudfoundry/cli/blob/main/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: The official command line client for Cloud Foundry +# Description: +Moniker: cf8 +Tags: +- cf-cli +- cli +- cloud-foundry +- cloud-foundry-cli +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +InstallationNotes: Run "cf help -a" to view the help for all commands available in your currently installed version. +Documentations: +- DocumentLabel: Using the Cloud Foundry Command Line Interface + DocumentUrl: https://docs.cloudfoundry.org/cf-cli/ +- DocumentLabel: Wiki + DocumentUrl: https://github.com/cloudfoundry/cli/wiki +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/CloudFoundry/CLI/v8/8.7.4/CloudFoundry.CLI.v8.yaml b/manifests/c/CloudFoundry/CLI/v8/8.7.4/CloudFoundry.CLI.v8.yaml new file mode 100644 index 0000000000000..41494d38c907c --- /dev/null +++ b/manifests/c/CloudFoundry/CLI/v8/8.7.4/CloudFoundry.CLI.v8.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.7-4-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: CloudFoundry.CLI.v8 +PackageVersion: 8.7.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/CloudFoundry/CLI/v8/8.7.5/CloudFoundry.CLI.v8.installer.yaml b/manifests/c/CloudFoundry/CLI/v8/8.7.5/CloudFoundry.CLI.v8.installer.yaml new file mode 100644 index 0000000000000..bf3644e9a5843 --- /dev/null +++ b/manifests/c/CloudFoundry/CLI/v8/8.7.5/CloudFoundry.CLI.v8.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.7-4-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: CloudFoundry.CLI.v8 +PackageVersion: 8.7.5 +InstallerType: zip +Installers: +- Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cf.exe + PortableCommandAlias: cf + - RelativeFilePath: cf8.exe + PortableCommandAlias: cf8 + InstallerUrl: https://s3-us-west-1.amazonaws.com/v8-cf-cli-releases/releases/v8.7.5/cf8-cli_8.7.5_winx64.zip + InstallerSha256: D62BA0FDD95AE513632997F5EDC8931947995EF0839443AAD002A65D96D61742 +- Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cf.exe + PortableCommandAlias: cf + - RelativeFilePath: cf8.exe + PortableCommandAlias: cf8 + InstallerUrl: https://s3-us-west-1.amazonaws.com/v8-cf-cli-releases/releases/v8.7.5/cf8-cli_8.7.5_win32.zip + InstallerSha256: D2F399A5A5D67E0447241FF030EA767262A7B0EC3A330B278A920BF9CDDCE1B4 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/CloudFoundry/CLI/v8/8.7.5/CloudFoundry.CLI.v8.locale.en-US.yaml b/manifests/c/CloudFoundry/CLI/v8/8.7.5/CloudFoundry.CLI.v8.locale.en-US.yaml new file mode 100644 index 0000000000000..59711e6310cbd --- /dev/null +++ b/manifests/c/CloudFoundry/CLI/v8/8.7.5/CloudFoundry.CLI.v8.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.7-4-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: CloudFoundry.CLI.v8 +PackageVersion: 8.7.5 +PackageLocale: en-US +Publisher: Cloud Foundry Foundation +PublisherUrl: https://cli.cloudfoundry.org/ +PublisherSupportUrl: https://github.com/cloudfoundry/cli/issues +# PrivacyUrl: +# Author: +PackageName: Cloud Foundry CLI v8 +PackageUrl: https://cli.cloudfoundry.org/en-US/v8/ +License: Apache-2.0 +LicenseUrl: https://github.com/cloudfoundry/cli/blob/main/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: The official command line client for Cloud Foundry +# Description: +Moniker: cf8 +Tags: +- cf-cli +- cli +- cloud-foundry +- cloud-foundry-cli +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +InstallationNotes: Run "cf help -a" to view the help for all commands available in your currently installed version. +Documentations: +- DocumentLabel: Using the Cloud Foundry Command Line Interface + DocumentUrl: https://docs.cloudfoundry.org/cf-cli/ +- DocumentLabel: Wiki + DocumentUrl: https://github.com/cloudfoundry/cli/wiki +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/CloudFoundry/CLI/v8/8.7.5/CloudFoundry.CLI.v8.yaml b/manifests/c/CloudFoundry/CLI/v8/8.7.5/CloudFoundry.CLI.v8.yaml new file mode 100644 index 0000000000000..cb9b9ea7d3df9 --- /dev/null +++ b/manifests/c/CloudFoundry/CLI/v8/8.7.5/CloudFoundry.CLI.v8.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.7-4-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: CloudFoundry.CLI.v8 +PackageVersion: 8.7.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/CloudFoundry/CLI/v8/8.7.6/CloudFoundry.CLI.v8.installer.yaml b/manifests/c/CloudFoundry/CLI/v8/8.7.6/CloudFoundry.CLI.v8.installer.yaml new file mode 100644 index 0000000000000..d9678e7b38ae9 --- /dev/null +++ b/manifests/c/CloudFoundry/CLI/v8/8.7.6/CloudFoundry.CLI.v8.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.7-4-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: CloudFoundry.CLI.v8 +PackageVersion: 8.7.6 +InstallerType: zip +Installers: +- Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cf.exe + PortableCommandAlias: cf + - RelativeFilePath: cf8.exe + PortableCommandAlias: cf8 + InstallerUrl: https://s3-us-west-1.amazonaws.com/v8-cf-cli-releases/releases/v8.7.6/cf8-cli_8.7.6_winx64.zip + InstallerSha256: AAF62E9574998B7388FFDA3675DA427FEBD53C1ED671B4F5ABCFC97A76A59D22 +- Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cf.exe + PortableCommandAlias: cf + - RelativeFilePath: cf8.exe + PortableCommandAlias: cf8 + InstallerUrl: https://s3-us-west-1.amazonaws.com/v8-cf-cli-releases/releases/v8.7.6/cf8-cli_8.7.6_win32.zip + InstallerSha256: E6BAA8F1CDADE876C8DCB7DC8BDF766FC9EB964C65CAB6A546B3315A4DB03382 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/CloudFoundry/CLI/v8/8.7.6/CloudFoundry.CLI.v8.locale.en-US.yaml b/manifests/c/CloudFoundry/CLI/v8/8.7.6/CloudFoundry.CLI.v8.locale.en-US.yaml new file mode 100644 index 0000000000000..9b2c734c4f1d4 --- /dev/null +++ b/manifests/c/CloudFoundry/CLI/v8/8.7.6/CloudFoundry.CLI.v8.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.7-4-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: CloudFoundry.CLI.v8 +PackageVersion: 8.7.6 +PackageLocale: en-US +Publisher: Cloud Foundry Foundation +PublisherUrl: https://cli.cloudfoundry.org/ +PublisherSupportUrl: https://github.com/cloudfoundry/cli/issues +# PrivacyUrl: +# Author: +PackageName: Cloud Foundry CLI v8 +PackageUrl: https://cli.cloudfoundry.org/en-US/v8/ +License: Apache-2.0 +LicenseUrl: https://github.com/cloudfoundry/cli/blob/main/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: The official command line client for Cloud Foundry +# Description: +Moniker: cf8 +Tags: +- cf-cli +- cli +- cloud-foundry +- cloud-foundry-cli +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +InstallationNotes: Run "cf help -a" to view the help for all commands available in your currently installed version. +Documentations: +- DocumentLabel: Using the Cloud Foundry Command Line Interface + DocumentUrl: https://docs.cloudfoundry.org/cf-cli/ +- DocumentLabel: Wiki + DocumentUrl: https://github.com/cloudfoundry/cli/wiki +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/CloudFoundry/CLI/v8/8.7.6/CloudFoundry.CLI.v8.yaml b/manifests/c/CloudFoundry/CLI/v8/8.7.6/CloudFoundry.CLI.v8.yaml new file mode 100644 index 0000000000000..d510e140bfd33 --- /dev/null +++ b/manifests/c/CloudFoundry/CLI/v8/8.7.6/CloudFoundry.CLI.v8.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.7-4-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: CloudFoundry.CLI.v8 +PackageVersion: 8.7.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.installer.yaml b/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.installer.yaml index f799ebc9787ed..d052abf8385e1 100644 --- a/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.installer.yaml +++ b/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/29 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json PackageIdentifier: ColdTurkeySoftware.ColdTurkeyBlocker diff --git a/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.locale.en-US.yaml b/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.locale.en-US.yaml index 07f2b1c38f20d..4dc78b854057b 100644 --- a/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.locale.en-US.yaml +++ b/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/29 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json PackageIdentifier: ColdTurkeySoftware.ColdTurkeyBlocker diff --git a/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.yaml b/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.yaml index c59dbe30b1f2d..033b7708ebef0 100644 --- a/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.yaml +++ b/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/29 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json PackageIdentifier: ColdTurkeySoftware.ColdTurkeyBlocker diff --git a/manifests/c/cURL/cURL/8.6.0.1/cURL.cURL.installer.yaml b/manifests/c/cURL/cURL/8.6.0.1/cURL.cURL.installer.yaml new file mode 100644 index 0000000000000..6a57877c8e0e6 --- /dev/null +++ b/manifests/c/cURL/cURL/8.6.0.1/cURL.cURL.installer.yaml @@ -0,0 +1,55 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: cURL.cURL +PackageVersion: 8.6.0.1 +InstallerType: zip +NestedInstallerType: portable +Protocols: +- DICT +- FILE +- FTP +- FTPS +- GOPHER +- GOPHERS +- HTTP +- HTTPS +- IMAP +- IMAPS +- LDAP +- LDAPS +- MQTT +- POP3 +- POP3S +- RTMP +- RTMPS +- RTSP +- SCP +- SFTP +- SMB +- SMBS +- SMTP +- SMTPS +- TELNET +- TFTP +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: curl-8.6.0_1-win32-mingw\bin\curl.exe + PortableCommandAlias: curl + InstallerUrl: https://curl.se/windows/dl-8.6.0_1/curl-8.6.0_1-win32-mingw.zip + InstallerSha256: CD5CE92CEA745BAB3F40ACAB88F312B59E6CF94CEE36BE8308AFCBF22B31F66E +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: curl-8.6.0_1-win64-mingw\bin\curl.exe + PortableCommandAlias: curl + InstallerUrl: https://curl.se/windows/dl-8.6.0_1/curl-8.6.0_1-win64-mingw.zip + InstallerSha256: 128F6D79CDB61A8F0443E1173D1D7E95B5648D4D4EBD610F622A7AF5CDD10E29 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: curl-8.6.0_1-win64a-mingw\bin\curl.exe + PortableCommandAlias: curl + InstallerUrl: https://curl.se/windows/dl-8.6.0_1/curl-8.6.0_1-win64a-mingw.zip + InstallerSha256: BDB0917D1DF25C9A91161B787B1ED595056FDE1CD4B24B29BA7CEDF0824644EF +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/cURL/cURL/8.6.0.1/cURL.cURL.locale.en-US.yaml b/manifests/c/cURL/cURL/8.6.0.1/cURL.cURL.locale.en-US.yaml new file mode 100644 index 0000000000000..778a88c50eea6 --- /dev/null +++ b/manifests/c/cURL/cURL/8.6.0.1/cURL.cURL.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: cURL.cURL +PackageVersion: 8.6.0.1 +PackageLocale: en-US +Publisher: curl +PublisherUrl: https://curl.se +PublisherSupportUrl: https://curl.se/support.html +Author: Daniel Stenberg +PackageName: cURL +PackageUrl: https://curl.se +License: Freeware +LicenseUrl: https://curl.se/docs/copyright.html +Copyright: Copyright (c), Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. All rights reserved. +CopyrightUrl: https://curl.se/docs/copyright.html +ShortDescription: Command line tool and library for transferring data with URLs +Moniker: curl +PurchaseUrl: https://curl.se/donation.html +Documentations: +- DocumentLabel: Manpage (Usage) + DocumentUrl: https://curl.se/docs/manpage.html +- DocumentLabel: GitHub + DocumentUrl: https://github.com/curl/curl +- DocumentLabel: Published Security Vulnerabilities + DocumentUrl: https://curl.se/docs/security.html +- DocumentLabel: FAQ + DocumentUrl: https://curl.se/docs/faq.html +- DocumentLabel: Everything curl (full documentation) + DocumentUrl: https://everything.curl.dev +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.11/Microsoft.Edge.Beta.yaml b/manifests/c/cURL/cURL/8.6.0.1/cURL.cURL.yaml similarity index 63% rename from manifests/m/Microsoft/Edge/Beta/118.0.2088.11/Microsoft.Edge.Beta.yaml rename to manifests/c/cURL/cURL/8.6.0.1/cURL.cURL.yaml index 3c4cf097d6303..bef8c3c3f8be5 100644 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.11/Microsoft.Edge.Beta.yaml +++ b/manifests/c/cURL/cURL/8.6.0.1/cURL.cURL.yaml @@ -1,7 +1,8 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.11 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 - +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: cURL.cURL +PackageVersion: 8.6.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/chrisant996/Clink/1.6.3/chrisant996.Clink.installer.yaml b/manifests/c/chrisant996/Clink/1.6.3/chrisant996.Clink.installer.yaml new file mode 100644 index 0000000000000..6eba8ee189f18 --- /dev/null +++ b/manifests/c/chrisant996/Clink/1.6.3/chrisant996.Clink.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: chrisant996.Clink +PackageVersion: 1.6.3 +MinimumOSVersion: 10.0.0.0 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: clink_chrisant996 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/chrisant996/clink/releases/download/v1.6.3/clink.1.6.3.af47db_setup.exe + InstallerSha256: 42243C2E869D67F16FD82C95EB49854EA1F79DB4FC86E72AF0824D897B4E7F88 +- Architecture: x86 + InstallerUrl: https://github.com/chrisant996/clink/releases/download/v1.6.3/clink.1.6.3.af47db_setup.exe + InstallerSha256: 42243C2E869D67F16FD82C95EB49854EA1F79DB4FC86E72AF0824D897B4E7F88 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/chrisant996/Clink/1.6.3/chrisant996.Clink.locale.en-US.yaml b/manifests/c/chrisant996/Clink/1.6.3/chrisant996.Clink.locale.en-US.yaml new file mode 100644 index 0000000000000..f6a2ec6658fa8 --- /dev/null +++ b/manifests/c/chrisant996/Clink/1.6.3/chrisant996.Clink.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: chrisant996.Clink +PackageVersion: 1.6.3 +PackageLocale: en-US +Publisher: Christopher Antos +PublisherUrl: https://github.com/chrisant996/ +PublisherSupportUrl: https://github.com/chrisant996/clink/issues +Author: Chris Antos +PackageName: Clink +PackageUrl: https://chrisant996.github.io/clink/ +License: GNU General Public License v3.0 +LicenseUrl: https://raw.githubusercontent.com/chrisant996/clink/master/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/chrisant996/clink/master/LICENSE +ShortDescription: Clink combines the native Windows shell cmd.exe with the powerful command line editing features of the GNU Readline library, which provides rich completion, history, and line-editing capabilities. +Description: Clink combines the native Windows shell cmd.exe with the powerful command line editing features of the GNU Readline library, which provides rich completion, history, and line-editing capabilities. Readline is best known for its use in the well-known Unix shell Bash, the standard shell for Mac OS X and many Linux distributions. +Tags: +- cmd +- command-line +- readline +- shell +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/chrisant996/Clink/1.6.3/chrisant996.Clink.yaml b/manifests/c/chrisant996/Clink/1.6.3/chrisant996.Clink.yaml new file mode 100644 index 0000000000000..20568f0b7e05e --- /dev/null +++ b/manifests/c/chrisant996/Clink/1.6.3/chrisant996.Clink.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: chrisant996.Clink +PackageVersion: 1.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/DEVCOM/LuaJIT/2.1.1706185428/DEVCOM.LuaJIT.installer.yaml b/manifests/d/DEVCOM/LuaJIT/2.1.1706185428/DEVCOM.LuaJIT.installer.yaml new file mode 100644 index 0000000000000..a600d259a76be --- /dev/null +++ b/manifests/d/DEVCOM/LuaJIT/2.1.1706185428/DEVCOM.LuaJIT.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: DEVCOM.LuaJIT +PackageVersion: 2.1.1706185428 +InstallerLocale: en-US +InstallerType: wix +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{74FD6B14-3AE3-461E-9580-99D51B5E60F6}' +ReleaseDate: 2024-01-31 +AppsAndFeaturesEntries: +- DisplayVersion: 2.1.19747 + UpgradeCode: '{6A62E303-6669-4F48-BCE3-36052132BE3B}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DevelopersCommunity/cmake-luajit/releases/download/v2.1.1706185428/LuaJIT-2.1.19747-win64.msi + InstallerSha256: 96BE2E5B6A3A380BD2507BB83D4EDF6093FFE6D66DDFE04078F3E2A2959518C2 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/DEVCOM/LuaJIT/2.1.1706185428/DEVCOM.LuaJIT.locale.en-US.yaml b/manifests/d/DEVCOM/LuaJIT/2.1.1706185428/DEVCOM.LuaJIT.locale.en-US.yaml new file mode 100644 index 0000000000000..cd6d1e17f78eb --- /dev/null +++ b/manifests/d/DEVCOM/LuaJIT/2.1.1706185428/DEVCOM.LuaJIT.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: DEVCOM.LuaJIT +PackageVersion: 2.1.1706185428 +PackageLocale: en-US +Publisher: DEVCOM +PublisherUrl: https://github.com/DevelopersCommunity/cmake-luajit +PackageName: LuaJIT +License: MIT +LicenseUrl: https://github.com/DevelopersCommunity/cmake-luajit/blob/HEAD/LICENSE.txt +Copyright: Copyright (C) 2005-2022 Mike Pall. All rights reserved. +CopyrightUrl: https://github.com/LuaJIT/LuaJIT/blob/v2.1/COPYRIGHT +ShortDescription: LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language. +Tags: +- lua +- luajit +- luarocks +ReleaseNotes: LuaJIT v2.1.1706185428 +ReleaseNotesUrl: https://github.com/DevelopersCommunity/cmake-luajit/releases/tag/v2.1.1706185428 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/DEVCOM/LuaJIT/2.1.1706185428/DEVCOM.LuaJIT.yaml b/manifests/d/DEVCOM/LuaJIT/2.1.1706185428/DEVCOM.LuaJIT.yaml new file mode 100644 index 0000000000000..ca2926b1f18aa --- /dev/null +++ b/manifests/d/DEVCOM/LuaJIT/2.1.1706185428/DEVCOM.LuaJIT.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: DEVCOM.LuaJIT +PackageVersion: 2.1.1706185428 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/DEVCOM/LuaJIT/2.1.19747/DEVCOM.LuaJIT.installer.yaml b/manifests/d/DEVCOM/LuaJIT/2.1.19747/DEVCOM.LuaJIT.installer.yaml new file mode 100644 index 0000000000000..ce359c61c3d9e --- /dev/null +++ b/manifests/d/DEVCOM/LuaJIT/2.1.19747/DEVCOM.LuaJIT.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: DEVCOM.LuaJIT +PackageVersion: 2.1.19747 +InstallerLocale: en-US +InstallerType: wix +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DevelopersCommunity/cmake-luajit/releases/download/v2.1.1706185428/LuaJIT-2.1.19747-win64.msi + InstallerSha256: 96BE2E5B6A3A380BD2507BB83D4EDF6093FFE6D66DDFE04078F3E2A2959518C2 + ProductCode: '{74FD6B14-3AE3-461E-9580-99D51B5E60F6}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/DEVCOM/LuaJIT/2.1.19747/DEVCOM.LuaJIT.locale.en-US.yaml b/manifests/d/DEVCOM/LuaJIT/2.1.19747/DEVCOM.LuaJIT.locale.en-US.yaml new file mode 100644 index 0000000000000..02f5cfe297b76 --- /dev/null +++ b/manifests/d/DEVCOM/LuaJIT/2.1.19747/DEVCOM.LuaJIT.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: DEVCOM.LuaJIT +PackageVersion: 2.1.19747 +PackageLocale: en-US +Publisher: DEVCOM +PublisherUrl: https://github.com/DevelopersCommunity/cmake-luajit +PackageName: LuaJIT +License: MIT License +LicenseUrl: https://github.com/LuaJIT/LuaJIT/blob/v2.1/COPYRIGHT +Copyright: Copyright (C) 2005-2022 Mike Pall. All rights reserved. +CopyrightUrl: https://github.com/LuaJIT/LuaJIT/blob/v2.1/COPYRIGHT +ShortDescription: LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language. +Tags: +- lua +- luajit +- luarocks +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/DEVCOM/LuaJIT/2.1.19747/DEVCOM.LuaJIT.yaml b/manifests/d/DEVCOM/LuaJIT/2.1.19747/DEVCOM.LuaJIT.yaml new file mode 100644 index 0000000000000..edc634b384f23 --- /dev/null +++ b/manifests/d/DEVCOM/LuaJIT/2.1.19747/DEVCOM.LuaJIT.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: DEVCOM.LuaJIT +PackageVersion: 2.1.19747 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/DeaDBeeF/DeaDBeeF/1.9.6/DeaDBeeF.DeaDBeeF.installer.yaml b/manifests/d/DeaDBeeF/DeaDBeeF/1.9.6/DeaDBeeF.DeaDBeeF.installer.yaml new file mode 100644 index 0000000000000..28c5441cd2c31 --- /dev/null +++ b/manifests/d/DeaDBeeF/DeaDBeeF/1.9.6/DeaDBeeF.DeaDBeeF.installer.yaml @@ -0,0 +1,147 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: DeaDBeeF.DeaDBeeF +PackageVersion: 1.9.6 +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +FileExtensions: +- "669" +- a2m +- aac +- adl +- aif +- aiff +- akta +- am +- amd +- amf +- ape +- au +- avr +- bam +- caf +- cmf +- cpt +- d00 +- dfm +- dmo +- dro +- dsf +- dsm +- dtm +- dts +- flac +- fst +- hsc +- hsp +- htk +- imf +- ircam +- it +- itz +- j2b +- jbm +- ksm +- laa +- lds +- m +- m15 +- m4a +- m4b +- mad +- mat4 +- mat5 +- mdz +- minidsf +- minipsf +- minipsf2 +- miniqsf +- minissf +- mkj +- mo3 +- mod +- mp+ +- mp1 +- mp2 +- mp3 +- mp4 +- mpc +- mpga +- mpp +- msc +- mtk +- mtm +- mtz +- nist +- nt +- oct +- oga +- ogg +- ogv +- ogx +- okt +- opus +- paf +- psf +- psf2 +- psm +- pt +- ptz +- pvf +- qsf +- rad +- raw +- rix +- rol +- s3m +- s3z +- sa2 +- sat +- sci +- sd2 +- sds +- shn +- snd +- sng +- spu +- ssf +- stk +- stm +- stz +- svx +- tta +- umx +- voc +- w64 +- wav +- wavex +- wma +- wv +- wve +- xad +- xi +- xm +- xms +- xmz +- xsm +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://sourceforge.net/projects/deadbeef/files/travis/windows/1.9.6/deadbeef-1.9.6-windows-x86_64.exe/download + InstallerSha256: AB917D78CD31E1325E142427D436D782D5D9D211D137FE713AB5A14BBF41A8B3 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://sourceforge.net/projects/deadbeef/files/travis/windows/1.9.6/deadbeef-1.9.6-windows-x86_64.exe/download + InstallerSha256: AB917D78CD31E1325E142427D436D782D5D9D211D137FE713AB5A14BBF41A8B3 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.4.0 +ReleaseDate: 2023-11-07 diff --git a/manifests/d/DeaDBeeF/DeaDBeeF/1.9.6/DeaDBeeF.DeaDBeeF.locale.en-US.yaml b/manifests/d/DeaDBeeF/DeaDBeeF/1.9.6/DeaDBeeF.DeaDBeeF.locale.en-US.yaml new file mode 100644 index 0000000000000..bf726fc66f928 --- /dev/null +++ b/manifests/d/DeaDBeeF/DeaDBeeF/1.9.6/DeaDBeeF.DeaDBeeF.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: DeaDBeeF.DeaDBeeF +PackageVersion: 1.9.6 +PackageLocale: en-US +Publisher: DeaDBeeF +PublisherUrl: https://deadbeef.sourceforge.io +PublisherSupportUrl: https://github.com/DeaDBeeF-Player/deadbeef/issues +PrivacyUrl: https://slashdotmedia.com/privacy-statement +Author: Alexey Yakovenko +PackageName: DeaDBeeF +PackageUrl: https://sourceforge.net/projects/deadbeef +License: GPL-2.0-or-later, LGPL-2.0-or-later +LicenseUrl: https://github.com/DeaDBeeF-Player/deadbeef/blob/master/COPYING +Copyright: Copyright (c) 2009-2021 Alexey Yakovenko and contributors +CopyrightUrl: https://github.com/DeaDBeeF-Player/deadbeef/blob/master/COPYING +ShortDescription: DeaDBeeF is a modular cross-platform audio player. +Moniker: deadbeef +Tags: +- audio-player +- audio +- music +- music-player +- media +- media-player +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.017/MonkeysAudio.MonkeysAudio.yaml b/manifests/d/DeaDBeeF/DeaDBeeF/1.9.6/DeaDBeeF.DeaDBeeF.yaml similarity index 54% rename from manifests/m/MonkeysAudio/MonkeysAudio/1.017/MonkeysAudio.MonkeysAudio.yaml rename to manifests/d/DeaDBeeF/DeaDBeeF/1.9.6/DeaDBeeF.DeaDBeeF.yaml index f2862011d35c7..96f0dad06c2fe 100644 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.017/MonkeysAudio.MonkeysAudio.yaml +++ b/manifests/d/DeaDBeeF/DeaDBeeF/1.9.6/DeaDBeeF.DeaDBeeF.yaml @@ -1,8 +1,8 @@ -# Created with WinGet Automation using Komac v1.10.0 +# Created using wingetcreate 1.5.7.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.017' +PackageIdentifier: DeaDBeeF.DeaDBeeF +PackageVersion: 1.9.6 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.4.0 diff --git a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.installer.yaml b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.installer.yaml index 441c50e51d837..2a065cd3eb8fb 100644 --- a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.installer.yaml +++ b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/29 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: DigitalExtremes.Warframe diff --git a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.locale.en-US.yaml b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.locale.en-US.yaml index 04682099107fb..537f05d1c7ca1 100644 --- a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.locale.en-US.yaml +++ b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/29 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: DigitalExtremes.Warframe diff --git a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.yaml b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.yaml index 423c29df20260..57a5a5ce2c440 100644 --- a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.yaml +++ b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/29 +# Automatically updated by the winget bot at 2024/Jan/31 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: DigitalExtremes.Warframe diff --git a/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.installer.yaml b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.installer.yaml new file mode 100644 index 0000000000000..297643368cff1 --- /dev/null +++ b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.installer.yaml @@ -0,0 +1,205 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Dio.PureCodec +PackageVersion: "20240131" +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Protocols: +- potplayer +- potrun +- rtmp +- rtsp +FileExtensions: +- "264" +- "265" +- 3g2 +- 3ga +- 3gp +- 3gp2 +- 3gpp +- aac +- ac3 +- aif +- aifc +- aiff +- alac +- amr +- amv +- aob +- ape +- apl +- asf +- ass +- asx +- au +- avi +- avs +- awb +- bdmv +- bik +- caf +- cda +- cue +- dav +- dff +- divx +- dmskm +- dpg +- dpl +- dsa +- dsf +- dsm +- dss +- dsv +- dts +- dtshd +- dtsma +- dv +- dvr-ms +- eac3 +- ec3 +- evo +- f4v +- flac +- flc +- fli +- flic +- flv +- h264 +- h265 +- hdmov +- hevc +- hm10 +- idx +- ifo +- ismv +- ivf +- k3g +- lmp4 +- m1a +- m1v +- m2a +- m2p +- m2t +- m2ts +- m2v +- m3u +- m3u8 +- m4a +- m4b +- m4p +- m4r +- m4v +- mid +- midi +- mk3d +- mka +- mkv +- mlp +- mod +- mov +- mp2 +- mp2v +- mp3 +- mp4 +- mp4v +- mpa +- mpc +- mpcpl +- mpd +- mpe +- mpeg +- mpg +- mpl +- mpls +- mpv2 +- mpv4 +- mqv +- mts +- mxf +- nsr +- nsv +- nut +- obu +- ofr +- ofs +- oga +- ogg +- ogm +- ogv +- opus +- pbf +- pls +- psb +- pva +- qt +- ra +- ram +- rec +- rm +- rmi +- rmm +- rmvb +- roq +- rp +- rpm +- rt +- sbv +- sfd +- skm +- smi +- smil +- smk +- snd +- spx +- srt +- ssa +- ssf +- ssif +- sub +- sup +- swf +- tak +- thd +- tp +- tpr +- trp +- ts +- tta +- ttml +- usf +- vc1 +- vob +- vpy +- vtt +- w64 +- wav +- wax +- weba +- webm +- wm +- wma +- wmp +- wmv +- wmx +- wpl +- wtv +- wv +- wvx +- xspf +- xss +- y4m +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + InstallerUrl: http://dl-t1.wmzhe.com/13/13163/PureCodec20240131.exe + InstallerSha256: 2C79A99D73D043EC2461E9BC39E1DEBDDA0B992583B620B4740D7480753C07C4 + ProductCode: PureCodec +- Architecture: x64 + InstallerUrl: http://dl-t1.wmzhe.com/13/13163/PureCodec20240131.exe + InstallerSha256: 2C79A99D73D043EC2461E9BC39E1DEBDDA0B992583B620B4740D7480753C07C4 + ProductCode: PureCodec +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.en-US.yaml b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.en-US.yaml new file mode 100644 index 0000000000000..4c72d55a362b1 --- /dev/null +++ b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Dio.PureCodec +PackageVersion: "20240131" +PackageLocale: en-US +Publisher: Dio +PublisherUrl: https://diodiy.lofter.com/ +PublisherSupportUrl: https://diodiy.lofter.com/ +# PrivacyUrl: +# Author: +PackageName: Pure Codec +PackageUrl: https://jm.wmzhe.com/ +License: Freeware +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Codec pack for HD fans +Description: Pure Codec is a well-built codec pack for HD fans, capable of decoding and playing popular video and audio formats by hardware and software. It integrates multimedia player PotPlayer, MPC-HC and MPC-BE, splitter and decoder suite LAV Filters, high quality renderer madVR, and supports Chinese and English. +# Moniker: +Tags: +- audio +- codec +- decode +- lav +- madvr +- media +- mpc +- mpc-be +- mpc-hc +- multimedia +- music +- player +- potplayer +- video +# ReleaseNotes: +ReleaseNotesUrl: http://qxys.hkfree.work/ShowPost.asp?ThreadID=206 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.zh-CN.yaml b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a1dc2e4e81b1c --- /dev/null +++ b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.zh-CN.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Dio.PureCodec +PackageVersion: "20240131" +PackageLocale: zh-CN +Publisher: Dio +PublisherUrl: https://diodiy.lofter.com/ +PublisherSupportUrl: https://diodiy.lofter.com/ +# PrivacyUrl: +# Author: +PackageName: 完美解码 +PackageUrl: https://jm.wmzhe.com/ +License: 免费软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 追求极致,只为完美视听体验 +Description: 完美解码是一款为高清影视爱好者精心打造的影音解码包,能软硬件解码播放流行的视频和音频格式。集成多媒体播放器 PotPlayer、MPC-HC、MPC-BE,分离器解码器套件 LAV Filters,高画质渲染器 madVR,支持中英语言安装使用。 +# Moniker: +Tags: +- lav +- madvr +- mpc +- mpc-be +- mpc-hc +- potplayer +- 多媒体 +- 媒体 +- 影音 +- 播放器 +- 视频 +- 解码 +- 解码器 +- 音乐 +- 音频 +ReleaseNotes: |- + + 更新 PotPlayer v1.7.22077 + + 更新 MPC-HC v2.1.4 + + 升级安装程序,仅安装 PotPlayer 32 位版本时才修改 hosts + + 升级卸载程序,增加 "还原 hosts (不阻止 PotPlayer 联网)" 选项 +ReleaseNotesUrl: http://qxys.hkfree.work/ShowPost.asp?ThreadID=206 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.yaml b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.yaml new file mode 100644 index 0000000000000..cda4434635b0e --- /dev/null +++ b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Dio.PureCodec +PackageVersion: "20240131" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.installer.yaml b/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.installer.yaml new file mode 100644 index 0000000000000..f9d994b48da7e --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Discord.Discord +PackageVersion: 1.0.9032 +InstallerLocale: en-US +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +RequireExplicitUpgrade: true +Installers: +- Architecture: x86 + InstallerUrl: https://dl.discordapp.net/distro/app/stable/win/x86/1.0.9032/DiscordSetup.exe + InstallerSha256: 974FED211F79D0B4EF3D6AF92A7C4355ED91B8D4F830787F64DAA6B0F2C7DCF1 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.locale.en-US.yaml b/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.locale.en-US.yaml new file mode 100644 index 0000000000000..ddfd098da798a --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Discord.Discord +PackageVersion: 1.0.9032 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com +PublisherSupportUrl: https://support.discord.com +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord +PackageUrl: https://discord.com +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2023 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. +Tags: +- chat +- gaming +- talk +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.locale.pt-BR.yaml b/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.locale.pt-BR.yaml new file mode 100644 index 0000000000000..0de04c391c3ae --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.locale.pt-BR.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Discord.Discord +PackageVersion: 1.0.9032 +PackageLocale: pt-BR +Publisher: Discord Inc. +PublisherUrl: https://discord.com +PublisherSupportUrl: https://support.discord.com +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord +PackageUrl: https://discord.com +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2023 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + O Discord é a forma mais fácil de falar por voz, vídeo e texto. + Fale, converse, saia e mantenha-se próximo dos seus amigos e comunidades. +Tags: +- conversar +- jogos +- conversa +- voz +- conversação-por-voz +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.locale.zh-CN.yaml b/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6e4a280494f98 --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.locale.zh-CN.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Discord.Discord +PackageVersion: 1.0.9032 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com +PublisherSupportUrl: https://support.discord.com +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord +PackageUrl: https://discord.com +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2023 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.yaml b/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.yaml new file mode 100644 index 0000000000000..e5b937092cfe6 --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9032/Discord.Discord.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Discord.Discord +PackageVersion: 1.0.9032 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/Docker/DockerDesktop/4.27.1/Docker.DockerDesktop.installer.yaml b/manifests/d/Docker/DockerDesktop/4.27.1/Docker.DockerDesktop.installer.yaml new file mode 100644 index 0000000000000..9e418e2afa5cc --- /dev/null +++ b/manifests/d/Docker/DockerDesktop/4.27.1/Docker.DockerDesktop.installer.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Docker.DockerDesktop +PackageVersion: 4.27.1 +Platform: +- Windows.Desktop +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: install --quiet + SilentWithProgress: install --quiet +ExpectedReturnCodes: +- InstallerReturnCode: 3 + ReturnResponse: alreadyInstalled +UpgradeBehavior: install +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://desktop.docker.com/win/main/amd64/136059/Docker%20Desktop%20Installer.exe + InstallerSha256: 378568E64CB76D65236DF258120D5270BE8B9F486B4A1EE5C2D8A7492EEEFA2F +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/Docker/DockerDesktop/4.27.1/Docker.DockerDesktop.locale.en-US.yaml b/manifests/d/Docker/DockerDesktop/4.27.1/Docker.DockerDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..203fe5374256c --- /dev/null +++ b/manifests/d/Docker/DockerDesktop/4.27.1/Docker.DockerDesktop.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Docker.DockerDesktop +PackageVersion: 4.27.1 +PackageLocale: en-US +Publisher: Docker Inc. +PublisherUrl: https://www.docker.com +PublisherSupportUrl: https://www.docker.com/support +PrivacyUrl: https://www.docker.com/legal/privacy +Author: Docker Inc. +PackageName: Docker Desktop +PackageUrl: https://www.docker.com/products/docker-desktop +License: Proprietary +LicenseUrl: https://www.docker.com/legal/docker-subscription-service-agreement +Copyright: Copyright © 2015-2023 Docker Inc. All rights reserved. +CopyrightUrl: https://www.docker.com/legal/docker-subscription-service-agreement +ShortDescription: Docker Desktop is an application for macOS and Windows machines for the building and sharing of containerized applications. Access Docker Desktop and follow the guided onboarding to build your first containerized application in minutes. +Moniker: docker +Tags: +- container +- containerization +- virtualization +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/Docker/DockerDesktop/4.27.1/Docker.DockerDesktop.yaml b/manifests/d/Docker/DockerDesktop/4.27.1/Docker.DockerDesktop.yaml new file mode 100644 index 0000000000000..12fa2332255d1 --- /dev/null +++ b/manifests/d/Docker/DockerDesktop/4.27.1/Docker.DockerDesktop.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Docker.DockerDesktop +PackageVersion: 4.27.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/DoltHub/Dolt/1.32.5/DoltHub.Dolt.installer.yaml b/manifests/d/DoltHub/Dolt/1.32.5/DoltHub.Dolt.installer.yaml new file mode 100644 index 0000000000000..782151f7cbf7a --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.32.5/DoltHub.Dolt.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.32.5 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{BB6358F1-64C7-418A-AD6C-F161D1306354}' +AppsAndFeaturesEntries: +- DisplayName: Dolt 1.32.2 + UpgradeCode: '{6BC40754-759D-4899-9FD3-E6BE1823CACD}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dolthub/dolt/releases/download/v1.32.5/dolt-windows-amd64.msi + InstallerSha256: 38AF49FF758E466DD58E2023D4333C7497500F1262F188A2D002A1A1CCE94BCE +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/DoltHub/Dolt/1.32.5/DoltHub.Dolt.locale.en-US.yaml b/manifests/d/DoltHub/Dolt/1.32.5/DoltHub.Dolt.locale.en-US.yaml new file mode 100644 index 0000000000000..6088996028204 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.32.5/DoltHub.Dolt.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.32.5 +PackageLocale: en-US +Publisher: DoltHub +PublisherUrl: https://github.com/dolthub/dolt +PublisherSupportUrl: https://github.com/dolthub/dolt/issues +Author: DoltHub +PackageName: Dolt +PackageUrl: https://www.dolthub.com +License: APACHE-2.0 +LicenseUrl: https://raw.githubusercontent.com/dolthub/dolt/master/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/dolthub/dolt/master/LICENSE +ShortDescription: Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. +Description: |- + Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. + Connect to Dolt just like any MySQL database to run queries or update the data using SQL commands. + Use the command line interface to import CSV files, commit your changes, push them to a remote, or merge your teammate's changes. +Moniker: dolt +Tags: +- cli +- data +- git-for-data +- versioning +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/DoltHub/Dolt/1.32.5/DoltHub.Dolt.yaml b/manifests/d/DoltHub/Dolt/1.32.5/DoltHub.Dolt.yaml new file mode 100644 index 0000000000000..a6a0028551a50 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.32.5/DoltHub.Dolt.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.32.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/DoltHub/Dolt/1.32.6/DoltHub.Dolt.installer.yaml b/manifests/d/DoltHub/Dolt/1.32.6/DoltHub.Dolt.installer.yaml new file mode 100644 index 0000000000000..2f96e0b3d6cb5 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.32.6/DoltHub.Dolt.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.32.6 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{43FB00E9-8A65-4D09-87D7-28E0BD5B4E49}' +AppsAndFeaturesEntries: +- DisplayName: Dolt 1.32.2 + UpgradeCode: '{6BC40754-759D-4899-9FD3-E6BE1823CACD}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dolthub/dolt/releases/download/v1.32.6/dolt-windows-amd64.msi + InstallerSha256: BFA6C65E8CC6AF0950E360128CC4246349D2C5BC3FA4FC5D262E8323B5B9A106 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/DoltHub/Dolt/1.32.6/DoltHub.Dolt.locale.en-US.yaml b/manifests/d/DoltHub/Dolt/1.32.6/DoltHub.Dolt.locale.en-US.yaml new file mode 100644 index 0000000000000..d7d5fdf16d425 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.32.6/DoltHub.Dolt.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.32.6 +PackageLocale: en-US +Publisher: DoltHub +PublisherUrl: https://github.com/dolthub/dolt +PublisherSupportUrl: https://github.com/dolthub/dolt/issues +Author: DoltHub +PackageName: Dolt +PackageUrl: https://www.dolthub.com +License: APACHE-2.0 +LicenseUrl: https://raw.githubusercontent.com/dolthub/dolt/master/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/dolthub/dolt/master/LICENSE +ShortDescription: Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. +Description: |- + Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. + Connect to Dolt just like any MySQL database to run queries or update the data using SQL commands. + Use the command line interface to import CSV files, commit your changes, push them to a remote, or merge your teammate's changes. +Moniker: dolt +Tags: +- cli +- data +- git-for-data +- versioning +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/DoltHub/Dolt/1.32.6/DoltHub.Dolt.yaml b/manifests/d/DoltHub/Dolt/1.32.6/DoltHub.Dolt.yaml new file mode 100644 index 0000000000000..6c46f73da7812 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.32.6/DoltHub.Dolt.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.32.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/DuongDieuPhap/ImageGlass/9.0.10.201/DuongDieuPhap.ImageGlass.installer.yaml b/manifests/d/DuongDieuPhap/ImageGlass/9.0.10.201/DuongDieuPhap.ImageGlass.installer.yaml new file mode 100644 index 0000000000000..22a09863271b9 --- /dev/null +++ b/manifests/d/DuongDieuPhap/ImageGlass/9.0.10.201/DuongDieuPhap.ImageGlass.installer.yaml @@ -0,0 +1,79 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: DuongDieuPhap.ImageGlass +PackageVersion: 9.0.10.201 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: msi +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: uninstallPrevious +FileExtensions: +- ai +- avif +- b64 +- bmp +- bvif +- cur +- cut +- dib +- emf +- eps +- exif +- exr +- fits +- gif +- hdr +- heic +- heif +- ico +- jfif +- jp2 +- jpe +- jpeg +- jpg +- mjpeg +- mpg +- pbm +- pcx +- pgm +- png +- ppm +- psd +- raw +- rga +- svg +- tif +- tiff +- viff +- vx +- webp +- wmf +- wpg +- xbm +- xpm +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 + - PackageIdentifier: Microsoft.EdgeWebView2Runtime +ProductCode: '{35D2E54D-F51D-4BCE-B499-67EB30062C5C}' +ReleaseDate: 2024-01-30 +AppsAndFeaturesEntries: +- UpgradeCode: '{877DB994-AB03-4025-B99D-41CE565E810B}' +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/d2phap/ImageGlass/releases/download/9.0.10.201/ImageGlass_9.0.10.201_x64.msi + InstallerSha256: E64BD9C20A4C23C05ED055C4CEF515B7FDB8F2EC9259F9AB7FFFB6CD99C567A7 +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/d2phap/ImageGlass/releases/download/9.0.10.201/ImageGlass_9.0.10.201_x64.msi + InstallerSha256: E64BD9C20A4C23C05ED055C4CEF515B7FDB8F2EC9259F9AB7FFFB6CD99C567A7 + InstallerSwitches: + Custom: ALLUSERS=1 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/DuongDieuPhap/ImageGlass/9.0.10.201/DuongDieuPhap.ImageGlass.locale.en-US.yaml b/manifests/d/DuongDieuPhap/ImageGlass/9.0.10.201/DuongDieuPhap.ImageGlass.locale.en-US.yaml new file mode 100644 index 0000000000000..7d9c49608ac15 --- /dev/null +++ b/manifests/d/DuongDieuPhap/ImageGlass/9.0.10.201/DuongDieuPhap.ImageGlass.locale.en-US.yaml @@ -0,0 +1,64 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: DuongDieuPhap.ImageGlass +PackageVersion: 9.0.10.201 +PackageLocale: en-US +Publisher: Duong Dieu Phap +PublisherUrl: https://imageglass.org/ +PublisherSupportUrl: https://imageglass.org/support +Author: Duong Dieu Phap +PackageName: ImageGlass +PackageUrl: https://imageglass.org/ +License: GPLv3 +LicenseUrl: https://github.com/d2phap/ImageGlass/blob/HEAD/LICENSE +Copyright: ImageGlass is copyright (c) 2010 - 2023 by Duong Dieu Phap. +CopyrightUrl: https://github.com/d2phap/ImageGlass/blob/develop/LICENSE +ShortDescription: A lightweight, versatile image viewer +Description: |- + ImageGlass is a simple picture viewer with which you will be able to display your image collection in a very similar way to the one that Windows provides by default, but with some additional functions. + This application will allow you to better manage your pictures thanks to the options it includes and the extension it enables to install for adding more functions and widening its possibilities. +Moniker: imageglass +Tags: +- foss +- image +- image-processing +- image-viewer +- open-source +- photo +- photo-browser +- photo-viewer +- picture +ReleaseNotes: |- + DownloadsPlease support this project by making a donation or purchasing the Microsoft Store version: + + + 🪁 System Requirements + - 🆕 Windows 10/11 64-bit, version 1809 (build 17763) or later + - .NET Desktop Runtime 8 (64-bit) + - WebView2 Runtime 64-bit v119.0.2151 or later + 📝 Changelog (since ImageGlass 8.11) + Please read the blogpost: https://imageglass.org/news/introducing-the-new-imageglass-version-9-88📝 Changelog (since ImageGlass 9.0.9.1230): + 🔮 Improvements: + - Added EnableImageAsyncLoading setting (experimental) in igconfig.json file that allows users to switch back to synchronous image loading as same as version 8 (#1775) + - Added new parameter --per-machine to command set-default-viewer in igcmd.exe to support setting default photo viewer at machine level (#1828) + - Added Exit option to the context menu (#1322) + - Added PageUp, PageDown as default hotkeys for view next/previous image + - ImageGlass Store only: Clicking "Update" button in Check for Update dialog now opens ImageGlass on Microsoft Store + - Updated icon for Viewer, Toolbar and Gallery in sidebar of the App settings + - Shows message "Slideshow paused" when slideshow ends (#1805) + - Shows more details on Unhandled Exception popup: MagickNET, WebView2 version. + - Shows more details if users run ImageGlass in Debug mode: DPI, Screen resolution, WebView2 version, Renderer engine. + 🐛 Bugfixes: + - Fixed an issue where "VerticalBlankTicker" error appeared on some monitors (#1814, #1797) and Windows Server 2019 (#1771) + - Fixed an issue where pressing Win key caused image zoomed out for AZERTY keyboard layout (#1769) + - Fixed an issue where users could not save the clipboard image if the image list was empty (#1801) + - Fixed an issue where saving HEIC for other formats caused "Unsupport image format" popup (#1822) + - Fixed an issue where the crop selection reset after saving the image (#1825) + - Attempted to fix an issue where Crop button triggered "Null Reference Exception" (#1758) + - Fixed an issue where the Background color in App settings > Appearance tab did not show and load correctly + - Fixed an issue where clicking on "Get extension icon packs" link in App settings > File type associations tab did not open Extension icon packs site + Full Changelog: +ReleaseNotesUrl: https://github.com/d2phap/ImageGlass/releases/tag/9.0.10.201 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/DuongDieuPhap/ImageGlass/9.0.10.201/DuongDieuPhap.ImageGlass.yaml b/manifests/d/DuongDieuPhap/ImageGlass/9.0.10.201/DuongDieuPhap.ImageGlass.yaml new file mode 100644 index 0000000000000..b677805125918 --- /dev/null +++ b/manifests/d/DuongDieuPhap/ImageGlass/9.0.10.201/DuongDieuPhap.ImageGlass.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: DuongDieuPhap.ImageGlass +PackageVersion: 9.0.10.201 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/Dystroy/broot/1.32.0/Dystroy.broot.installer.yaml b/manifests/d/Dystroy/broot/1.32.0/Dystroy.broot.installer.yaml new file mode 100644 index 0000000000000..2db0ff9870695 --- /dev/null +++ b/manifests/d/Dystroy/broot/1.32.0/Dystroy.broot.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Dystroy.broot +PackageVersion: 1.32.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: x86_64-pc-windows-gnu\broot.exe + PortableCommandAlias: broot +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Canop/broot/releases/download/v1.32.0/broot_1.32.0.zip + InstallerSha256: 2CBB599183D954E067BA51B5D3E165227BC1C030A8AB50E5FF6D5521ACD1B5E5 +ManifestType: installer +ManifestVersion: 1.5.0 +ReleaseDate: 2024-01-02 diff --git a/manifests/d/Dystroy/broot/1.32.0/Dystroy.broot.locale.en-US.yaml b/manifests/d/Dystroy/broot/1.32.0/Dystroy.broot.locale.en-US.yaml new file mode 100644 index 0000000000000..004a261d1f377 --- /dev/null +++ b/manifests/d/Dystroy/broot/1.32.0/Dystroy.broot.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Dystroy.broot +PackageVersion: 1.32.0 +PackageLocale: en-US +Publisher: Dystroy +PublisherUrl: https://dystroy.org/broot/ +PackageName: Broot +License: MIT +LicenseUrl: https://raw.githubusercontent.com/Canop/broot/main/LICENSE +ShortDescription: A new way to see and navigate directory trees. +Tags: +- command-line +- cli +- rust +ReleaseNotesUrl: https://github.com/Canop/broot/releases/tag/v1.32.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/Dystroy/broot/1.32.0/Dystroy.broot.yaml b/manifests/d/Dystroy/broot/1.32.0/Dystroy.broot.yaml new file mode 100644 index 0000000000000..a175bff508f71 --- /dev/null +++ b/manifests/d/Dystroy/broot/1.32.0/Dystroy.broot.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Dystroy.broot +PackageVersion: 1.32.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/e/EdrawSoft/EdrawMax/13.0.3.1082/EdrawSoft.EdrawMax.installer.yaml b/manifests/e/EdrawSoft/EdrawMax/13.0.3.1082/EdrawSoft.EdrawMax.installer.yaml new file mode 100644 index 0000000000000..98df39e4f0c9e --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMax/13.0.3.1082/EdrawSoft.EdrawMax.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: EdrawSoft.EdrawMax +PackageVersion: 13.0.3.1082 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- eddx +- edt +- edx +- vsd +- vsdx +Installers: +- Architecture: x86 + InstallerUrl: https://download.edrawsoft.com/cbs_down/edraw-max_13.0.3_full5371.exe + InstallerSha256: D1961CFAA6DD4E6C9C4C8BE01E17DFC2BE3133924BE46C794A18270FC9EEBAC6 + ProductCode: '{037BAB81-3DF7-4381-A72C-A26B57C03548}_is1' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/e/EdrawSoft/EdrawMax/13.0.3.1082/EdrawSoft.EdrawMax.locale.en-US.yaml b/manifests/e/EdrawSoft/EdrawMax/13.0.3.1082/EdrawSoft.EdrawMax.locale.en-US.yaml new file mode 100644 index 0000000000000..4d9e8bf065088 --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMax/13.0.3.1082/EdrawSoft.EdrawMax.locale.en-US.yaml @@ -0,0 +1,64 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: EdrawSoft.EdrawMax +PackageVersion: 13.0.3.1082 +PackageLocale: en-US +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.com/ +PublisherSupportUrl: https://www.edrawsoft.com/support/edrawmax/ +PrivacyUrl: https://www.edrawsoft.com/privacy-policy.html +Author: SHENZHEN EDRAW SOFTWARE CO., LTD. +PackageName: Wondershare EdrawMax +PackageUrl: https://www.edrawsoft.com/edraw-max/ +License: Proprietary +LicenseUrl: https://www.edrawsoft.com/user-license-agreement.html +Copyright: Copyright © 2024 EdrawSoft. All rights reserved. +CopyrightUrl: https://www.edrawsoft.com/terms-conditions.html +ShortDescription: An intuitive diagram software with templates for any scenario. +Description: EdrawMax is a powerful, all-in-one, and yet easy-to-use diagramming tool that enables users to visualize the ideas effortlessly. With EdrawMax, you can create and customize flowcharts, Venn diagrams, mind maps, organizational charts, Gantt charts, UML diagrams, electrical drawings, genograms, building plans, etc. +# Moniker: +Tags: +- chart +- design +- diagram +- draw +- gantt +- graph +- graphics +- mind-map +- mind-mapping +- mindmap +- uml +ReleaseNotes: |- + Optimization of Graphic Operations + + We now support setting the size of multiple shapes all at once. For example, you can select an entire flowchart, go to the Size button, input the width and height values, and all the shape sizes in the flowchart will be modified. + + When you set No Fill to a shape, the hollow part will not be selectable or draggable. This will make it easier for you to select the shapes underneath the No Fill shape. + + Optimization of Text Operations: + + We have added the Autofit mode for text boxes. You can enable this mode from the drop-down menu under the Text tool. + + We have improved the clarity of formulas inserted on the canvas using the formula tool. Also, you are now allowed to change the formulas size while editing. + + Now you have the option to show or hide the dimensions of individual objects in a floor plan. + + Other Improvements: + + Exporting images and PDFs now supports the option to display or remove gridlines. + + We have optimized the issue where the connecting line arrow could not be reversed in certain scenes. +ReleaseNotesUrl: https://www.edrawsoft.com/whats-new/edrawmax.html +PurchaseUrl: https://www.edrawsoft.com/pricing-edrawmax.html +# InstallationNotes: +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://www.edrawsoft.com/guide/edrawmax/ +- DocumentLabel: Tutorials + DocumentUrl: https://www.edrawsoft.com/video/#edrawmax +- DocumentLabel: FAQ + DocumentUrl: https://www.edrawsoft.com/faq/edrawmax/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/e/EdrawSoft/EdrawMax/13.0.3.1082/EdrawSoft.EdrawMax.locale.zh-CN.yaml b/manifests/e/EdrawSoft/EdrawMax/13.0.3.1082/EdrawSoft.EdrawMax.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e29bfcc1ad938 --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMax/13.0.3.1082/EdrawSoft.EdrawMax.locale.zh-CN.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: EdrawSoft.EdrawMax +PackageVersion: 13.0.3.1082 +PackageLocale: zh-CN +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.com/ +PublisherSupportUrl: https://www.edrawsoft.com/support/edrawmax/ +PrivacyUrl: https://www.edrawsoft.com/privacy-policy.html +Author: 深圳市亿图软件有限公司 +PackageName: Wondershare EdrawMax +PackageUrl: https://www.edrawsoft.com/edraw-max/ +License: 专有软件 +LicenseUrl: https://www.edrawsoft.com/user-license-agreement.html +Copyright: © 2024 深圳市亿图软件有限公司 版权所有 +CopyrightUrl: https://www.edrawsoft.com/terms-conditions.html +ShortDescription: 一款直观的图表软件,拥有适用于任何场景的模板 +Description: EdrawMax 是一款功能强大、多合一且易于使用的图表工具,使用户能够毫不费力地将想法可视化。您可以使用 EdrawMax 建立和自定义流程图、维恩图、思维导图、组织结构图、甘特图、UML 图表、电气图、家谱图、建筑计划等。 +# Moniker: +Tags: +- uml +- 图形 +- 图示 +- 图表 +- 思维导图 +- 甘特图 +- 绘图 +- 脑图 +- 设计 +# ReleaseNotes: +ReleaseNotesUrl: https://www.edrawsoft.com/whats-new/edrawmax.html +PurchaseUrl: https://www.edrawsoft.com/pricing-edrawmax.html +# InstallationNotes: +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://www.edrawsoft.com/guide/edrawmax/ +- DocumentLabel: 教程 + DocumentUrl: https://www.edrawsoft.com/video/#edrawmax +- DocumentLabel: 常见问题 + DocumentUrl: https://www.edrawsoft.com/faq/edrawmax/ +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/e/EdrawSoft/EdrawMax/13.0.3.1082/EdrawSoft.EdrawMax.yaml b/manifests/e/EdrawSoft/EdrawMax/13.0.3.1082/EdrawSoft.EdrawMax.yaml new file mode 100644 index 0000000000000..599dfb1df06f0 --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMax/13.0.3.1082/EdrawSoft.EdrawMax.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: EdrawSoft.EdrawMax +PackageVersion: 13.0.3.1082 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/e/Egnyte/EgnyteDesktopApp/3.16.0.138/Egnyte.EgnyteDesktopApp.installer.yaml b/manifests/e/Egnyte/EgnyteDesktopApp/3.16.0.138/Egnyte.EgnyteDesktopApp.installer.yaml new file mode 100644 index 0000000000000..d7e6d9a92368c --- /dev/null +++ b/manifests/e/Egnyte/EgnyteDesktopApp/3.16.0.138/Egnyte.EgnyteDesktopApp.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Egnyte.EgnyteDesktopApp +PackageVersion: 3.16.0.138 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{CE2BFAB3-7287-474F-A88C-1648FF949321}' +AppsAndFeaturesEntries: +- UpgradeCode: '{03909D9B-F5F2-41F3-ABF9-4FCE077F028D}' +Installers: +- Architecture: x64 + InstallerUrl: https://egnyte-cdn.egnyte.com/egnytedrive/win/en-us/latest/EgnyteConnectWin.msi + InstallerSha256: C59FBC03898E87699C01DC2E2D3298741AA92BAD6B93F3E4B5B412F83D19A95A +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/e/Egnyte/EgnyteDesktopApp/3.16.0.138/Egnyte.EgnyteDesktopApp.locale.en-US.yaml b/manifests/e/Egnyte/EgnyteDesktopApp/3.16.0.138/Egnyte.EgnyteDesktopApp.locale.en-US.yaml new file mode 100644 index 0000000000000..dde3b6b04287a --- /dev/null +++ b/manifests/e/Egnyte/EgnyteDesktopApp/3.16.0.138/Egnyte.EgnyteDesktopApp.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Egnyte.EgnyteDesktopApp +PackageVersion: 3.16.0.138 +PackageLocale: en-US +Publisher: Egnyte, Inc. +PublisherUrl: https://www.egnyte.com +PrivacyUrl: https://www.egnyte.com/privacy-policy +Author: Egnyte, Inc. +PackageName: Egnyte Desktop App +PackageUrl: https://www.egnyte.com/file-access/desktop-access +License: Proprietary +Copyright: Copyright (c) 2021 Egnyte, Inc. All rights reserved. +ShortDescription: The Desktop App provides access to content on Egnyte from your file explorer, allowing you to work with content on the cloud the same way you work with content stored locally. +Moniker: egnyte +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/e/Egnyte/EgnyteDesktopApp/3.16.0.138/Egnyte.EgnyteDesktopApp.yaml b/manifests/e/Egnyte/EgnyteDesktopApp/3.16.0.138/Egnyte.EgnyteDesktopApp.yaml new file mode 100644 index 0000000000000..0dfa85dc05767 --- /dev/null +++ b/manifests/e/Egnyte/EgnyteDesktopApp/3.16.0.138/Egnyte.EgnyteDesktopApp.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Egnyte.EgnyteDesktopApp +PackageVersion: 3.16.0.138 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/e/eMule/eMule/community/0.70a/eMule.eMule.community.installer.yaml b/manifests/e/eMule/eMule/community/0.70a/eMule.eMule.community.installer.yaml new file mode 100644 index 0000000000000..77a43465e9912 --- /dev/null +++ b/manifests/e/eMule/eMule/community/0.70a/eMule.eMule.community.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: eMule.eMule.community +PackageVersion: 0.70a +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Protocols: +- ed2k +FileExtensions: +- emulecollection +ReleaseDate: 2023-08-26 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/irwir/eMule/releases/download/eMule_v0.70a-community/eMule0.70a-Installer.exe + InstallerSha256: BCA17E93DF10CA9519119618393E424BABC85861C751962F6AE39082589DDD2A + ProductCode: eMule +- Architecture: x64 + InstallerUrl: https://github.com/irwir/eMule/releases/download/eMule_v0.70a-community/eMule0.70a-Installer64.exe + InstallerSha256: 89A075F9E18E9E0C9F79ECF3798A1650E8D8A48128F027B62560FD7C57682222 + ProductCode: eMule +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/e/eMule/eMule/community/0.70a/eMule.eMule.community.locale.en-US.yaml b/manifests/e/eMule/eMule/community/0.70a/eMule.eMule.community.locale.en-US.yaml new file mode 100644 index 0000000000000..4ea585c47946a --- /dev/null +++ b/manifests/e/eMule/eMule/community/0.70a/eMule.eMule.community.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: eMule.eMule.community +PackageVersion: 0.70a +PackageLocale: en-US +Publisher: eMule-Project.net +PublisherUrl: https://www.emule-project.com/ +PublisherSupportUrl: https://www.emule-project.com/home/perl/help.cgi +PrivacyUrl: https://www.emule-project.com/home/perl/general.cgi?rm=privacy +Author: fox88 +PackageName: eMule (community version) +PackageUrl: https://github.com/irwir/eMule +License: GPL-2.0 +LicenseUrl: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +Copyright: Copyright (C) 2002-2023 Merkur +# CopyrightUrl: +ShortDescription: A free and open-source peer-to-peer file sharing client +Description: eMule is a free and open-source peer-to-peer file sharing client, allowing you to connect to millions of users to download and share files with them. By using the ED2K and Kademlia Network it supports semi-centralized as well as decentralized searches and operations. All of it free and without any adware or advertising. +# Moniker: +Tags: +- download +- ed2k +- kad +- p2p +- sharing +- upload +ReleaseNotes: |- + Using I/O completion ports for disk operations. Improved handling of UNC paths. Upload SpeedSense is 'not recommended'. Minor GUI enhancements, bug fixes, code refactoring. Updated libraries. Using Visual Studio 2022. + This highest supported version of MediaInfo.dll is 23.10 (Windows XP - only 21.03). +ReleaseNotesUrl: https://github.com/irwir/eMule/releases/tag/eMule_v0.70a-community +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/e/eMule/eMule/community/0.70a/eMule.eMule.community.locale.zh-CN.yaml b/manifests/e/eMule/eMule/community/0.70a/eMule.eMule.community.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5bf435aaa414a --- /dev/null +++ b/manifests/e/eMule/eMule/community/0.70a/eMule.eMule.community.locale.zh-CN.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: eMule.eMule.community +PackageVersion: 0.70a +PackageLocale: zh-CN +Publisher: eMule-Project.net +PublisherUrl: https://www.emule-project.com/ +PublisherSupportUrl: https://www.emule-project.com/home/perl/help.cgi?l=42 +PrivacyUrl: https://www.emule-project.com/home/perl/general.cgi?l=42&rm=privacy +Author: fox88 +PackageName: eMule(社区版) +PackageUrl: https://github.com/irwir/eMule +License: GPL-2.0 +LicenseUrl: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +Copyright: Copyright (C) 2002-2023 Merkur +# CopyrightUrl: +ShortDescription: 免费开源的点对点文件共享客户端 +Description: eMule 是一款免费开源的点对点文件共享客户端,让您连接到数百万用户并与他们下载和共享文件。支持通过 ED2K 和 Kademlia 网络进行半中心化和去中心化的搜索和操作。所有这些都是免费的,没有任何广告或广告软件。 +# Moniker: +Tags: +- ed2k +- kad +- p2p +- 上传 +- 下载 +- 共享 +- 分享 +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/irwir/eMule/releases/tag/eMule_v0.70a-community +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/e/eMule/eMule/community/0.70a/eMule.eMule.community.yaml b/manifests/e/eMule/eMule/community/0.70a/eMule.eMule.community.yaml new file mode 100644 index 0000000000000..1f500a1342f11 --- /dev/null +++ b/manifests/e/eMule/eMule/community/0.70a/eMule.eMule.community.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: eMule.eMule.community +PackageVersion: 0.70a +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/e/errata-ai/Vale/3.0.7/errata-ai.Vale.installer.yaml b/manifests/e/errata-ai/Vale/3.0.7/errata-ai.Vale.installer.yaml new file mode 100644 index 0000000000000..ae5ea44b397ab --- /dev/null +++ b/manifests/e/errata-ai/Vale/3.0.7/errata-ai.Vale.installer.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: errata-ai.Vale +PackageVersion: 3.0.7 +InstallerLocale: en-US +InstallerType: zip +Installers: +- Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: vale.exe + PortableCommandAlias: vale + InstallerUrl: https://github.com/errata-ai/vale/releases/download/v3.0.7/vale_3.0.7_Windows_386.zip + InstallerSha256: 9CED459BE9C365CE8B2676A67BC58A53D550690ED3F59E6E0A7EA4DEC52EE7C3 +- Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: vale.exe + PortableCommandAlias: vale + InstallerUrl: https://github.com/errata-ai/vale/releases/download/v3.0.7/vale_3.0.7_Windows_64-bit.zip + InstallerSha256: AED0B6C8A3454713ACD99B19DFAF0D04621A9A3215F7B134B0387EEDB6EAA010 +- Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: vale.exe + PortableCommandAlias: vale + InstallerUrl: https://github.com/errata-ai/vale/releases/download/v3.0.7/vale_3.0.7_Windows_arm64.zip + InstallerSha256: 48F306272E88A3434E607FE33B014045CC3DD3E460991A42B9C5B9E25E2025F4 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/e/errata-ai/Vale/3.0.7/errata-ai.Vale.locale.en-US.yaml b/manifests/e/errata-ai/Vale/3.0.7/errata-ai.Vale.locale.en-US.yaml new file mode 100644 index 0000000000000..dc3c5c78b7246 --- /dev/null +++ b/manifests/e/errata-ai/Vale/3.0.7/errata-ai.Vale.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: errata-ai.Vale +PackageVersion: 3.0.7 +PackageLocale: en-US +Publisher: errata.ai +PublisherUrl: https://vale.sh/ +PublisherSupportUrl: https://github.com/errata-ai/vale/issues +PackageName: Vale +PackageUrl: https://vale.sh/ +License: MIT +LicenseUrl: https://github.com/errata-ai/vale/blob/v2/LICENSE +Copyright: Copyright (c) 2016 Joseph Kato +CopyrightUrl: https://github.com/errata-ai/vale/blob/v2/LICENSE +ShortDescription: A syntax-aware linter for prose built with speed and extensibility in mind. +Tags: +- linter +- linting +- nlp +- vale +Documentations: +- DocumentUrl: https://vale.sh/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/e/errata-ai/Vale/3.0.7/errata-ai.Vale.yaml b/manifests/e/errata-ai/Vale/3.0.7/errata-ai.Vale.yaml new file mode 100644 index 0000000000000..fd6e98eea47da --- /dev/null +++ b/manifests/e/errata-ai/Vale/3.0.7/errata-ai.Vale.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: errata-ai.Vale +PackageVersion: 3.0.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/e/errata-ai/Vale/v3.0.7/errata-ai.Vale.installer.yaml b/manifests/e/errata-ai/Vale/v3.0.7/errata-ai.Vale.installer.yaml new file mode 100644 index 0000000000000..72e2380a2ef50 --- /dev/null +++ b/manifests/e/errata-ai/Vale/v3.0.7/errata-ai.Vale.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: errata-ai.Vale +PackageVersion: v3.0.7 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: vale.exe + PortableCommandAlias: vale +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/errata-ai/vale/releases/download/v3.0.7/vale_3.0.7_Windows_386.zip + InstallerSha256: 9CED459BE9C365CE8B2676A67BC58A53D550690ED3F59E6E0A7EA4DEC52EE7C3 +- Architecture: x64 + InstallerUrl: https://github.com/errata-ai/vale/releases/download/v3.0.7/vale_3.0.7_Windows_64-bit.zip + InstallerSha256: AED0B6C8A3454713ACD99B19DFAF0D04621A9A3215F7B134B0387EEDB6EAA010 +- Architecture: arm64 + InstallerUrl: https://github.com/errata-ai/vale/releases/download/v3.0.7/vale_3.0.7_Windows_arm64.zip + InstallerSha256: 48F306272E88A3434E607FE33B014045CC3DD3E460991A42B9C5B9E25E2025F4 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/e/errata-ai/Vale/v3.0.7/errata-ai.Vale.locale.en-US.yaml b/manifests/e/errata-ai/Vale/v3.0.7/errata-ai.Vale.locale.en-US.yaml new file mode 100644 index 0000000000000..cff9894dcc3da --- /dev/null +++ b/manifests/e/errata-ai/Vale/v3.0.7/errata-ai.Vale.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: errata-ai.Vale +PackageVersion: v3.0.7 +PackageLocale: en-US +Publisher: errata.ai +PublisherUrl: https://vale.sh/ +PublisherSupportUrl: https://github.com/errata-ai/vale/issues +PackageName: Vale +PackageUrl: https://vale.sh/ +License: MIT +LicenseUrl: https://github.com/errata-ai/vale/blob/HEAD/LICENSE +Copyright: Copyright (c) 2016 Joseph Kato +CopyrightUrl: https://github.com/errata-ai/vale/blob/v2/LICENSE +ShortDescription: A syntax-aware linter for prose built with speed and extensibility in mind. +Tags: +- linter +- linting +- nlp +- vale +ReleaseNotes: |- + Changelog + - d9d51196 refactor: "Location" -> "Default Location" + - 0f936aa1 chore: pterm requires Go v1.21 + - 28132f71 chore: upgrade pterm + - 27fa9a0a fix: handle sync with relative --config +ReleaseNotesUrl: https://github.com/errata-ai/vale/releases/tag/v3.0.7 +Documentations: +- DocumentLabel: null + DocumentUrl: https://vale.sh/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Beta/119.0.2151.12/Microsoft.Edge.Beta.yaml b/manifests/e/errata-ai/Vale/v3.0.7/errata-ai.Vale.yaml similarity index 62% rename from manifests/m/Microsoft/Edge/Beta/119.0.2151.12/Microsoft.Edge.Beta.yaml rename to manifests/e/errata-ai/Vale/v3.0.7/errata-ai.Vale.yaml index a2d50c1e4650d..082ecade889a2 100644 --- a/manifests/m/Microsoft/Edge/Beta/119.0.2151.12/Microsoft.Edge.Beta.yaml +++ b/manifests/e/errata-ai/Vale/v3.0.7/errata-ai.Vale.yaml @@ -1,7 +1,8 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 119.0.2151.12 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 - +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: errata-ai.Vale +PackageVersion: v3.0.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/e/evernote/evernote/10.74.1/evernote.evernote.installer.yaml b/manifests/e/evernote/evernote/10.74.1/evernote.evernote.installer.yaml new file mode 100644 index 0000000000000..af766f809cf65 --- /dev/null +++ b/manifests/e/evernote/evernote/10.74.1/evernote.evernote.installer.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: evernote.evernote +PackageVersion: 10.74.1 +Platform: +- Windows.Desktop +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://win.desktop.evernote.com/builds/Evernote-latest.exe + InstallerSha256: 741B1AF5FD088948DE05B0A6A8E6ABE009B10CA144DB2A4CA2A39EEBBACCF3B0 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://win.desktop.evernote.com/builds/Evernote-latest.exe + InstallerSha256: 741B1AF5FD088948DE05B0A6A8E6ABE009B10CA144DB2A4CA2A39EEBBACCF3B0 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/e/evernote/evernote/10.74.1/evernote.evernote.locale.en-US.yaml b/manifests/e/evernote/evernote/10.74.1/evernote.evernote.locale.en-US.yaml new file mode 100644 index 0000000000000..b45fe991ed53b --- /dev/null +++ b/manifests/e/evernote/evernote/10.74.1/evernote.evernote.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: evernote.evernote +PackageVersion: 10.74.1 +PackageLocale: en-US +Publisher: Evernote Corporation +PublisherUrl: https://www.evernote.com +PublisherSupportUrl: https://help.evernote.com/hc +PrivacyUrl: https://evernote.com/privacy +Author: Evernote Corporation +PackageName: Evernote +PackageUrl: https://www.evernote.com +License: Proprietary +LicenseUrl: https://evernote.com/legal/terms-of-service +Copyright: Copyright (c) 2022 Evernote Corporation +CopyrightUrl: https://evernote.com/legal/terms-of-service +ShortDescription: A cross-platform, freemium app designed for note taking, organizing, and archiving. +Description: |- + Evernote helps you focus on what matters most and have access to your information when you need it. + Input typed notes or scan handwritten notes. + Add to-do’s, photos, images, web pages, or audio ... and it’s all instantly searchable. + Organize notes any way you want and share with anyone. + And Evernote syncs across your devices so your information is always with you, everywhere you go. +Moniker: evernote +Tags: +- cloud +- note-taking +- notes +- online +- productivity +- to-do +PurchaseUrl: https://evernote.com/compare-plans +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/e/evernote/evernote/10.74.1/evernote.evernote.yaml b/manifests/e/evernote/evernote/10.74.1/evernote.evernote.yaml new file mode 100644 index 0000000000000..f31c251e77b3c --- /dev/null +++ b/manifests/e/evernote/evernote/10.74.1/evernote.evernote.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: evernote.evernote +PackageVersion: 10.74.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/e/eza-community/eza/0.18.0/eza-community.eza.installer.yaml b/manifests/e/eza-community/eza/0.18.0/eza-community.eza.installer.yaml new file mode 100644 index 0000000000000..abd899cf6d6f8 --- /dev/null +++ b/manifests/e/eza-community/eza/0.18.0/eza-community.eza.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: eza-community.eza +PackageVersion: 0.18.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: eza.exe +UpgradeBehavior: install +ReleaseDate: 2024-02-01 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/eza-community/eza/releases/download/v0.18.0/eza.exe_x86_64-pc-windows-gnu.zip + InstallerSha256: DD43A42D73BD1B1C0DE6AC3BDDD74FA8AE1CB8418CDC3ECCBB03BD75B662F262 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/e/eza-community/eza/0.18.0/eza-community.eza.locale.en-US.yaml b/manifests/e/eza-community/eza/0.18.0/eza-community.eza.locale.en-US.yaml new file mode 100644 index 0000000000000..7889cf21912c0 --- /dev/null +++ b/manifests/e/eza-community/eza/0.18.0/eza-community.eza.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: eza-community.eza +PackageVersion: 0.18.0 +PackageLocale: en-US +Publisher: eza community +PublisherUrl: https://eza.rocks +PublisherSupportUrl: https://github.com/eza-community/eza/issues +PackageName: eza +PackageUrl: https://github.com/eza-community/eza +License: MIT +LicenseUrl: https://github.com/eza-community/eza/blob/main/LICENCE +ShortDescription: A modern, maintained replacement for ls, built on exa. +Description: "eza is a modern, maintained replacement for the venerable file-listing command-line program ls that ships with Unix and Linux operating systems, giving it more features and better defaults.\nIt uses colours to distinguish file types and metadata.\nIt knows about symlinks, extended attributes, and Git.\nAnd it\0s small, fast, and just one single binary." +ReleaseNotes: |- + Features + - [breaking] Add --classify=always,auto,never + Miscellaneous Tasks + - Remove rustfmt config file that has a nightly only option in favor of rustfmt skip directive which is already in place + - Fix small typo in pull request template + - Release eza v0.18.0 + Refactor + - Change cast to coertion, remove rustfmt skip and clippy lint ignore directives + Testing + - Regenerate classification related tests + Build + - Change flake inputs +ReleaseNotesUrl: https://github.com/eza-community/eza/releases/tag/v0.18.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/e/eza-community/eza/0.18.0/eza-community.eza.yaml b/manifests/e/eza-community/eza/0.18.0/eza-community.eza.yaml new file mode 100644 index 0000000000000..45ef1ba4bc2da --- /dev/null +++ b/manifests/e/eza-community/eza/0.18.0/eza-community.eza.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: eza-community.eza +PackageVersion: 0.18.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/f/FireDaemon/OpenSSL/3.2.1/FireDaemon.OpenSSL.installer.yaml b/manifests/f/FireDaemon/OpenSSL/3.2.1/FireDaemon.OpenSSL.installer.yaml new file mode 100644 index 0000000000000..406e590f9da6d --- /dev/null +++ b/manifests/f/FireDaemon/OpenSSL/3.2.1/FireDaemon.OpenSSL.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: FireDaemon.OpenSSL +PackageVersion: 3.2.1 +InstallerType: exe +Scope: machine +InstallModes: +- silent +InstallerSwitches: + Silent: /exenoui /qn /norestart REBOOT=ReallySuppress + SilentWithProgress: /exenoui /qb /norestart REBOOT=ReallySuppress + Custom: /norestart REBOOT=ReallySuppress +ProductCode: '{BCAE1135-D6FD-40E8-AE2D-3774ED3F2A20}' +Installers: +- Architecture: x64 + InstallerUrl: https://download.firedaemon.com/FireDaemon-OpenSSL/FireDaemon-OpenSSL-x64-3.2.1.exe + InstallerSha256: 0B2DD065B10CC69F23E313C02C9DF07A8EAB25E773C16C8B70FAB9CC22DE7152 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/f/FireDaemon/OpenSSL/3.2.1/FireDaemon.OpenSSL.locale.en-US.yaml b/manifests/f/FireDaemon/OpenSSL/3.2.1/FireDaemon.OpenSSL.locale.en-US.yaml new file mode 100644 index 0000000000000..a742be39beaa6 --- /dev/null +++ b/manifests/f/FireDaemon/OpenSSL/3.2.1/FireDaemon.OpenSSL.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: FireDaemon.OpenSSL +PackageVersion: 3.2.1 +PackageLocale: en-US +Publisher: FireDaemon Technologies Limited +PublisherUrl: https://www.firedaemon.com/ +PublisherSupportUrl: https://www.firedaemon.com/support +PrivacyUrl: https://www.firedaemon.com/policies +Author: FireDaemon Technologies Limited +PackageName: FireDaemon OpenSSL 3 +PackageUrl: https://www.firedaemon.com/firedaemon-openssl +License: Apache License v2 +LicenseUrl: https://www.openssl.org/source/license.html +Copyright: Copyright (c) 1999-2024 FireDaemon Technologies Limited +ShortDescription: FireDaemon OpenSSL 3 Installer +Description: OpenSSL is a popular open-source software library that provides a robust, full-featured set of cryptographic functions and tools to secure communications over computer networks. It implements the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols, which are widely used to encrypt data transmissions between web servers and clients, such as web browsers. OpenSSL provides a wide range of cryptographic functions, including symmetric encryption, public-key encryption, message digest and hash functions, digital signatures, and random number generation. It supports a large number of cryptographic algorithms, such as AES, RSA, SHA, and many others. In addition to cryptographic functions, OpenSSL also provides utilities for generating and managing digital certificates and keys, creating and verifying digital signatures, and performing SSL/TLS handshake and negotiation. +Tags: +- openssl +- ssl +- tls +- cryptograpy +Documentations: +- DocumentLabel: OpenSSL 3.2, 3.1, 3.0, & 1.1.1 Binary Distributions for Microsoft Windows + DocumentUrl: https://kb.firedaemon.com/support/solutions/articles/4000121705 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/f/FireDaemon/OpenSSL/3.2.1/FireDaemon.OpenSSL.yaml b/manifests/f/FireDaemon/OpenSSL/3.2.1/FireDaemon.OpenSSL.yaml new file mode 100644 index 0000000000000..a4722ad1d8c2f --- /dev/null +++ b/manifests/f/FireDaemon/OpenSSL/3.2.1/FireDaemon.OpenSSL.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: FireDaemon.OpenSSL +PackageVersion: 3.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/f/Fly-io/flyctl/0.1.147/Fly-io.flyctl.installer.yaml b/manifests/f/Fly-io/flyctl/0.1.147/Fly-io.flyctl.installer.yaml new file mode 100644 index 0000000000000..216c41aa36cb7 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.1.147/Fly-io.flyctl.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.1.147 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: flyctl.exe + PortableCommandAlias: flyctl +ReleaseDate: 2024-02-01 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.1.147/flyctl_0.1.147_Windows_x86_64.zip + InstallerSha256: 67747A40A7EB8D83C44E787AE65355A1C9270444159E8B21C1038B87AB43B2B9 +- Architecture: arm64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.1.147/flyctl_0.1.147_Windows_arm64.zip + InstallerSha256: 82E0FDF7C373F0FB339014964AC0D0AEB484EFC42DDE2C70043D4E852117DDC0 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/f/Fly-io/flyctl/0.1.147/Fly-io.flyctl.locale.en-US.yaml b/manifests/f/Fly-io/flyctl/0.1.147/Fly-io.flyctl.locale.en-US.yaml new file mode 100644 index 0000000000000..188a0140bb730 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.1.147/Fly-io.flyctl.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.1.147 +PackageLocale: en-US +Publisher: Fly.io +PublisherUrl: https://fly.io/ +PublisherSupportUrl: https://community.fly.io/ +PrivacyUrl: https://fly.io/legal/privacy-policy +PackageName: flyctl +PackageUrl: https://github.com/superfly/flyctl +License: Apache-2.0 +LicenseUrl: https://github.com/superfly/flyctl/blob/HEAD/LICENSE +ShortDescription: Command line tools for fly.io services +Tags: +- cli +- fly +- heroku +ReleaseNotes: |- + 4c5c97cd Add new Tigris bucket options (#3213) + b71f982c Cross-region volume fork (#3192) + ba9886a1 Simplify the machine restart policy (#3215) + b99f2103 Use stringer instead of maintaining the switch statement (#3200) + 8c83600f Bump go-toml to upstream version instead of fork (#3212) +ReleaseNotesUrl: https://github.com/superfly/flyctl/releases/tag/v0.1.147 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/f/Fly-io/flyctl/0.1.147/Fly-io.flyctl.yaml b/manifests/f/Fly-io/flyctl/0.1.147/Fly-io.flyctl.yaml new file mode 100644 index 0000000000000..c604972f430f5 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.1.147/Fly-io.flyctl.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.1.147 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/f/Fort/Firewall/3.10.7/Fort.Firewall.installer.yaml b/manifests/f/Fort/Firewall/3.11.0/Fort.Firewall.installer.yaml similarity index 59% rename from manifests/f/Fort/Firewall/3.10.7/Fort.Firewall.installer.yaml rename to manifests/f/Fort/Firewall/3.11.0/Fort.Firewall.installer.yaml index 2ee934174e9d1..04be3a6128e33 100644 --- a/manifests/f/Fort/Firewall/3.10.7/Fort.Firewall.installer.yaml +++ b/manifests/f/Fort/Firewall/3.11.0/Fort.Firewall.installer.yaml @@ -1,27 +1,27 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Fort.Firewall -PackageVersion: 3.10.7 +PackageVersion: 3.11.0 InstallerType: inno -ReleaseDate: 2024-01-11 +ReleaseDate: 2024-01-31 Installers: - Architecture: x64 - InstallerUrl: https://github.com/tnodir/fort/releases/download/v3.10.7/FortFirewall-3.10.7-windows10-x86_64.exe - InstallerSha256: 8e87694f2caba35988e3404cf9ca09867d2019552098b40380cfff35b0f91c3d + InstallerUrl: https://github.com/tnodir/fort/releases/download/v3.11.0/FortFirewall-3.11.0-windows10-x86_64.exe + InstallerSha256: 9411593f75180bea780677881e0c633f75f30aa9c9a9f9575db16181ff2b94fa Dependencies: PackageDependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x64 - Architecture: x86 - InstallerUrl: https://github.com/tnodir/fort/releases/download/v3.10.7/FortFirewall-3.10.7-windows-x86.exe - InstallerSha256: 6b6d51dc79eb180a57b5c1fb3581eb3c83621312a5fcdbbb14a6f5fc9958aa85 + InstallerUrl: https://github.com/tnodir/fort/releases/download/v3.11.0/FortFirewall-3.11.0-windows-x86.exe + InstallerSha256: 8c0f86cfaf23e0ac0eafa8b3a459e94c1c5f780795285bb6534dff7fc569830c Dependencies: PackageDependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x86 - Architecture: arm64 - InstallerUrl: https://github.com/tnodir/fort/releases/download/v3.10.7/FortFirewall-3.10.7-windows10-arm64.exe - InstallerSha256: 1c6521fe2f6161bdf8025eadafa50ec4d932b63f49a9855cbf649df6d8b65808 + InstallerUrl: https://github.com/tnodir/fort/releases/download/v3.11.0/FortFirewall-3.11.0-windows10-arm64.exe + InstallerSha256: 3aa86dbb4e4df20a475f558cbb7391105d726596988283ffaf47ee55a2549694 Dependencies: PackageDependencies: - PackageIdentifier: Microsoft.VCRedist.2022.arm64 ManifestType: installer -ManifestVersion: 1.5.0 +ManifestVersion: 1.5.0 \ No newline at end of file diff --git a/manifests/f/Fort/Firewall/3.10.7/Fort.Firewall.locale.en-US.yaml b/manifests/f/Fort/Firewall/3.11.0/Fort.Firewall.locale.en-US.yaml similarity index 67% rename from manifests/f/Fort/Firewall/3.10.7/Fort.Firewall.locale.en-US.yaml rename to manifests/f/Fort/Firewall/3.11.0/Fort.Firewall.locale.en-US.yaml index 2d410e4b6b42d..dbedfce0f16bb 100644 --- a/manifests/f/Fort/Firewall/3.10.7/Fort.Firewall.locale.en-US.yaml +++ b/manifests/f/Fort/Firewall/3.11.0/Fort.Firewall.locale.en-US.yaml @@ -1,7 +1,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Fort.Firewall -PackageVersion: 3.10.7 +PackageVersion: 3.11.0 PackageLocale: en-US Publisher: Nodir Temirkhodjaev PublisherUrl: https://github.com/tnodir @@ -10,7 +10,7 @@ Author: Nodir Temirkhodjaev PackageName: Fort Firewall PackageUrl: https://github.com/tnodir/fort License: GPL-3.0 -LicenseUrl: https://github.com/tnodir/fort/blob/master/LICENSE.GPLv3 +LicenseUrl: https://github.com/tnodir/fort/blob/master/LICENSE Copyright: Copyright (c) Nodir Temirkhodjaev ShortDescription: Fort is an effective firewall designed for Windows 7 and later versions, offering both simplicity and robustness. Description: |- @@ -45,15 +45,18 @@ Tags: - speed-limit - traffic-quota ReleaseNotes: |- - - UI: Add QtBase translations. - - UI: Programs: Native separators for FileDialog paths. - - UI: Traffic Graph: Add "Hide on close" flag. - - UI: Tray Menu: Handle mouse release event only after pressed. - - UI: Bring window to top on activation. - - UI: Workaround to show initial dialog on WinPE. - - UI: Restart on profile drive's remount. - - Driver: Use "HKLM\Software\Fort Firewall\BootFilter" initial flag from registry. - - Set "NetworkProvider" group to services. -ReleaseNotesUrl: https://github.com/tnodir/fort/releases/tag/v3.10.7 + - UI: Show Program Alert Window. + - UI: Programs: Add ability to schedule Allow/Remove actions. + - UI: Programs: Show app names to remove. + - UI: Programs: Show app's icon in Edit dialog. + - UI: Options: Tray: Add "Show Programs Or Alert Window" action. + - UI: Options: AppGroups: Deprecate Text Edit Fields. + - UI: MyFort: About: Set "Check update" button's tooltip as Last Success date. + - UI: Create "FortFirewall.ini" on 1-st startup. + - UI: Update SQLite to v3.45.1 + + Attention: Please move Allow/Block Texts from App Groups to Wildcard Programs! + (They're read-only now and will be removed in v4.) +ReleaseNotesUrl: https://github.com/tnodir/fort/releases/tag/v3.11.0 ManifestType: defaultLocale -ManifestVersion: 1.5.0 +ManifestVersion: 1.5.0 \ No newline at end of file diff --git a/manifests/f/Fort/Firewall/3.10.7/Fort.Firewall.yaml b/manifests/f/Fort/Firewall/3.11.0/Fort.Firewall.yaml similarity index 86% rename from manifests/f/Fort/Firewall/3.10.7/Fort.Firewall.yaml rename to manifests/f/Fort/Firewall/3.11.0/Fort.Firewall.yaml index 8008c24f0dd12..8c9c13f10c8b2 100644 --- a/manifests/f/Fort/Firewall/3.10.7/Fort.Firewall.yaml +++ b/manifests/f/Fort/Firewall/3.11.0/Fort.Firewall.yaml @@ -1,7 +1,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Fort.Firewall -PackageVersion: 3.10.7 +PackageVersion: 3.11.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.5.0 \ No newline at end of file diff --git a/manifests/f/f4exb/sdrangel/7.17.3/f4exb.sdrangel.installer.yaml b/manifests/f/f4exb/sdrangel/7.17.3/f4exb.sdrangel.installer.yaml new file mode 100644 index 0000000000000..789bfa7e8161f --- /dev/null +++ b/manifests/f/f4exb/sdrangel/7.17.3/f4exb.sdrangel.installer.yaml @@ -0,0 +1,13 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: f4exb.sdrangel +PackageVersion: 7.17.3 +InstallerType: nullsoft +ReleaseDate: 2024-01-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/f4exb/sdrangel/releases/download/v7.17.3/sdrangel-7.17.3-1-gd25944320-win64.exe + InstallerSha256: B4250C92BB4B341A9F51AEA16CC9C352EFD5DAB799CDD38F6AE7CF0DB4EFAE91 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/f/f4exb/sdrangel/7.17.3/f4exb.sdrangel.locale.en-US.yaml b/manifests/f/f4exb/sdrangel/7.17.3/f4exb.sdrangel.locale.en-US.yaml new file mode 100644 index 0000000000000..fc92d8ed649f8 --- /dev/null +++ b/manifests/f/f4exb/sdrangel/7.17.3/f4exb.sdrangel.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: f4exb.sdrangel +PackageVersion: 7.17.3 +PackageLocale: en-US +Publisher: f4exb +PublisherUrl: https://github.com/f4exb +PublisherSupportUrl: https://github.com/f4exb/sdrangel/issues +PackageName: SDRangel +PackageUrl: https://github.com/f4exb/sdrangel +License: GPL-3.0 +LicenseUrl: https://github.com/f4exb/sdrangel/blob/HEAD/LICENSE +ShortDescription: SDR Rx/Tx software for Airspy, Airspy HF+, BladeRF, HackRF, LimeSDR, PlutoSDR, RTL-SDR, SDRplay RSP1 and FunCube +Tags: +- airspy +- airspyhf +- bladerf +- d-star +- dmr +- dpmr +- funcube-dongle +- hackrf +- limesdr +- plutosdr +- receiver +- rtl-sdr +- sdr +- sdrplay +- transmitter +- ysf +ReleaseNotes: "Easy title but I wanted to change from the classical \"Maintenance release\" so...- Map updates: Allow selection of which device to tune to frequency. PR #1911. From @srcejon \n- Map updates: Support tuning of multiple frequencies per map item. Update maplibre to maplibregl. PR #1911. From @srcejon \n- Use common code for creating and processing device and channel Ids. PR #1911. From @srcejon \n- Prevent crash that can occur if preset type is unknown. PR #1911. From @srcejon \n- Add support for setting center frequency on Tx devices. PR #1911. From @srcejon \n- Allow replay time offset to be set by ctrl+left click in waterfall. PR #1914. From @srcejon \n- Add replay support to Lime Input. PR #1914. From @srcejon \n- Remove space in CSV header. PR #1916. From @srcejon \n- SDRPlayV3 on Mac: Update library path so is works with API 3.12.1. PR #1916. From @srcejon \n- Fixed AudioNetSink stereo handling\n- SSB demod: added FIR LP filter after AGC to smooth out sharp peaks\n- Removed useless AGC clamping\n- Fixed some AGC issues\n- SSB demod: better algorithm for AGC limitation. Fixes #1918\n- AM demod: extend squelch limit to -120 dB\n- Start file browser in directory of last file selected. PR #1926. From @srcejon \n- Fix #1928. Add null-terminator between strings. PR #1929. From @srcejon \n- Frequency Scanner: allow scanning channels of a MIMO device\n- Frequency scanner: set device frequency for both Rx and MIMO devices\n- Frequency Scanner: GUI: give more space to channel power display\n- Frequency Scanner: handle change of I/Q stream in tracked channels (MIMO)\n- AudioCATSISO: adapt to newer versions of Hamlib. Fixes #1919. \n- Mac O/S: Disable build of LAME frontend PR #1935. From @tomtastic \n- Use separate date/time fields and prefix address with leading 0. Fixes #1936. PR #1937. From @srcejon \n- Star Tracker: Handle negative flux values in .srd file. PR #1940. From @srcejon \nFor more details on artifacts and their contents please read the quick start in the Wiki.\nNote that Ubuntu .deb package is for 22.04. Please note that SSE 4.2 is required.Because of this issue boostorg/boost#842 it was not possible to produce Windows artifacts. A version with a build fix is uploaded instead" +ReleaseNotesUrl: https://github.com/f4exb/sdrangel/releases/tag/v7.17.3 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/f/f4exb/sdrangel/7.17.3/f4exb.sdrangel.yaml b/manifests/f/f4exb/sdrangel/7.17.3/f4exb.sdrangel.yaml new file mode 100644 index 0000000000000..daf29887c4017 --- /dev/null +++ b/manifests/f/f4exb/sdrangel/7.17.3/f4exb.sdrangel.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: f4exb.sdrangel +PackageVersion: 7.17.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/f/foldynl/QLog/0.31.0/foldynl.QLog.installer.yaml b/manifests/f/foldynl/QLog/0.31.0/foldynl.QLog.installer.yaml new file mode 100644 index 0000000000000..bb1a8e9a0834b --- /dev/null +++ b/manifests/f/foldynl/QLog/0.31.0/foldynl.QLog.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: foldynl.QLog +PackageVersion: 0.31.0 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: in -c + SilentWithProgress: in -c + InstallLocation: -t +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2024-01-05 +AppsAndFeaturesEntries: +- Publisher: OK1MLG + DisplayVersion: 0.31.0 + ProductCode: '{ff960799-b4b6-4bc6-8b55-0576e9030a78}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/foldynl/QLog/releases/download/v0.31.0/qlog-installer0.31.0.exe + InstallerSha256: AA1EEBE5CB3E8178CE818D5F00C5EC9DAD2529E2218751ABF8F92FCF96CDB9F8 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/f/foldynl/QLog/0.31.0/foldynl.QLog.locale.en-US.yaml b/manifests/f/foldynl/QLog/0.31.0/foldynl.QLog.locale.en-US.yaml new file mode 100644 index 0000000000000..1b6eefe6692db --- /dev/null +++ b/manifests/f/foldynl/QLog/0.31.0/foldynl.QLog.locale.en-US.yaml @@ -0,0 +1,74 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: foldynl.QLog +PackageVersion: 0.31.0 +PackageLocale: en-US +Publisher: foldynl +PublisherUrl: https://github.com/foldynl +PublisherSupportUrl: https://github.com/foldynl/QLog/issues +Author: Ladislav +PackageName: QLog +PackageUrl: https://github.com/foldynl/QLog +License: GPL-3.0 +LicenseUrl: https://github.com/foldynl/QLog/blob/HEAD/LICENSE +Copyright: Copyright (C) 2020 Thomas Gatzweiler +CopyrightUrl: https://github.com/foldynl/QLog/blob/master/README.md#license +ShortDescription: Amateur radio logbook software. +Description: QLog is an Amateur Radio logging application for Linux, Windows and Mac OS. It is based on the Qt framework and uses SQLite as database backend. +Tags: +- amateur-radio +- amateurradio +- fldigi +- hamqth +- hamradio +- logger +- lotw +- open-source +- opensource +- openstreetmap +- qsl +- qso +- qt5 +- qt6 +- radioamateur +- sqlite +ReleaseNotes: |- + - [NEW] - DXC - Improved Mode recognition + - [NEW] - DXC - Switch Rig mode based on DXC Spot Mode (issue #217) + - [NEW] - DXC - Added Spot Country Column (issue #273) + - [NEW] - DXC - Added Menu for server management + - [NEW] - DXC - Added Auto-connect to server + - [NEW] - DXC - Added Keep QSOs Context Menu + - [NEW] - DXC - Added Clear QSO Context Menu + - [NEW] - DXC - Added support for SH/DX response parsing + - [NEW] - DXC - Added support for username, password for connection + - [CHANGED] - DXC - Commands Combo changed to function button with selectable function + - [CHANGED] - DXC - DX Spot is prepared via DXC Command Line, Remark dialog was removed + - [NEW] - Online Map - IBP station double-click tunes freq and switch Rig mode + - [NEW] - Main Window - Current profile name is shown (issue #282) + - [NEW] - Import - Details can be saved to file (issue #284) + - [NEW] - Added Simplified Chinese translation (PR #285 thank @BG7JAF) + - [NEW] - New Contact - Enter saves QSO if QSO time is running (issue #293 - partial) + - [NEW] - New Contact - Callsign Enter event saves QSO if no Callbook is active - Pileup Mode (issue #293) + - [NEW] - RIG Widget - RIT/XIT are displayed with user-friendly units (issue #294) + - [CHANGED] - SAT List download - Shortened download period for SAT list from 30 to 7 days + - Fixed ADI Import is too slow (issue #270) + - Improved Import/Export Performance + - Fixed Missing Satellite Mode SX (issue #291) + - Fixed QSO Detail - Issue when Sat-Name field was always disabled + - Fixed RPM build - Installed (but unpackaged) metainfo file issue + Windows Libraries: + Qt 6.4.2 + openssl 1.1.1w + hamlib 4.5.5 + qtkeychain 0.13.2Timezone DB: 2023d (UPDATED) (Binaries: + Windows: below + Fedora 38: below + Fedora 39: below + MacOS 12: below + Ubuntu 20.04, 22.04, 23.04 (Last), 23.10: via PPA (https://launchpad.net/~foldyna/+archive/ubuntu/qlog) + Flatpak package is available via Flathub. The package contains built-in Trusted QSL. +ReleaseNotesUrl: https://github.com/foldynl/QLog/releases/tag/v0.31.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Beta/117.0.2045.27/Microsoft.Edge.Beta.yaml b/manifests/f/foldynl/QLog/0.31.0/foldynl.QLog.yaml similarity index 63% rename from manifests/m/Microsoft/Edge/Beta/117.0.2045.27/Microsoft.Edge.Beta.yaml rename to manifests/f/foldynl/QLog/0.31.0/foldynl.QLog.yaml index d82e9a3b5d375..ee17b7cd835ab 100644 --- a/manifests/m/Microsoft/Edge/Beta/117.0.2045.27/Microsoft.Edge.Beta.yaml +++ b/manifests/f/foldynl/QLog/0.31.0/foldynl.QLog.yaml @@ -1,7 +1,8 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 117.0.2045.27 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 - +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: foldynl.QLog +PackageVersion: 0.31.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/g/GNU/Nano/2.7.5/GNU.Nano.installer.yaml b/manifests/g/GNU/Nano/2.7.5/GNU.Nano.installer.yaml index df9530c8e46bf..e3272ec3d7b3e 100644 --- a/manifests/g/GNU/Nano/2.7.5/GNU.Nano.installer.yaml +++ b/manifests/g/GNU/Nano/2.7.5/GNU.Nano.installer.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.2.0 $debug=NVS1.CRLF.7-2-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: GNU.Nano PackageVersion: 2.7.5 @@ -8,7 +8,7 @@ Commands: - nano Installers: - Architecture: neutral - InstallerUrl: https://www.nano-editor.org/dist/win32-support/nano-git-0d9a7347243.exe + InstallerUrl: https://www.nano-editor.org/dist/win32-support/nano-v2.7.5-55-g0d9a73472439.exe InstallerSha256: 41A90ED2072CC0B1DEBFCEECD3AB4273E06C5FFA7E5E06BDBC54965EAA27FB89 ManifestType: installer -ManifestVersion: 1.2.0 +ManifestVersion: 1.5.0 diff --git a/manifests/g/GNU/Nano/2.7.5/GNU.Nano.locale.en-US.yaml b/manifests/g/GNU/Nano/2.7.5/GNU.Nano.locale.en-US.yaml index e7abfbb685059..ab3c4fd89a4c7 100644 --- a/manifests/g/GNU/Nano/2.7.5/GNU.Nano.locale.en-US.yaml +++ b/manifests/g/GNU/Nano/2.7.5/GNU.Nano.locale.en-US.yaml @@ -1,12 +1,12 @@ -# Created with YamlCreate.ps1 v2.2.0 $debug=NVS1.CRLF.7-2-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: GNU.Nano PackageVersion: 2.7.5 PackageLocale: en-US Publisher: GNU Project PublisherUrl: https://www.gnu.org/ -PublisherSupportUrl: https://gnu.support/ +PublisherSupportUrl: https://savannah.gnu.org/bugs/?group=nano # PrivacyUrl: # Author: PackageName: GNU Nano @@ -24,11 +24,10 @@ Tags: - editor - text - text-editor -# Agreements: # ReleaseNotes: # ReleaseNotesUrl: # PurchaseUrl: # InstallationNotes: # Documentations: ManifestType: defaultLocale -ManifestVersion: 1.2.0 +ManifestVersion: 1.5.0 diff --git a/manifests/g/GNU/Nano/2.7.5/GNU.Nano.yaml b/manifests/g/GNU/Nano/2.7.5/GNU.Nano.yaml index 1af20e2ee8c9d..2ba665423f70a 100644 --- a/manifests/g/GNU/Nano/2.7.5/GNU.Nano.yaml +++ b/manifests/g/GNU/Nano/2.7.5/GNU.Nano.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.2.0 $debug=NVS1.CRLF.7-2-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: GNU.Nano PackageVersion: 2.7.5 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.2.0 +ManifestVersion: 1.5.0 diff --git a/manifests/g/GNU/Wget2/2.1.0/GNU.Wget2.installer.yaml b/manifests/g/GNU/Wget2/2.1.0/GNU.Wget2.installer.yaml new file mode 100644 index 0000000000000..3502efc5d96ae --- /dev/null +++ b/manifests/g/GNU/Wget2/2.1.0/GNU.Wget2.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: GNU.Wget2 +PackageVersion: 2.1.0 +InstallerType: portable +Commands: +- wget2 +Protocols: +- ftp +- http +- https +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/rockdaboot/wget2/releases/download/v2.1.0/wget2.exe + InstallerSha256: AAD2B280C0F54741A1E5A4B7BE99FC48CF39A7FC21827D5EC69860B9E02E9F28 +ManifestType: installer +ManifestVersion: 1.5.0 +ReleaseDate: 2023-08-31 diff --git a/manifests/g/GNU/Wget2/2.1.0/GNU.Wget2.locale.en-US.yaml b/manifests/g/GNU/Wget2/2.1.0/GNU.Wget2.locale.en-US.yaml new file mode 100644 index 0000000000000..2e118d43934e8 --- /dev/null +++ b/manifests/g/GNU/Wget2/2.1.0/GNU.Wget2.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: GNU.Wget2 +PackageVersion: 2.1.0 +PackageLocale: en-US +Publisher: GNU +PublisherUrl: https://www.gnu.org/ +PackageName: Wget2 +PackageUrl: https://github.com/rockdaboot/wget2 +License: GPL-3.0-or-later +LicenseUrl: https://raw.githubusercontent.com/rockdaboot/wget2/master/COPYING +ShortDescription: GNU Wget2 is the successor of GNU Wget, a file and recursive website downloader. +Moniker: wget2 +Tags: +- cross-platform +- downloader +- file-downlaoder +- media-downloader +- open-source +- wget +ReleaseNotesUrl: https://github.com/rockdaboot/wget2/releases/tag/v2.1.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/g/GNU/Wget2/2.1.0/GNU.Wget2.yaml b/manifests/g/GNU/Wget2/2.1.0/GNU.Wget2.yaml new file mode 100644 index 0000000000000..7db31d6371ba8 --- /dev/null +++ b/manifests/g/GNU/Wget2/2.1.0/GNU.Wget2.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: GNU.Wget2 +PackageVersion: 2.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/g/GitHub/cli/2.43.0/GitHub.cli.installer.yaml b/manifests/g/GitHub/cli/2.43.0/GitHub.cli.installer.yaml new file mode 100644 index 0000000000000..613c54b606b86 --- /dev/null +++ b/manifests/g/GitHub/cli/2.43.0/GitHub.cli.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: GitHub.cli +PackageVersion: 2.43.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- gh +ProductCode: '{429A400F-8DC3-4F7A-AADC-C2FDC8FE18E1}' +AppsAndFeaturesEntries: +- UpgradeCode: '{8CFB9531-B959-4E1B-AA2E-4AF0FFCC4AF4}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/cli/cli/releases/download/v2.43.0/gh_2.43.0_windows_amd64.msi + InstallerSha256: 6F0557B18956652AE96A7DFA4F7261AC482DAF10678F14474CC920CE7541CFE2 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/g/GitHub/cli/2.43.0/GitHub.cli.locale.en-US.yaml b/manifests/g/GitHub/cli/2.43.0/GitHub.cli.locale.en-US.yaml new file mode 100644 index 0000000000000..43d33e6b83dd2 --- /dev/null +++ b/manifests/g/GitHub/cli/2.43.0/GitHub.cli.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: GitHub.cli +PackageVersion: 2.43.0 +PackageLocale: en-US +Publisher: GitHub, Inc. +PublisherUrl: https://github.com +PublisherSupportUrl: https://help.github.com/en +PrivacyUrl: https://help.github.com/en/articles/github-privacy-statement +Author: GitHub, Inc. +PackageName: GitHub CLI +PackageUrl: https://github.com/cli/cli +License: MIT License +LicenseUrl: https://github.com/cli/cli/blob/HEAD/LICENSE +Copyright: Copyright (c) 2019 GitHub Inc. +CopyrightUrl: https://github.com/cli/cli/blob/trunk/LICENSE +ShortDescription: GitHub's official command-line tool. +Description: |- + gh is GitHub on the command line. + It brings pull requests, issues, and other GitHub concepts to the terminal next to where you are already working with git and your code. +Moniker: gh +Tags: +- cli +- command-line +- foss +- open-source +- tool +- utility +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/g/GitHub/cli/2.43.0/GitHub.cli.yaml b/manifests/g/GitHub/cli/2.43.0/GitHub.cli.yaml new file mode 100644 index 0000000000000..e25f0c6b4350c --- /dev/null +++ b/manifests/g/GitHub/cli/2.43.0/GitHub.cli.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: GitHub.cli +PackageVersion: 2.43.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/g/GitHub/cli/2.43.1/GitHub.cli.installer.yaml b/manifests/g/GitHub/cli/2.43.1/GitHub.cli.installer.yaml new file mode 100644 index 0000000000000..ba64666df095d --- /dev/null +++ b/manifests/g/GitHub/cli/2.43.1/GitHub.cli.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: GitHub.cli +PackageVersion: 2.43.1 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- gh +ProductCode: '{B4750A25-EF73-43EA-A9B2-607919649773}' +AppsAndFeaturesEntries: +- UpgradeCode: '{8CFB9531-B959-4E1B-AA2E-4AF0FFCC4AF4}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/cli/cli/releases/download/v2.43.1/gh_2.43.1_windows_amd64.msi + InstallerSha256: 8D7B53401540FA4CF8E3EB6DA241F0C18FAFE168989B59C96C2EBCA4FFAADAF3 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/g/GitHub/cli/2.43.1/GitHub.cli.locale.en-US.yaml b/manifests/g/GitHub/cli/2.43.1/GitHub.cli.locale.en-US.yaml new file mode 100644 index 0000000000000..cf1f15930dbe8 --- /dev/null +++ b/manifests/g/GitHub/cli/2.43.1/GitHub.cli.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: GitHub.cli +PackageVersion: 2.43.1 +PackageLocale: en-US +Publisher: GitHub, Inc. +PublisherUrl: https://github.com +PublisherSupportUrl: https://help.github.com/en +PrivacyUrl: https://help.github.com/en/articles/github-privacy-statement +Author: GitHub, Inc. +PackageName: GitHub CLI +PackageUrl: https://github.com/cli/cli +License: MIT License +LicenseUrl: https://github.com/cli/cli/blob/HEAD/LICENSE +Copyright: Copyright (c) 2019 GitHub Inc. +CopyrightUrl: https://github.com/cli/cli/blob/trunk/LICENSE +ShortDescription: GitHub's official command-line tool. +Description: |- + gh is GitHub on the command line. + It brings pull requests, issues, and other GitHub concepts to the terminal next to where you are already working with git and your code. +Moniker: gh +Tags: +- cli +- command-line +- foss +- open-source +- tool +- utility +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/g/GitHub/cli/2.43.1/GitHub.cli.yaml b/manifests/g/GitHub/cli/2.43.1/GitHub.cli.yaml new file mode 100644 index 0000000000000..eeed865323f2b --- /dev/null +++ b/manifests/g/GitHub/cli/2.43.1/GitHub.cli.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: GitHub.cli +PackageVersion: 2.43.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/g/GiulioSorrentino/Backgrounds/2.0/GiulioSorrentino.Backgrounds.installer.yaml b/manifests/g/GiulioSorrentino/Backgrounds/2.0/GiulioSorrentino.Backgrounds.installer.yaml index 18716b74c3164..d331bba1fdebb 100644 --- a/manifests/g/GiulioSorrentino/Backgrounds/2.0/GiulioSorrentino.Backgrounds.installer.yaml +++ b/manifests/g/GiulioSorrentino/Backgrounds/2.0/GiulioSorrentino.Backgrounds.installer.yaml @@ -9,7 +9,7 @@ InstallerSwitches: SilentWithProgress: -o"C:\windows\web\wallpaper\numeronesoft-backgrounds" -y Installers: - Architecture: x64 - InstallerUrl: http://numeronesoft.ddns.net/numeronesoft-backgrounds-0.4.exe + InstallerUrl: http://numeronesoft.ddns.net:8080/numeronesoft-backgrounds-0.4.exe InstallerSha256: 818E7A0004DC40F12B362148C509F1748E7C1A53A17809BC07692EC7177664BE ManifestType: installer ManifestVersion: 1.5.0 diff --git a/manifests/g/GiulioSorrentino/Backgrounds/2.0/GiulioSorrentino.Backgrounds.locale.it-IT.yaml b/manifests/g/GiulioSorrentino/Backgrounds/2.0/GiulioSorrentino.Backgrounds.locale.it-IT.yaml index fc995c1d0c3c2..22585a2275646 100644 --- a/manifests/g/GiulioSorrentino/Backgrounds/2.0/GiulioSorrentino.Backgrounds.locale.it-IT.yaml +++ b/manifests/g/GiulioSorrentino/Backgrounds/2.0/GiulioSorrentino.Backgrounds.locale.it-IT.yaml @@ -8,7 +8,7 @@ Publisher: Giulio Sorrentino PublisherUrl: http://numerone.altervista.org Author: Giulio Sorrentino PackageName: numeronesoft backgrounds -PackageUrl: http://numeronesoft.ddns.net/numeronesoft-backgrounds.exe +PackageUrl: http://numeronesoft.ddns.net:8080/numeronesoft-backgrounds.exe License: ShareALike 4.0 International LicenseUrl: https://creativecommons.org/licenses/by-sa/4.0/legalcode Copyright: 2023 Giulio Sorrentino diff --git a/manifests/g/GiulioSorrentino/BackgroundsOtto/2.0/GiulioSorrentino.BackgroundsOtto.installer.yaml b/manifests/g/GiulioSorrentino/BackgroundsOtto/2.0/GiulioSorrentino.BackgroundsOtto.installer.yaml index d43c34880ba00..2105ddaad4ba8 100644 --- a/manifests/g/GiulioSorrentino/BackgroundsOtto/2.0/GiulioSorrentino.BackgroundsOtto.installer.yaml +++ b/manifests/g/GiulioSorrentino/BackgroundsOtto/2.0/GiulioSorrentino.BackgroundsOtto.installer.yaml @@ -9,7 +9,7 @@ InstallerSwitches: SilentWithProgress: -o"C:\windows\web\wallpaper\numeronesoft-backgrounds-otto" -y Installers: - Architecture: x64 - InstallerUrl: http://numeronesoft.ddns.net/numeronesoft-backgrounds-otto-2.0.exe + InstallerUrl: http://numeronesoft.ddns.net:8080/numeronesoft-backgrounds-otto-2.0.exe InstallerSha256: B0FBF360E0874ED53BDEBFD15A9225BDCE4164C2F3A598117412950CD705BD9A ManifestType: installer ManifestVersion: 1.5.0 diff --git a/manifests/g/GiulioSorrentino/BackgroundsOtto/2.0/GiulioSorrentino.BackgroundsOtto.locale.it-IT.yaml b/manifests/g/GiulioSorrentino/BackgroundsOtto/2.0/GiulioSorrentino.BackgroundsOtto.locale.it-IT.yaml index 36080434935fc..e7ee9123b59e6 100644 --- a/manifests/g/GiulioSorrentino/BackgroundsOtto/2.0/GiulioSorrentino.BackgroundsOtto.locale.it-IT.yaml +++ b/manifests/g/GiulioSorrentino/BackgroundsOtto/2.0/GiulioSorrentino.BackgroundsOtto.locale.it-IT.yaml @@ -8,7 +8,7 @@ Publisher: Giulio Sorrentino PublisherUrl: http://numerone.altervista.org Author: Giulio Sorrentino PackageName: numeronesoft backgrounds otto -PackageUrl: http://numeronesoft.ddns.net/numeronesoft-backgrounds-otto.exe +PackageUrl: http://numeronesoft.ddns.net:8080/numeronesoft-backgrounds-otto.exe License: ShareALike 4.0 International LicenseUrl: https://creativecommons.org/licenses/by-sa/4.0/legalcode Copyright: 2023 Giulio Sorrentino diff --git a/manifests/g/GiulioSorrentino/astroni/1.0/GiulioSorrentino.astroni.installer.yaml b/manifests/g/GiulioSorrentino/astroni/1.0/GiulioSorrentino.astroni.installer.yaml index cbcbbe471bc97..6440f1f068f25 100644 --- a/manifests/g/GiulioSorrentino/astroni/1.0/GiulioSorrentino.astroni.installer.yaml +++ b/manifests/g/GiulioSorrentino/astroni/1.0/GiulioSorrentino.astroni.installer.yaml @@ -9,7 +9,7 @@ InstallerSwitches: SilentWithProgress: -s1 Installers: - Architecture: x64 - InstallerUrl: http://numeronesoft.ddns.net//numeronesoft-backgrounds-otto-astroni.exe + InstallerUrl: http://numeronesoft.ddns.net:8080/numeronesoft-backgrounds-otto-astroni.exe InstallerSha256: A60F5E75C238D914BDB10D28A99CF333A59CA1EA05C1DEA78A6F43C3B861849D ManifestType: installer ManifestVersion: 1.4.0 diff --git a/manifests/g/GiulioSorrentino/astroni/1.0/GiulioSorrentino.astroni.locale.it-IT.yaml b/manifests/g/GiulioSorrentino/astroni/1.0/GiulioSorrentino.astroni.locale.it-IT.yaml index fc498dfa041df..2ab771099a58f 100644 --- a/manifests/g/GiulioSorrentino/astroni/1.0/GiulioSorrentino.astroni.locale.it-IT.yaml +++ b/manifests/g/GiulioSorrentino/astroni/1.0/GiulioSorrentino.astroni.locale.it-IT.yaml @@ -10,7 +10,7 @@ PublisherUrl: https://numerone.altervista.org # PrivacyUrl: Author: Giulio Sorrentino PackageName: numeronesoft background otto astroni -PackageUrl: http://numeronesoft.ddns.net//numeronesoft-backgrounds-otto-astroni.exe +PackageUrl: http://numeronesoft.ddns.net:8080/numeronesoft-backgrounds-otto-astroni.exe License: ShareALike 4.0 International LicenseUrl: https://creativecommons.org/licenses/by-sa/4.0/legalcode Copyright: 2023 Giulio Sorrentino diff --git a/manifests/g/GoXLR-on-Linux/GoXLR-Utility/1.0.5/GoXLR-on-Linux.GoXLR-Utility.installer.yaml b/manifests/g/GoXLR-on-Linux/GoXLR-Utility/1.0.5/GoXLR-on-Linux.GoXLR-Utility.installer.yaml new file mode 100644 index 0000000000000..9bbbf815c621a --- /dev/null +++ b/manifests/g/GoXLR-on-Linux/GoXLR-Utility/1.0.5/GoXLR-on-Linux.GoXLR-Utility.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: GoXLR-on-Linux.GoXLR-Utility +PackageVersion: 1.0.5 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2024-01-31 +ElevationRequirement: elevationRequired +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/GoXLR-on-Linux/goxlr-utility/releases/download/v1.0.5/goxlr-utility-1.0.5.exe + InstallerSha256: 678F0E0C27A98E668DD2437BD935D9A06407961A84489AD089BCE3FA4826AE68 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/g/GoXLR-on-Linux/GoXLR-Utility/1.0.5/GoXLR-on-Linux.GoXLR-Utility.locale.en-GB.yaml b/manifests/g/GoXLR-on-Linux/GoXLR-Utility/1.0.5/GoXLR-on-Linux.GoXLR-Utility.locale.en-GB.yaml new file mode 100644 index 0000000000000..ff771a866022b --- /dev/null +++ b/manifests/g/GoXLR-on-Linux/GoXLR-Utility/1.0.5/GoXLR-on-Linux.GoXLR-Utility.locale.en-GB.yaml @@ -0,0 +1,33 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: GoXLR-on-Linux.GoXLR-Utility +PackageVersion: 1.0.5 +PackageLocale: en-GB +Publisher: The GoXLR on Linux Team +PublisherUrl: https://github.com/GoXLR-on-Linux +PackageName: GoXLR Utility +License: MIT +LicenseUrl: https://github.com/GoXLR-on-Linux/goxlr-utility/blob/HEAD/LICENSE +ShortDescription: An unofficial GoXLR App replacement for Linux, Windows and MacOS +Tags: +- goxlr +- goxlr-on-linux +- linux +- rust +ReleaseNotes: |- + The main goal of this release was to fix a couple of reported bugs since 1.0.4, as well as increase the robustness of the error handling in case something bad happens. The main fix ensures the UI opens when running the Utility from the Start Menu while it's already running.In addition if you missed it, the Stream Deck Plugin got a release last week, adding a lot of new actions for better control!Changelog- [Windows] Fixed bug where launcher may not detect the utility running + - [Windows] Switched from win_win and winapi crates to windows crate + - [Windows] Reworked Tray Icon Logic + - [Windows] Display an error if the Utility fails to start + - [Windows] Correctly set default log level to Debug on fresh installs + - [UI] Fix Scrollbar style in lighting effects tab (Contributed by @t3duk) + - Fixed Microphone not unmuting if unmuted via the API (Reported by @TheRealDadbeard) + - Added 'already running' checks for platforms that use Named Pipes + - Added preliminary code to detect Session Locking on Windows and Linux + - If launching the Utility fails, force enable DEBUG logging + -- + @FrostyCoolSlug +ReleaseNotesUrl: https://github.com/GoXLR-on-Linux/goxlr-utility/releases/tag/v1.0.5 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/g/GoXLR-on-Linux/GoXLR-Utility/1.0.5/GoXLR-on-Linux.GoXLR-Utility.yaml b/manifests/g/GoXLR-on-Linux/GoXLR-Utility/1.0.5/GoXLR-on-Linux.GoXLR-Utility.yaml new file mode 100644 index 0000000000000..f5ada87e5f53f --- /dev/null +++ b/manifests/g/GoXLR-on-Linux/GoXLR-Utility/1.0.5/GoXLR-on-Linux.GoXLR-Utility.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: GoXLR-on-Linux.GoXLR-Utility +PackageVersion: 1.0.5 +DefaultLocale: en-GB +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.62.1299/Grammarly.Grammarly.installer.yaml b/manifests/g/Grammarly/Grammarly/1.2.62.1299/Grammarly.Grammarly.installer.yaml new file mode 100644 index 0000000000000..26df4dea14156 --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.62.1299/Grammarly.Grammarly.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Grammarly.Grammarly +PackageVersion: 1.2.62.1299 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: /update +UpgradeBehavior: install +ProductCode: Grammarly Desktop Integrations +Installers: +- Architecture: x86 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.62.1299/GrammarlyInstaller.exe + InstallerSha256: 5343C6DBEB6A66D5E67DAD16281432C49904374C91C8310732138CEAA19C0991 +- Architecture: x64 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.62.1299/GrammarlyInstaller.exe + InstallerSha256: 5343C6DBEB6A66D5E67DAD16281432C49904374C91C8310732138CEAA19C0991 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.62.1299/Grammarly.Grammarly.locale.en-US.yaml b/manifests/g/Grammarly/Grammarly/1.2.62.1299/Grammarly.Grammarly.locale.en-US.yaml new file mode 100644 index 0000000000000..37a3941d022cc --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.62.1299/Grammarly.Grammarly.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Grammarly.Grammarly +PackageVersion: 1.2.62.1299 +PackageLocale: en-US +Publisher: Grammarly +PublisherUrl: https://www.grammarly.com +PublisherSupportUrl: https://support.grammarly.com +PrivacyUrl: https://www.grammarly.com/privacy-policy +Author: Grammarly Inc. +PackageName: Grammarly for Windows +PackageUrl: https://www.grammarly.com/desktop/windows +License: Proprietary +LicenseUrl: https://www.grammarly.com/terms +Copyright: Copyright © 2009-2024 Grammarly Inc. +ShortDescription: Compose bold, clear, mistake-free writing with Grammarly’s new AI-powered desktop Windows app. +Tags: +- english +- grammar +- writing +PurchaseUrl: https://www.grammarly.com/plans +Documentations: +- DocumentLabel: Text Editor SDK + DocumentUrl: https://developer.grammarly.com/docs +- DocumentLabel: API Reference + DocumentUrl: https://developer.grammarly.com/docs/api +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.62.1299/Grammarly.Grammarly.locale.zh-CN.yaml b/manifests/g/Grammarly/Grammarly/1.2.62.1299/Grammarly.Grammarly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..033892c4e07db --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.62.1299/Grammarly.Grammarly.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Grammarly.Grammarly +PackageVersion: 1.2.62.1299 +PackageLocale: zh-CN +Publisher: Grammarly +PublisherUrl: https://www.grammarly.com +PublisherSupportUrl: https://support.grammarly.com +PrivacyUrl: https://www.grammarly.com/privacy-policy +Author: Grammarly Inc. +PackageName: Grammarly for Windows +PackageUrl: https://www.grammarly.com/desktop/windows +License: 专有软件 +LicenseUrl: https://www.grammarly.com/terms +Copyright: Copyright © 2009-2024 Grammarly Inc. +ShortDescription: 使用 Grammarly 的 AI 驱动的新 Windows 桌面应用,撰写大胆、清晰、无错误的文章。 +Tags: +- 写作 +- 英语 +- 语法 +PurchaseUrl: https://www.grammarly.com/plans +Documentations: +- DocumentLabel: 文本编辑器 SDK + DocumentUrl: https://developer.grammarly.com/docs +- DocumentLabel: API 参考 + DocumentUrl: https://developer.grammarly.com/docs/api +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.62.1299/Grammarly.Grammarly.yaml b/manifests/g/Grammarly/Grammarly/1.2.62.1299/Grammarly.Grammarly.yaml new file mode 100644 index 0000000000000..cd2c7b6bd5807 --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.62.1299/Grammarly.Grammarly.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Grammarly.Grammarly +PackageVersion: 1.2.62.1299 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.62.1304/Grammarly.Grammarly.installer.yaml b/manifests/g/Grammarly/Grammarly/1.2.62.1304/Grammarly.Grammarly.installer.yaml new file mode 100644 index 0000000000000..18dea59bdab96 --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.62.1304/Grammarly.Grammarly.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Grammarly.Grammarly +PackageVersion: 1.2.62.1304 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: /update +UpgradeBehavior: install +ProductCode: Grammarly Desktop Integrations +Installers: +- Architecture: x86 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.62.1304/GrammarlyInstaller.exe + InstallerSha256: F3025B7459C088C9EB8C8453841B24FDFD73276848A735A284556062E009AA37 +- Architecture: x64 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.62.1304/GrammarlyInstaller.exe + InstallerSha256: F3025B7459C088C9EB8C8453841B24FDFD73276848A735A284556062E009AA37 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.62.1304/Grammarly.Grammarly.locale.en-US.yaml b/manifests/g/Grammarly/Grammarly/1.2.62.1304/Grammarly.Grammarly.locale.en-US.yaml new file mode 100644 index 0000000000000..845077b393978 --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.62.1304/Grammarly.Grammarly.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Grammarly.Grammarly +PackageVersion: 1.2.62.1304 +PackageLocale: en-US +Publisher: Grammarly +PublisherUrl: https://www.grammarly.com +PublisherSupportUrl: https://support.grammarly.com +PrivacyUrl: https://www.grammarly.com/privacy-policy +Author: Grammarly Inc. +PackageName: Grammarly for Windows +PackageUrl: https://www.grammarly.com/desktop/windows +License: Proprietary +LicenseUrl: https://www.grammarly.com/terms +Copyright: Copyright © 2009-2024 Grammarly Inc. +ShortDescription: Compose bold, clear, mistake-free writing with Grammarly’s new AI-powered desktop Windows app. +Tags: +- english +- grammar +- writing +PurchaseUrl: https://www.grammarly.com/plans +Documentations: +- DocumentLabel: Text Editor SDK + DocumentUrl: https://developer.grammarly.com/docs +- DocumentLabel: API Reference + DocumentUrl: https://developer.grammarly.com/docs/api +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.62.1304/Grammarly.Grammarly.locale.zh-CN.yaml b/manifests/g/Grammarly/Grammarly/1.2.62.1304/Grammarly.Grammarly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6842392d5a859 --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.62.1304/Grammarly.Grammarly.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Grammarly.Grammarly +PackageVersion: 1.2.62.1304 +PackageLocale: zh-CN +Publisher: Grammarly +PublisherUrl: https://www.grammarly.com +PublisherSupportUrl: https://support.grammarly.com +PrivacyUrl: https://www.grammarly.com/privacy-policy +Author: Grammarly Inc. +PackageName: Grammarly for Windows +PackageUrl: https://www.grammarly.com/desktop/windows +License: 专有软件 +LicenseUrl: https://www.grammarly.com/terms +Copyright: Copyright © 2009-2024 Grammarly Inc. +ShortDescription: 使用 Grammarly 的 AI 驱动的新 Windows 桌面应用,撰写大胆、清晰、无错误的文章。 +Tags: +- 写作 +- 英语 +- 语法 +PurchaseUrl: https://www.grammarly.com/plans +Documentations: +- DocumentLabel: 文本编辑器 SDK + DocumentUrl: https://developer.grammarly.com/docs +- DocumentLabel: API 参考 + DocumentUrl: https://developer.grammarly.com/docs/api +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.62.1304/Grammarly.Grammarly.yaml b/manifests/g/Grammarly/Grammarly/1.2.62.1304/Grammarly.Grammarly.yaml new file mode 100644 index 0000000000000..9ab4a015fa02b --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.62.1304/Grammarly.Grammarly.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Grammarly.Grammarly +PackageVersion: 1.2.62.1304 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/g/geeksoftwareGmbH/PDF24Creator/11.16.0/geeksoftwareGmbH.PDF24Creator.installer.yaml b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.16.0/geeksoftwareGmbH.PDF24Creator.installer.yaml new file mode 100644 index 0000000000000..8cce40106b52c --- /dev/null +++ b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.16.0/geeksoftwareGmbH.PDF24Creator.installer.yaml @@ -0,0 +1,39 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: geeksoftwareGmbH.PDF24Creator +PackageVersion: 11.16.0 +InstallerLocale: en-US +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerType: wix + InstallerUrl: https://download.pdf24.org/pdf24-creator-11.16.0-x64.msi + InstallerSha256: 943298FC962DBF3DA56F21C93D9AE078131B6BF37467163EFA8F5EAB3FF69CCB + ProductCode: '{C07ED6F8-0D7C-4408-AA24-61DB6633F201}' +- Architecture: x64 + InstallerType: inno + InstallerUrl: https://download.pdf24.org/pdf24-creator-11.16.0-x64.exe + InstallerSha256: 8B6633776BE77D7278E4C5D8C9AAD13B98CA653CFB8A0C4C6639E4F634B3992B + InstallerSwitches: + Custom: /NOUPDATE /NORESTART + AppsAndFeaturesEntries: + - Publisher: PDF24.org + ProductCode: '{81A6F461-0DBA-4F12-B56F-0E977EC10576}_is1' +- Architecture: x86 + InstallerType: wix + InstallerUrl: https://download.pdf24.org/pdf24-creator-11.16.0-x86.msi + InstallerSha256: FB14BE6110B08E04D5AB9418AD3987BA8F47BE62983FD645D15AAA463F604849 + ProductCode: '{ED97E6C5-2368-4AFD-92D2-3D93AD2CCE3B}' +- Architecture: x86 + InstallerType: inno + InstallerUrl: https://download.pdf24.org/pdf24-creator-11.16.0-x86.exe + InstallerSha256: D10F1A398652C43AE40E57FEE3A3C27E9B2B605BB37C44F0FDCB12D234619887 + InstallerSwitches: + Custom: /NOUPDATE /NORESTART + AppsAndFeaturesEntries: + - Publisher: PDF24.org + ProductCode: '{81A6F461-0DBA-4F12-B56F-0E977EC10576}_is1' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/g/geeksoftwareGmbH/PDF24Creator/11.16.0/geeksoftwareGmbH.PDF24Creator.locale.de-DE.yaml b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.16.0/geeksoftwareGmbH.PDF24Creator.locale.de-DE.yaml new file mode 100644 index 0000000000000..64d44775ef178 --- /dev/null +++ b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.16.0/geeksoftwareGmbH.PDF24Creator.locale.de-DE.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: geeksoftwareGmbH.PDF24Creator +PackageVersion: 11.16.0 +PackageLocale: de-DE +Publisher: geek software GmbH +PublisherUrl: https://www.pdf24.org/de/ +PublisherSupportUrl: https://help.pdf24.org/de/ +PrivacyUrl: https://www.pdf24.org/de/privacy-policy +PackageName: PDF24 Creator +License: Proprietary +LicenseUrl: https://www.pdf24.org/de/terms-of-use +ShortDescription: Eine kostenlose und benutzerfreundliche PDF Lösung mit vielen Funktionen +Tags: +- pdf +- pdf-creator +- pdf-editor +- pdf-printer +- pdf-reader +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/g/geeksoftwareGmbH/PDF24Creator/11.16.0/geeksoftwareGmbH.PDF24Creator.locale.en-US.yaml b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.16.0/geeksoftwareGmbH.PDF24Creator.locale.en-US.yaml new file mode 100644 index 0000000000000..1e06a07fa49e6 --- /dev/null +++ b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.16.0/geeksoftwareGmbH.PDF24Creator.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: geeksoftwareGmbH.PDF24Creator +PackageVersion: 11.16.0 +PackageLocale: en-US +Publisher: geek software GmbH +PublisherUrl: https://www.pdf24.org/en/ +PublisherSupportUrl: https://help.pdf24.org/en/ +PrivacyUrl: https://www.pdf24.org/en/privacy-policy +PackageName: PDF24 Creator +License: Proprietary +LicenseUrl: https://www.pdf24.org/en/terms-of-use +ShortDescription: A free and easy to use PDF solution with many features +Moniker: pdf24 +Tags: +- pdf +- pdf-creator +- pdf-editor +- pdf-printer +- pdf-reader +Documentations: +- DocumentLabel: PDF24 Creator 11 Manual + DocumentUrl: https://creator.pdf24.org/manual/11/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/g/geeksoftwareGmbH/PDF24Creator/11.16.0/geeksoftwareGmbH.PDF24Creator.yaml b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.16.0/geeksoftwareGmbH.PDF24Creator.yaml new file mode 100644 index 0000000000000..7930650c35b28 --- /dev/null +++ b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.16.0/geeksoftwareGmbH.PDF24Creator.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: geeksoftwareGmbH.PDF24Creator +PackageVersion: 11.16.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/g/goreleaser/nfpm/2.35.3/goreleaser.nfpm.installer.yaml b/manifests/g/goreleaser/nfpm/2.35.3/goreleaser.nfpm.installer.yaml new file mode 100644 index 0000000000000..c54ba2d0101e5 --- /dev/null +++ b/manifests/g/goreleaser/nfpm/2.35.3/goreleaser.nfpm.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.5.0.schema.json +PackageIdentifier: goreleaser.nfpm +PackageVersion: 2.35.3 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-01-31" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: nfpm.exe + PortableCommandAlias: nfpm + InstallerUrl: https://github.com/goreleaser/nfpm/releases/download/v2.35.3/nfpm_2.35.3_Windows_arm64.zip + InstallerSha256: 8fdfee78376d7262fb2a3582a0c149b520f070108da422fd9e470187e0ce8ce8 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: nfpm.exe + PortableCommandAlias: nfpm + InstallerUrl: https://github.com/goreleaser/nfpm/releases/download/v2.35.3/nfpm_2.35.3_Windows_x86_64.zip + InstallerSha256: e13d6c2c0c7a7f45a98dda92dbac592fbbd27f6eba7fee7ce5ea96bdd24a6557 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/g/goreleaser/nfpm/2.35.3/goreleaser.nfpm.locale.en-US.yaml b/manifests/g/goreleaser/nfpm/2.35.3/goreleaser.nfpm.locale.en-US.yaml new file mode 100644 index 0000000000000..e031f72cdb4c8 --- /dev/null +++ b/manifests/g/goreleaser/nfpm/2.35.3/goreleaser.nfpm.locale.en-US.yaml @@ -0,0 +1,14 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json +PackageIdentifier: goreleaser.nfpm +PackageVersion: 2.35.3 +PackageLocale: en-US +Publisher: goreleaser +PackageName: nfpm +PackageUrl: https://nfpm.goreleaser.com +License: Copyright Becker Software LTDA +Copyright: Becker Software LTDA +ShortDescription: nFPM is a simple, 0-dependencies, deb, rpm and apk packager. +Moniker: nfpm +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/g/goreleaser/nfpm/2.35.3/goreleaser.nfpm.yaml b/manifests/g/goreleaser/nfpm/2.35.3/goreleaser.nfpm.yaml new file mode 100644 index 0000000000000..3bdbd1bef9541 --- /dev/null +++ b/manifests/g/goreleaser/nfpm/2.35.3/goreleaser.nfpm.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.5.0.schema.json +PackageIdentifier: goreleaser.nfpm +PackageVersion: 2.35.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/h/Hashicorp/Packer/1.10.1/Hashicorp.Packer.installer.yaml b/manifests/h/Hashicorp/Packer/1.10.1/Hashicorp.Packer.installer.yaml new file mode 100644 index 0000000000000..49728dc017743 --- /dev/null +++ b/manifests/h/Hashicorp/Packer/1.10.1/Hashicorp.Packer.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 v2.2.4 $debug=NVS0.CRLF.7-4-0-preview-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: Hashicorp.Packer +PackageVersion: 1.10.1 +InstallerType: zip +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: packer.exe + PortableCommandAlias: packer + InstallerUrl: https://releases.hashicorp.com/packer/1.10.1/packer_1.10.1_windows_amd64.zip + InstallerSha256: ed522ca762f3a1e4b217f0af7545333b469e49725e8d36a4e7d7b368d7925510 +- Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: packer.exe + PortableCommandAlias: packer + InstallerUrl: https://releases.hashicorp.com/packer/1.10.1/packer_1.10.1_windows_386.zip + InstallerSha256: 8986e9b8cc60af73a9c7f9fab326728327c781fcdf4d2626dd04e776b5a8d8bc +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/h/Hashicorp/Packer/1.10.1/Hashicorp.Packer.locale.en-US.yaml b/manifests/h/Hashicorp/Packer/1.10.1/Hashicorp.Packer.locale.en-US.yaml new file mode 100644 index 0000000000000..5d0b51fa5b865 --- /dev/null +++ b/manifests/h/Hashicorp/Packer/1.10.1/Hashicorp.Packer.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.2.4 $debug=NVS0.CRLF.7-4-0-preview-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: Hashicorp.Packer +PackageVersion: 1.10.1 +PackageLocale: en-US +Publisher: HashiCorp +PublisherUrl: https://www.packer.io/ +PublisherSupportUrl: https://www.packer.io/community +PrivacyUrl: https://www.hashicorp.com/privacy +Author: Copyright (c) 2010-2023 Mitchell Hashimoto +PackageName: Packer +PackageUrl: https://www.packer.io/ +License: BSL-1.1 +LicenseUrl: https://github.com/hashicorp/packer/blob/main/LICENSE +Copyright: Copyright (c) 2010-2023 Mitchell Hashimoto +# CopyrightUrl: +ShortDescription: Packer is a tool for building identical machine images for multiple platforms from a single source configuration. +# Description: +Moniker: packer +Tags: +- developing +- packer +- virtualization +# Agreements: +ReleaseNotesUrl: https://github.com/hashicorp/packer/blob/v1.10.0/CHANGELOG.md +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://www.packer.io/docs +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/h/Hashicorp/Packer/1.10.1/Hashicorp.Packer.yaml b/manifests/h/Hashicorp/Packer/1.10.1/Hashicorp.Packer.yaml new file mode 100644 index 0000000000000..dd30ff2da564e --- /dev/null +++ b/manifests/h/Hashicorp/Packer/1.10.1/Hashicorp.Packer.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.2.4 $debug=NVS0.CRLF.7-4-0-preview-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: Hashicorp.Packer +PackageVersion: 1.10.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/h/HiroSystems/Clarinet/2.2.0/HiroSystems.Clarinet.installer.yaml b/manifests/h/HiroSystems/Clarinet/2.2.0/HiroSystems.Clarinet.installer.yaml new file mode 100644 index 0000000000000..3e8ca03bbc982 --- /dev/null +++ b/manifests/h/HiroSystems/Clarinet/2.2.0/HiroSystems.Clarinet.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: HiroSystems.Clarinet +PackageVersion: 2.2.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{41B5B7D3-D8BE-4B6C-BB95-8DF0DE5B2859}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hirosystems/clarinet/releases/download/v2.2.0/clarinet-windows-x64.msi + InstallerSha256: 7B00294F977321925503A6936D6A38A433E21E9E97C14DF85B299A94C670207A +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/h/HiroSystems/Clarinet/2.2.0/HiroSystems.Clarinet.locale.en-US.yaml b/manifests/h/HiroSystems/Clarinet/2.2.0/HiroSystems.Clarinet.locale.en-US.yaml new file mode 100644 index 0000000000000..923b05db537cd --- /dev/null +++ b/manifests/h/HiroSystems/Clarinet/2.2.0/HiroSystems.Clarinet.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: HiroSystems.Clarinet +PackageVersion: 2.2.0 +PackageLocale: en-US +Publisher: Hiro Systems +PublisherUrl: https://www.hiro.so/ +PublisherSupportUrl: https://github.com/hirosystems/clarinet/issues +PrivacyUrl: https://www.hiro.so/terms-privacy +Author: Hiro Systems +PackageName: clarinet +PackageUrl: https://github.com/hirosystems/clarinet +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/hirosystems/clarinet/main/LICENSE +Copyright: Copyright (C) 2007 Free Software Foundation, Inc +CopyrightUrl: https://raw.githubusercontent.com/hirosystems/clarinet/main/LICENSE +ShortDescription: Command-line tool and runtime for the Clarity smart contract language. +Description: Clarinet is a Clarity runtime packaged as a command line tool, designed to facilitate smart contract understanding, development, testing and deployment. Clarinet consists of a Clarity REPL and a testing harness, which, when used together allow you to rapidly develop and test a Clarity smart contract, with the need to deploy the contract to a local devnet or testnet. +Moniker: clarinet +Tags: +- blockchain +- cli +- command-line +- stacks +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/h/HiroSystems/Clarinet/2.2.0/HiroSystems.Clarinet.yaml b/manifests/h/HiroSystems/Clarinet/2.2.0/HiroSystems.Clarinet.yaml new file mode 100644 index 0000000000000..c4e800ca68d4a --- /dev/null +++ b/manifests/h/HiroSystems/Clarinet/2.2.0/HiroSystems.Clarinet.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: HiroSystems.Clarinet +PackageVersion: 2.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/0.16.0/HiroshibaKazuyuki.VOICEVOX.installer.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/0.16.0/HiroshibaKazuyuki.VOICEVOX.installer.yaml new file mode 100644 index 0000000000000..41220257cd6c7 --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/0.16.0/HiroshibaKazuyuki.VOICEVOX.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: HiroshibaKazuyuki.VOICEVOX +PackageVersion: 0.16.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: VOICEVOX\VOICEVOX.exe +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/VOICEVOX/voicevox/releases/download/0.16.0/voicevox-windows-directml-0.16.0.zip + InstallerSha256: CBFBA3897215DAAE1CE2C18E643F1993FB4246AB5FF90A3C84B16273F5D406AB +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/0.16.0/HiroshibaKazuyuki.VOICEVOX.locale.en-US.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/0.16.0/HiroshibaKazuyuki.VOICEVOX.locale.en-US.yaml new file mode 100644 index 0000000000000..17c20d3dfef50 --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/0.16.0/HiroshibaKazuyuki.VOICEVOX.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: HiroshibaKazuyuki.VOICEVOX +PackageVersion: 0.16.0 +PackageLocale: en-US +Publisher: Hiroshiba Kazuyuki +PublisherUrl: https://voicevox.hiroshiba.jp/ +PublisherSupportUrl: https://github.com/VOICEVOX/voicevox/issues +PackageName: VOICEVOX +PackageUrl: https://github.com/VOICEVOX/voicevox +License: Proprietary +LicenseUrl: https://github.com/VOICEVOX/voicevox/blob/HEAD/LICENSE +ShortDescription: 無料で使える中品質なテキスト読み上げソフトウェア、VOICEVOXのエディター +ReleaseNotes: . +ReleaseNotesUrl: https://github.com/VOICEVOX/voicevox/releases/tag/0.16.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/0.16.0/HiroshibaKazuyuki.VOICEVOX.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/0.16.0/HiroshibaKazuyuki.VOICEVOX.yaml new file mode 100644 index 0000000000000..81563654a0aed --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/0.16.0/HiroshibaKazuyuki.VOICEVOX.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: HiroshibaKazuyuki.VOICEVOX +PackageVersion: 0.16.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.16.0/HiroshibaKazuyuki.VOICEVOX.CPU.installer.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.16.0/HiroshibaKazuyuki.VOICEVOX.CPU.installer.yaml new file mode 100644 index 0000000000000..1d1e07755b509 --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.16.0/HiroshibaKazuyuki.VOICEVOX.CPU.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: HiroshibaKazuyuki.VOICEVOX.CPU +PackageVersion: 0.16.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: VOICEVOX/VOICEVOX.exe +UpgradeBehavior: install +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/VOICEVOX/voicevox/releases/download/0.16.0/voicevox-windows-cpu-0.16.0.zip + InstallerSha256: C8F866B270601616DCE367598A90A91B86662A46606C4CFB852CBD0B178DF5E7 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.16.0/HiroshibaKazuyuki.VOICEVOX.CPU.locale.en-US.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.16.0/HiroshibaKazuyuki.VOICEVOX.CPU.locale.en-US.yaml new file mode 100644 index 0000000000000..249712f375efd --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.16.0/HiroshibaKazuyuki.VOICEVOX.CPU.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: HiroshibaKazuyuki.VOICEVOX.CPU +PackageVersion: 0.16.0 +PackageLocale: en-US +Publisher: Hiroshiba Kazuyuki +PublisherUrl: https://voicevox.hiroshiba.jp/ +PublisherSupportUrl: https://github.com/VOICEVOX/voicevox/issues +PackageName: VOICEVOX +PackageUrl: https://github.com/VOICEVOX/voicevox +License: Proprietary +LicenseUrl: https://github.com/VOICEVOX/voicevox/blob/HEAD/LICENSE +ShortDescription: 無料で使える中品質なテキスト読み上げソフトウェア、VOICEVOXのエディター +ReleaseNotes: . +ReleaseNotesUrl: https://github.com/VOICEVOX/voicevox/releases/tag/0.16.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.16.0/HiroshibaKazuyuki.VOICEVOX.CPU.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.16.0/HiroshibaKazuyuki.VOICEVOX.CPU.yaml new file mode 100644 index 0000000000000..25de8d50e6b1a --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.16.0/HiroshibaKazuyuki.VOICEVOX.CPU.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: HiroshibaKazuyuki.VOICEVOX.CPU +PackageVersion: 0.16.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/h/Huawei/Welink/7.37.3/Huawei.Welink.installer.yaml b/manifests/h/Huawei/Welink/7.37.3/Huawei.Welink.installer.yaml new file mode 100644 index 0000000000000..fe06775d0d9f1 --- /dev/null +++ b/manifests/h/Huawei/Welink/7.37.3/Huawei.Welink.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Huawei.Welink +PackageVersion: 7.37.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- hwwelink +- welinksoftclient +Installers: +- Architecture: x86 + InstallerUrl: https://cdn02.welink.huaweicloud.com/appstore/file/web/free/down/cfed6f0c335a48749bc28b3f6c709682/WeLink_Win_cloud_202401191519_17421_master_7.37.3_507.exe + InstallerSha256: 045C334577032F51D963188D30254A0E1D8FEA7876FBD7B00E78BD5B7BB59685 + ProductCode: '{BE219E3C-4246-497E-B418-D2FE44D909F3}_is1' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/h/Huawei/Welink/7.37.3/Huawei.Welink.locale.en-US.yaml b/manifests/h/Huawei/Welink/7.37.3/Huawei.Welink.locale.en-US.yaml new file mode 100644 index 0000000000000..e31fffe965bc7 --- /dev/null +++ b/manifests/h/Huawei/Welink/7.37.3/Huawei.Welink.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Huawei.Welink +PackageVersion: 7.37.3 +PackageLocale: en-US +Publisher: Huawei Technologies Co., Ltd. +PublisherUrl: https://www.huaweicloud.com/intl/product/welink.html +# PublisherSupportUrl: +PrivacyUrl: https://api.welink.huaweicloud.com/mcloud/mag/ProxyForText/pc/ppolicy/v3/privacy/latestContent/en?regionCode=SG +Author: Huawei Technologies Co., Ltd. +PackageName: Welink +PackageUrl: https://www.huaweicloud.com/intl/product/welink/welink-download.html +License: Proprietary +LicenseUrl: https://www.huaweicloud.com/intl/declaration-sg/tsa_welink.html +Copyright: ©2019-2024. Huawei Technologies Co., Ltd. All Rights Reserved. +CopyrightUrl: https://www.huaweicloud.com/intl/declaration/statement.html +ShortDescription: A secure, intelligent, and digital platform powered by Huawei for all office scenarios. +# Description: +# Moniker: +Tags: +- attendance +- bussiness +- check-in +- collaboration +- communicate +- comunication +- conference +- docs +- document +- enterprise +- meeting +- oa +- office +- saas +- team +- working +ReleaseNotes: |- + 1. Optimized experience in CloudDrive. + 2. Optimized experience in Meeting. + 3. Optimized experience in Contacts. + + Upgrade WeLink now and begin your new journey! +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/h/Huawei/Welink/7.37.3/Huawei.Welink.locale.zh-CN.yaml b/manifests/h/Huawei/Welink/7.37.3/Huawei.Welink.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3fc7ba4e47c82 --- /dev/null +++ b/manifests/h/Huawei/Welink/7.37.3/Huawei.Welink.locale.zh-CN.yaml @@ -0,0 +1,51 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Huawei.Welink +PackageVersion: 7.37.3 +PackageLocale: zh-CN +Publisher: Huawei Technologies Co., Ltd. +PublisherUrl: https://www.huaweicloud.com/product/welink.html +PublisherSupportUrl: https://support.huaweicloud.com/welink/index.html +PrivacyUrl: https://api.welink.huaweicloud.com/mcloud/mag/ProxyForText/pc/ppolicy/v3/privacy/latestContent/cn?regionCode=CN +Author: 华为云计算技术有限公司 +PackageName: Welink +PackageUrl: https://www.huaweicloud.com/product/welink-download.html +License: 专有软件 +LicenseUrl: https://www.huaweicloud.com/declaration/tsa-welink.html +Copyright: ©2019-2024 华为技术有限公司。保留一切权利。 +CopyrightUrl: https://www.huaweicloud.com/declaration/statement.html +ShortDescription: 源自华为,更懂企业的全场景安全、智能、数字化协同办公平台 +Description: 华为云 WeLink 源于华为全球化数字化办公实践,是一款全场景远程智能数字化协同办公平台,支持视频会议、考勤打卡、直播、企业网盘、云笔记等数字化办公场景。 +# Moniker: +Tags: +- oa +- saas +- 交流 +- 企业 +- 会议 +- 公司 +- 办公 +- 协作 +- 协同 +- 团队 +- 工作 +- 打卡 +- 文档 +- 沟通 +- 签到 +- 考勤 +ReleaseNotes: |- + 1. 云空间体验优化 + 2. 会议体验优化 + 3. 通讯录体验优化 + + 即刻更新,体验升级! +ReleaseNotesUrl: https://support.huaweicloud.com/productdesc-welink/welink_whatsnew_pc.html +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://support.huaweicloud.com/usermanual-welink/welink_pcuse.html +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/h/Huawei/Welink/7.37.3/Huawei.Welink.yaml b/manifests/h/Huawei/Welink/7.37.3/Huawei.Welink.yaml new file mode 100644 index 0000000000000..3111df62e1fff --- /dev/null +++ b/manifests/h/Huawei/Welink/7.37.3/Huawei.Welink.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Huawei.Welink +PackageVersion: 7.37.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.1/h3poteto.whalebird-desktop.installer.yaml b/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.1/h3poteto.whalebird-desktop.installer.yaml new file mode 100644 index 0000000000000..ce3276c47c7f3 --- /dev/null +++ b/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.1/h3poteto.whalebird-desktop.installer.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-19041-3930.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: h3poteto.whalebird-desktop +PackageVersion: v6.0.0-beta.1 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/h3poteto/whalebird-desktop/releases/download/v6.0.0-beta.1/Whalebird-6.0.0-beta.1-win-x64.exe + InstallerSha256: F7608D0E662CDCE167BD2E574A8EB4FAE8C211836F119C57CA3A9272A4AD318F + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/h3poteto/whalebird-desktop/releases/download/v6.0.0-beta.1/Whalebird-6.0.0-beta.1-win-x64.exe + InstallerSha256: F7608D0E662CDCE167BD2E574A8EB4FAE8C211836F119C57CA3A9272A4AD318F + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.1/h3poteto.whalebird-desktop.locale.en-US.yaml b/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.1/h3poteto.whalebird-desktop.locale.en-US.yaml new file mode 100644 index 0000000000000..fd8f895d07f43 --- /dev/null +++ b/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.1/h3poteto.whalebird-desktop.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-19041-3930.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: h3poteto.whalebird-desktop +PackageVersion: v6.0.0-beta.1 +PackageLocale: en-US +Publisher: AkiraFukushima +PublisherUrl: https://h3poteto.github.io +PublisherSupportUrl: https://github.com/h3poteto/whalebird-desktop/issues +PrivacyUrl: https://whalebird.social/en/desktop/privacy_policy +Author: h3poteto +PackageName: Whalebird +PackageUrl: https://whalebird.social/ +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/h3poteto/whalebird-desktop/master/LICENSE +Copyright: Copyright (c) 2021 Akira Fukushima +CopyrightUrl: https://raw.githubusercontent.com/h3poteto/whalebird-desktop/master/LICENSE +ShortDescription: An Electron based Mastodon, Pleroma and Misskey client for Windows, Mac and Linux +# Description: +Moniker: whalebird +Tags: +- electron +- mastodon +- misskey +- pleroma +- whalebird +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/h3poteto/whalebird-desktop/releases/tag/v6.0.0-beta.1 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.1/h3poteto.whalebird-desktop.yaml b/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.1/h3poteto.whalebird-desktop.yaml new file mode 100644 index 0000000000000..8a3df35f62a17 --- /dev/null +++ b/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.1/h3poteto.whalebird-desktop.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-19041-3930.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: h3poteto.whalebird-desktop +PackageVersion: v6.0.0-beta.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.2/h3poteto.whalebird-desktop.installer.yaml b/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.2/h3poteto.whalebird-desktop.installer.yaml new file mode 100644 index 0000000000000..18f5f98bd8271 --- /dev/null +++ b/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.2/h3poteto.whalebird-desktop.installer.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-19041-3930.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: h3poteto.whalebird-desktop +PackageVersion: v6.0.0-beta.2 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/h3poteto/whalebird-desktop/releases/download/v6.0.0-beta.2/Whalebird-6.0.0-beta.2-win-x64.exe + InstallerSha256: 789D7F2ECF7D5CFF7C3904C6942AD1D6DDCA7EE990896795E83847CAE31848A6 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/h3poteto/whalebird-desktop/releases/download/v6.0.0-beta.2/Whalebird-6.0.0-beta.2-win-x64.exe + InstallerSha256: 789D7F2ECF7D5CFF7C3904C6942AD1D6DDCA7EE990896795E83847CAE31848A6 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.2/h3poteto.whalebird-desktop.locale.en-US.yaml b/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.2/h3poteto.whalebird-desktop.locale.en-US.yaml new file mode 100644 index 0000000000000..9080f6ccab02e --- /dev/null +++ b/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.2/h3poteto.whalebird-desktop.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-19041-3930.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: h3poteto.whalebird-desktop +PackageVersion: v6.0.0-beta.2 +PackageLocale: en-US +Publisher: AkiraFukushima +PublisherUrl: https://h3poteto.github.io +PublisherSupportUrl: https://github.com/h3poteto/whalebird-desktop/issues +PrivacyUrl: https://whalebird.social/en/desktop/privacy_policy +Author: h3poteto +PackageName: Whalebird +PackageUrl: https://whalebird.social/ +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/h3poteto/whalebird-desktop/master/LICENSE +Copyright: Copyright (c) 2021 Akira Fukushima +CopyrightUrl: https://raw.githubusercontent.com/h3poteto/whalebird-desktop/master/LICENSE +ShortDescription: An Electron based Mastodon, Pleroma and Misskey client for Windows, Mac and Linux +# Description: +Moniker: whalebird +Tags: +- electron +- mastodon +- misskey +- pleroma +- whalebird +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/h3poteto/whalebird-desktop/releases/tag/v6.0.0-beta.2 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.2/h3poteto.whalebird-desktop.yaml b/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.2/h3poteto.whalebird-desktop.yaml new file mode 100644 index 0000000000000..75852ebed6f74 --- /dev/null +++ b/manifests/h/h3poteto/whalebird-desktop/v6.0.0-beta.2/h3poteto.whalebird-desktop.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-19041-3930.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: h3poteto.whalebird-desktop +PackageVersion: v6.0.0-beta.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/i/IDEA/ReadPaper/1.25.2/IDEA.ReadPaper.installer.yaml b/manifests/i/IDEA/ReadPaper/1.25.2/IDEA.ReadPaper.installer.yaml new file mode 100644 index 0000000000000..62a747d3d9aa0 --- /dev/null +++ b/manifests/i/IDEA/ReadPaper/1.25.2/IDEA.ReadPaper.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: IDEA.ReadPaper +PackageVersion: 1.25.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ReleaseDate: 2024-01-23 +Installers: +- Architecture: x86 + InstallerUrl: https://nuxt.cdn.readpaper.com/electron_release/1.25.2/ReadPaper-1.25.2-win-ia32.exe + InstallerSha256: AA5C43F5E523F17B02C9DE8040BD813B6A6AF57ACD0FE2428CEC1AF548DBBFB0 + ProductCode: 85b50cf1-633d-5449-baf8-eddd882792cb +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/i/IDEA/ReadPaper/1.25.2/IDEA.ReadPaper.locale.en-US.yaml b/manifests/i/IDEA/ReadPaper/1.25.2/IDEA.ReadPaper.locale.en-US.yaml new file mode 100644 index 0000000000000..452d2d4d29f91 --- /dev/null +++ b/manifests/i/IDEA/ReadPaper/1.25.2/IDEA.ReadPaper.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: IDEA.ReadPaper +PackageVersion: 1.25.2 +PackageLocale: en-US +Publisher: readpaper.com +PublisherUrl: https://readpaper.com/ +PublisherSupportUrl: https://readpaper.com/help +PrivacyUrl: https://nuxt.cdn.readpaper.com/privacy/%E9%9A%90%E7%A7%81%E6%94%BF%E7%AD%96.pdf +Author: International Digital Economy Academy +PackageName: ReadPaper +PackageUrl: https://readpaper.com/download +License: Proprietary +LicenseUrl: https://nuxt.cdn.readpaper.com/privacy/ReadPaper%E7%94%A8%E6%88%B7%E5%8D%8F%E8%AE%AE.pdf +Copyright: Copyright © 2024 readpaper.com +# CopyrightUrl: +ShortDescription: Literature Manager +Description: ReadPaper is a free and easy-to-use desktop client for Windows and macOS with powerful PDF reading, note management and group study features that can assist you in collecting, managing, and citing various research resources such as journals and books. +# Moniker: +Tags: +- academics +- article +- book +- citation +- cite +- journal +- literature +- paper +- pdf +- reader +- reading +- research +- thesis +- viewer +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://readpaper.com/vip +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/i/IDEA/ReadPaper/1.25.2/IDEA.ReadPaper.locale.zh-CN.yaml b/manifests/i/IDEA/ReadPaper/1.25.2/IDEA.ReadPaper.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fc7af502dedd8 --- /dev/null +++ b/manifests/i/IDEA/ReadPaper/1.25.2/IDEA.ReadPaper.locale.zh-CN.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: IDEA.ReadPaper +PackageVersion: 1.25.2 +PackageLocale: zh-CN +Publisher: readpaper.com +PublisherUrl: https://readpaper.com/ +PublisherSupportUrl: https://readpaper.com/help +PrivacyUrl: https://nuxt.cdn.readpaper.com/privacy/%E9%9A%90%E7%A7%81%E6%94%BF%E7%AD%96.pdf +Author: 粤港澳大湾区数字经济研究院(福田) +PackageName: ReadPaper +PackageUrl: https://readpaper.com/download +License: 专有软件 +LicenseUrl: https://nuxt.cdn.readpaper.com/privacy/ReadPaper%E7%94%A8%E6%88%B7%E5%8D%8F%E8%AE%AE.pdf +Copyright: Copyright © 2024 readpaper.com +# CopyrightUrl: +ShortDescription: 文献管理软件 +Description: ReadPaper 是一个免费易用的客户端软件,支持 Windows 和 macOS,可以提供强大的 PDF 阅读、笔记管理、小组学习体验,可以协助我们收集、管理及引用研究资源,包括期刊、书籍等各类文献等。 +# Moniker: +Tags: +- pdf +- 书籍 +- 学术 +- 引文 +- 引用 +- 引用文献 +- 文献 +- 期刊 +- 查看器 +- 研究 +- 论文 +- 阅读 +- 阅读器 +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://readpaper.com/vip +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/i/IDEA/ReadPaper/1.25.2/IDEA.ReadPaper.yaml b/manifests/i/IDEA/ReadPaper/1.25.2/IDEA.ReadPaper.yaml new file mode 100644 index 0000000000000..242f1204058ed --- /dev/null +++ b/manifests/i/IDEA/ReadPaper/1.25.2/IDEA.ReadPaper.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: IDEA.ReadPaper +PackageVersion: 1.25.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/i/IcecreamApps/IcecreamEbookReader/6.46/IcecreamApps.IcecreamEbookReader.installer.yaml b/manifests/i/IcecreamApps/IcecreamEbookReader/6.46/IcecreamApps.IcecreamEbookReader.installer.yaml new file mode 100644 index 0000000000000..68450b305b3fc --- /dev/null +++ b/manifests/i/IcecreamApps/IcecreamEbookReader/6.46/IcecreamApps.IcecreamEbookReader.installer.yaml @@ -0,0 +1,14 @@ +# Automatically updated by the winget bot at 2024/Feb/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: IcecreamApps.IcecreamEbookReader +PackageVersion: 6.46 +InstallerType: inno +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- +Installers: +- Architecture: neutral + InstallerUrl: https://download.icecreamapps.com/ebook_reader_setup.exe + InstallerSha256: 5C29A03E68DC0D7C414B9ABEEB8C692AAEE2DE1417B9733DF6A67B6CD4F556B6 +ManifestType: installer +ManifestVersion: 1.4.0 diff --git a/manifests/i/IcecreamApps/IcecreamEbookReader/6.46/IcecreamApps.IcecreamEbookReader.locale.en-US.yaml b/manifests/i/IcecreamApps/IcecreamEbookReader/6.46/IcecreamApps.IcecreamEbookReader.locale.en-US.yaml new file mode 100644 index 0000000000000..0149dfb44a795 --- /dev/null +++ b/manifests/i/IcecreamApps/IcecreamEbookReader/6.46/IcecreamApps.IcecreamEbookReader.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Automatically updated by the winget bot at 2024/Feb/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: IcecreamApps.IcecreamEbookReader +PackageVersion: 6.46 +PackageLocale: en-US +Publisher: Icecream Apps +PackageName: Icecream Ebook Reader 6 Version 6.42 +License: Proprietary +ShortDescription: EPUB reader for Windows to read eBooks in EPUB, MOBI, PDF and other popular formats +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/i/IcecreamApps/IcecreamEbookReader/6.46/IcecreamApps.IcecreamEbookReader.yaml b/manifests/i/IcecreamApps/IcecreamEbookReader/6.46/IcecreamApps.IcecreamEbookReader.yaml new file mode 100644 index 0000000000000..9472c79530de5 --- /dev/null +++ b/manifests/i/IcecreamApps/IcecreamEbookReader/6.46/IcecreamApps.IcecreamEbookReader.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2024/Feb/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: IcecreamApps.IcecreamEbookReader +PackageVersion: 6.46 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.installer.yaml b/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.installer.yaml index ca9204774fa22..90d2e469f96d6 100644 --- a/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.installer.yaml +++ b/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Feb/01 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Intel.IntelDriverAndSupportAssistant diff --git a/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml b/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml index 7eb88159f44cc..bee517482ff85 100644 --- a/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml +++ b/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Feb/01 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Intel.IntelDriverAndSupportAssistant diff --git a/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.yaml b/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.yaml index f3732905683c0..a323a662d470d 100644 --- a/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.yaml +++ b/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Feb/01 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Intel.IntelDriverAndSupportAssistant diff --git a/manifests/i/iFlytek/iFlyDocs/2.1.1142/iFlytek.iFlyDocs.installer.yaml b/manifests/i/iFlytek/iFlyDocs/2.1.1142/iFlytek.iFlyDocs.installer.yaml new file mode 100644 index 0000000000000..fe24ffed02e65 --- /dev/null +++ b/manifests/i/iFlytek/iFlyDocs/2.1.1142/iFlytek.iFlyDocs.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: iFlytek.iFlyDocs +PackageVersion: 2.1.1142 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://bjb.openstorage.cn/v1/doc/downloads/win/iflydocs-2.1.1142.exe + InstallerSha256: 731BE62CAFE1FDBC4CA4CB60F401AA18CD23D124BB930CD41945297A19A2FE5A + ProductCode: f1eecd5e-d9b2-568c-a5db-71646d8c8e4a +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/i/iFlytek/iFlyDocs/2.1.1142/iFlytek.iFlyDocs.locale.en-US.yaml b/manifests/i/iFlytek/iFlyDocs/2.1.1142/iFlytek.iFlyDocs.locale.en-US.yaml new file mode 100644 index 0000000000000..536f7aff1a4a1 --- /dev/null +++ b/manifests/i/iFlytek/iFlyDocs/2.1.1142/iFlytek.iFlyDocs.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: iFlytek.iFlyDocs +PackageVersion: 2.1.1142 +PackageLocale: en-US +Publisher: 科大讯飞股份有限公司 +PublisherUrl: https://iflydocs.com/ +# PublisherSupportUrl: +PrivacyUrl: https://iflydocs.com/h/agreements-privacy.html +Author: Iflytek Co., Ltd. +PackageName: 讯飞文档 +PackageUrl: https://iflydocs.com/h/download.html +License: Proprietary +LicenseUrl: https://iflydocs.com/h/agreements-user.html +Copyright: Copyright © 2024 Iflytek Co., Ltd. All rights reserved. +# CopyrightUrl: +ShortDescription: A online document that supports multi-user and multi-platform collaborative editing. +Description: iFlyDocs is an online document app developed by iFlytek, which supports simultaneous editing by multiple users on multiple devices. It allows you to view and modify documents on various devices such as desktop, mobile, and tablet anytime and anywhere, greatly improving working efficiency. +# Moniker: +Tags: +- collaborate +- collaboration +- docs +- document +- office +- presentation +- share +- sheet +- slide +- spreadsheet +- sync +- team +# ReleaseNotes: +ReleaseNotesUrl: https://iflydocs.com/h/s/doc/eUDIkLl46y9mPz00 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/i/iFlytek/iFlyDocs/2.1.1142/iFlytek.iFlyDocs.locale.zh-CN.yaml b/manifests/i/iFlytek/iFlyDocs/2.1.1142/iFlytek.iFlyDocs.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3e5fbe87edb72 --- /dev/null +++ b/manifests/i/iFlytek/iFlyDocs/2.1.1142/iFlytek.iFlyDocs.locale.zh-CN.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: iFlytek.iFlyDocs +PackageVersion: 2.1.1142 +PackageLocale: zh-CN +Publisher: 科大讯飞股份有限公司 +PublisherUrl: https://iflydocs.com/ +# PublisherSupportUrl: +PrivacyUrl: https://iflydocs.com/h/agreements-privacy.html +Author: 科大讯飞股份有限公司 +PackageName: 讯飞文档 +PackageUrl: https://iflydocs.com/h/download.html +License: 专有软件 +LicenseUrl: https://iflydocs.com/h/agreements-user.html +Copyright: Copyright © 2024 科大讯飞股份有限公司 版权所有 +# CopyrightUrl: +ShortDescription: 一款支持多人多端协同编辑的在线文档 +Description: 讯飞文档是由科大讯飞出品的一款支持多人多端同时编辑的在线文档 App,可以在电脑端、移动端、平板等多类型设备上随时随地查看和修改文档,轻松提升办公效率。 +# Moniker: +Tags: +- ppt +- 共享 +- 办公 +- 协作 +- 协同 +- 同步 +- 团队 +- 幻灯片 +- 文档 +- 演示文稿 +- 表格 +# ReleaseNotes: +ReleaseNotesUrl: https://iflydocs.com/h/s/doc/eUDIkLl46y9mPz00 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/i/iFlytek/iFlyDocs/2.1.1142/iFlytek.iFlyDocs.yaml b/manifests/i/iFlytek/iFlyDocs/2.1.1142/iFlytek.iFlyDocs.yaml new file mode 100644 index 0000000000000..1f0ef3f71e6cc --- /dev/null +++ b/manifests/i/iFlytek/iFlyDocs/2.1.1142/iFlytek.iFlyDocs.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: iFlytek.iFlyDocs +PackageVersion: 2.1.1142 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/JTL/Wawi/1.8.11.1/JTL.Wawi.installer.yaml b/manifests/j/JTL/Wawi/1.8.11.1/JTL.Wawi.installer.yaml new file mode 100644 index 0000000000000..ceacd15270689 --- /dev/null +++ b/manifests/j/JTL/Wawi/1.8.11.1/JTL.Wawi.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.5.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: JTL.Wawi +PackageVersion: 1.8.11.1 +InstallerType: inno +Scope: machine +Installers: +- Architecture: x86 + InstallerUrl: https://downloads.jtl-software.de/setup-jtl-wawi_1.8.11.1_0130-1140_4fecbded187.exe + InstallerSha256: 180A0A47BA5637F261A2D6EE724E8EB58FCA03743ACB14819818703AA967A8FF +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/JTL/Wawi/1.8.11.1/JTL.Wawi.locale.de-DE.yaml b/manifests/j/JTL/Wawi/1.8.11.1/JTL.Wawi.locale.de-DE.yaml new file mode 100644 index 0000000000000..52226bf804528 --- /dev/null +++ b/manifests/j/JTL/Wawi/1.8.11.1/JTL.Wawi.locale.de-DE.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.5.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: JTL.Wawi +PackageVersion: 1.8.11.1 +PackageLocale: de-DE +Publisher: JTL-Software-GmbH +PackageName: JTL-Wawi +License: Proprietary +ShortDescription: Das kostenlose Warenwirtschaftssystem vereinfacht Ihre Geschäftsprozesse spürbar. Transparenter Warenfluss, bessere Übersicht, volle Kontrolle. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JTL/Wawi/1.8.11.1/JTL.Wawi.locale.en-US.yaml b/manifests/j/JTL/Wawi/1.8.11.1/JTL.Wawi.locale.en-US.yaml new file mode 100644 index 0000000000000..c8e7ed81347ee --- /dev/null +++ b/manifests/j/JTL/Wawi/1.8.11.1/JTL.Wawi.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.5.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: JTL.Wawi +PackageVersion: 1.8.11.1 +PackageLocale: en-US +Publisher: JTL-Software-GmbH +PackageName: JTL-Wawi +License: Proprietary +ShortDescription: The free inventory management system noticeably simplifies your business processes. Transparent flow of goods, better overview, full control. +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JTL/Wawi/1.8.11.1/JTL.Wawi.yaml b/manifests/j/JTL/Wawi/1.8.11.1/JTL.Wawi.yaml new file mode 100644 index 0000000000000..70fe539da327b --- /dev/null +++ b/manifests/j/JTL/Wawi/1.8.11.1/JTL.Wawi.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: JTL.Wawi +PackageVersion: 1.8.11.1 +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1650/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.21.1650/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..a99e1fdf21c67 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1650/Jackett.Jackett.installer.yaml @@ -0,0 +1,20 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.21.1650 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2024-01-30 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.21.1650/Jackett.Installer.Windows.exe + InstallerSha256: 2BC83FAA75B1389947C8C63A46F117FD26BB5098AA2143D3ABE75281F703ADB7 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1650/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.21.1650/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..13c25d427e477 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1650/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.21.1650 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - ui: fix spacing between text and icon in auth warning + - estone: back to https + - dontorrent: change domain *.makeup (#15029) + - apisearch: additional to #15015 +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.21.1650 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1650/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.21.1650/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..208fb6cb1f1bc --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1650/Jackett.Jackett.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.21.1650 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1658/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.21.1658/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..acce942846ae3 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1658/Jackett.Jackett.installer.yaml @@ -0,0 +1,20 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.21.1658 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2024-02-01 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.21.1658/Jackett.Installer.Windows.exe + InstallerSha256: CC3399C85CEE0C9ED0EC4D53BC18D22F13C4AB12737E0FB70ADFA0F478CCD8AD +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1658/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.21.1658/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..9f3c4622506cf --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1658/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.21.1658 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - torrent9: back to home page now notice is gone + - gktorrent: back to home page now notice is gone + - add toonsforme a new private site. resolves #15033 + - aither: mst descr typo + - trellas: switch to POST search #15032 + - Update README.md + - assorted unit3d: bump engine tag + - rudub: new domain + - magico -> trellas +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.21.1658 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1658/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.21.1658/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..88e417fa41627 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1658/Jackett.Jackett.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.21.1658 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1664/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.21.1664/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..4368793119cd1 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1664/Jackett.Jackett.installer.yaml @@ -0,0 +1,20 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.21.1664 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2024-02-02 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.21.1664/Jackett.Installer.Windows.exe + InstallerSha256: FF426429F36346EAB663258BBAB360FC5105DB3B03A5517FD0D9D1476FF51D73 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1664/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.21.1664/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..5861c4f5ef3da --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1664/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.21.1664 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - core: only cleanse pid=[a-z0-9]{32} + - Revert "core: don't cleanse pid" + - core: don't cleanse pid + - trellas: back to GET search plus add submit. #15032 + - oldtoonsworld: new cat + - torrentqq: bump domain + - torrent-pirat: new cat +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.21.1664 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1664/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.21.1664/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..3874551137d94 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1664/Jackett.Jackett.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.21.1664 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/DataGrip/2023.3.4/JetBrains.DataGrip.installer.yaml b/manifests/j/JetBrains/DataGrip/2023.3.4/JetBrains.DataGrip.installer.yaml new file mode 100644 index 0000000000000..f9c58539b45db --- /dev/null +++ b/manifests/j/JetBrains/DataGrip/2023.3.4/JetBrains.DataGrip.installer.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: JetBrains.DataGrip +PackageVersion: 2023.3.4 +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- ipr +- sql +ReleaseDate: 2024-01-31 +AppsAndFeaturesEntries: +- DisplayName: DataGrip 2023.3.4 + DisplayVersion: 233.14015.137 + ProductCode: DataGrip 2023.3.4 +Installers: +- Architecture: x64 + InstallerUrl: https://download.jetbrains.com/datagrip/datagrip-2023.3.4.exe + InstallerSha256: 1506798F5DDF98353187DD43D48FAC624C81B24B538FBB683149F6A7F59B4793 + ProductCode: DataGrip 2023.3.4 +- Architecture: arm64 + InstallerUrl: https://download.jetbrains.com/datagrip/datagrip-2023.3.4-aarch64.exe + InstallerSha256: C8119739AF351DC3F4EE66E91E16C617B24A9CB1D42CE2327D1E8B0912FB15F4 + ProductCode: DataGrip 2023.3.4 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/DataGrip/2023.3.4/JetBrains.DataGrip.locale.en-US.yaml b/manifests/j/JetBrains/DataGrip/2023.3.4/JetBrains.DataGrip.locale.en-US.yaml new file mode 100644 index 0000000000000..59e28af021180 --- /dev/null +++ b/manifests/j/JetBrains/DataGrip/2023.3.4/JetBrains.DataGrip.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: JetBrains.DataGrip +PackageVersion: 2023.3.4 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/ +PublisherSupportUrl: https://www.jetbrains.com/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: DataGrip +PackageUrl: https://www.jetbrains.com/datagrip/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: +ShortDescription: The Cross-Platform IDE for Databases & SQL by JetBrains +Description: A powerful IDE from JetBrains for SQL on macOS, Windows, and Linux. +Moniker: datagrip +Tags: +- database +- db2 +- develop +- development +- ide +- mssql +- mysql +- postgres +- programming +- sql +- sqlite +ReleaseNotes: DataGrip 2023.3.4 is Out! +ReleaseNotesUrl: https://www.jetbrains.com/datagrip/whatsnew/ +PurchaseUrl: https://www.jetbrains.com/datagrip/buy/ +# InstallationNotes: +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://www.jetbrains.com/help/datagrip/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/DataGrip/2023.3.4/JetBrains.DataGrip.locale.zh-CN.yaml b/manifests/j/JetBrains/DataGrip/2023.3.4/JetBrains.DataGrip.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e6530252a3027 --- /dev/null +++ b/manifests/j/JetBrains/DataGrip/2023.3.4/JetBrains.DataGrip.locale.zh-CN.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: JetBrains.DataGrip +PackageVersion: 2023.3.4 +PackageLocale: zh-CN +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: DataGrip +PackageUrl: https://www.jetbrains.com/zh-cn/datagrip/ +License: 专有软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: +ShortDescription: 由 JetBrains 开发的数据库和 SQL 跨平台 IDE +Description: JetBrains 为 macOS、Windows 和 Linux 的 SQL 开发的强大 IDE。 +# Moniker: +Tags: +- db2 +- mssql +- mysql +- postgres +- sql +- sqlite +- 代码 +- 开发 +- 数据库 +- 编程 +- 集成开发环境 +# ReleaseNotes: +ReleaseNotesUrl: https://www.jetbrains.com/zh-cn/datagrip/whatsnew/ +PurchaseUrl: https://www.jetbrains.com/zh-cn/datagrip/buy/ +# InstallationNotes: +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.jetbrains.com/help/datagrip/ +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/DataGrip/2023.3.4/JetBrains.DataGrip.yaml b/manifests/j/JetBrains/DataGrip/2023.3.4/JetBrains.DataGrip.yaml new file mode 100644 index 0000000000000..1e0ea8163b873 --- /dev/null +++ b/manifests/j/JetBrains/DataGrip/2023.3.4/JetBrains.DataGrip.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: JetBrains.DataGrip +PackageVersion: 2023.3.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/DataSpell/2023.3.3/JetBrains.DataSpell.installer.yaml b/manifests/j/JetBrains/DataSpell/2023.3.3/JetBrains.DataSpell.installer.yaml index 85aa043219fd9..790b4384fc027 100644 --- a/manifests/j/JetBrains/DataSpell/2023.3.3/JetBrains.DataSpell.installer.yaml +++ b/manifests/j/JetBrains/DataSpell/2023.3.3/JetBrains.DataSpell.installer.yaml @@ -11,19 +11,19 @@ FileExtensions: - ipr - ipynb - py +ReleaseDate: 2024-01-30 AppsAndFeaturesEntries: - DisplayName: DataSpell 2023.3.3 DisplayVersion: 233.14015.111 ProductCode: DataSpell 2023.3.3 Installers: - Architecture: x64 - InstallerUrl: https://download-cdn.jetbrains.com/python/dataspell-2023.3.3.exe + InstallerUrl: https://download.jetbrains.com/python/dataspell-2023.3.3.exe InstallerSha256: 3E8AB4A6A6A86374F6FEB6B49DEE07BD51A2B584220E3AB7DCF7B9AAC74AB34E ProductCode: DataSpell 2023.3.3 - Architecture: arm64 - InstallerUrl: https://download-cdn.jetbrains.com/python/dataspell-2023.3.3-aarch64.exe + InstallerUrl: https://download.jetbrains.com/python/dataspell-2023.3.3-aarch64.exe InstallerSha256: F28BB8C8786B40B26449395D4B6899D3F25C49C1E490E46091BCD53C276E51C2 ProductCode: DataSpell 2023.3.3 ManifestType: installer ManifestVersion: 1.5.0 -ReleaseDate: 2023-12-21 diff --git a/manifests/j/JetBrains/DataSpell/2023.3.3/JetBrains.DataSpell.locale.en-US.yaml b/manifests/j/JetBrains/DataSpell/2023.3.3/JetBrains.DataSpell.locale.en-US.yaml index 3f75e27215418..6d1c952b54278 100644 --- a/manifests/j/JetBrains/DataSpell/2023.3.3/JetBrains.DataSpell.locale.en-US.yaml +++ b/manifests/j/JetBrains/DataSpell/2023.3.3/JetBrains.DataSpell.locale.en-US.yaml @@ -13,7 +13,8 @@ PackageName: DataSpell PackageUrl: https://www.jetbrains.com/dataspell/ License: Proprietary LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ -Copyright: Copyright © 2000-2023 JetBrains s.r.o. +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: ShortDescription: IDE for data analysts and analytics engineers Description: JetBrains DataSpell is an IDE for data analysis with Jupyter notebooks and SQL-cells, interactive Python scripts, dbt Core, SQL databases support, and low-code features. Moniker: dataspell @@ -28,7 +29,12 @@ Tags: - jupyter - python - visualization +ReleaseNotes: |- + DataSpell 2023.3.3 is out! + If you have any feedback or encounter any issues, please let us know in our issue tracker. +ReleaseNotesUrl: https://www.jetbrains.com/dataspell/whatsnew/ PurchaseUrl: https://www.jetbrains.com/dataspell/buy/ +# InstallationNotes: Documentations: - DocumentLabel: Documentation DocumentUrl: https://www.jetbrains.com/help/dataspell/ diff --git a/manifests/j/JetBrains/DataSpell/2023.3.3/JetBrains.DataSpell.locale.zh-CN.yaml b/manifests/j/JetBrains/DataSpell/2023.3.3/JetBrains.DataSpell.locale.zh-CN.yaml index e87685b26124f..336a236a3e154 100644 --- a/manifests/j/JetBrains/DataSpell/2023.3.3/JetBrains.DataSpell.locale.zh-CN.yaml +++ b/manifests/j/JetBrains/DataSpell/2023.3.3/JetBrains.DataSpell.locale.zh-CN.yaml @@ -13,9 +13,11 @@ PackageName: DataSpell PackageUrl: https://www.jetbrains.com/zh-cn/dataspell/ License: 专有软件 LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ -Copyright: Copyright © 2000-2023 JetBrains s.r.o. +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: ShortDescription: 面向数据分析师和分析工程师的 IDE Description: JetBrains DataSpell 是适用于数据分析的 IDE,具有 Jupyter Notebook 与 SQL 单元、交互式 Python 脚本、dbt Core、SQL 数据库支持和低代码功能。 +# Moniker: Tags: - jupyter - python @@ -25,7 +27,10 @@ Tags: - 数据分析 - 数据挖掘 - 数据科学 +# ReleaseNotes: +ReleaseNotesUrl: https://www.jetbrains.com/zh-cn/dataspell/whatsnew/ PurchaseUrl: https://www.jetbrains.com/zh-cn/dataspell/buy/ +# InstallationNotes: Documentations: - DocumentLabel: 文档 DocumentUrl: https://www.jetbrains.com/help/dataspell/ diff --git a/manifests/j/JetBrains/Gateway/2023.3.3/JetBrains.Gateway.installer.yaml b/manifests/j/JetBrains/Gateway/2023.3.3/JetBrains.Gateway.installer.yaml index 6f726093f16b2..1ecdcdcbf9faf 100644 --- a/manifests/j/JetBrains/Gateway/2023.3.3/JetBrains.Gateway.installer.yaml +++ b/manifests/j/JetBrains/Gateway/2023.3.3/JetBrains.Gateway.installer.yaml @@ -24,4 +24,4 @@ Installers: ProductCode: JetBrains Gateway 2023.3.3 ManifestType: installer ManifestVersion: 1.5.0 -ReleaseDate: 2023-12-21 +ReleaseDate: 2024-01-31 diff --git a/manifests/j/JetBrains/Gateway/2023.3.3/JetBrains.Gateway.locale.en-US.yaml b/manifests/j/JetBrains/Gateway/2023.3.3/JetBrains.Gateway.locale.en-US.yaml index bfe648382b078..be23c0e157cf3 100644 --- a/manifests/j/JetBrains/Gateway/2023.3.3/JetBrains.Gateway.locale.en-US.yaml +++ b/manifests/j/JetBrains/Gateway/2023.3.3/JetBrains.Gateway.locale.en-US.yaml @@ -13,7 +13,7 @@ PackageName: JetBrains Gateway PackageUrl: https://www.jetbrains.com/remote-development/gateway/ License: Proprietary LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ -Copyright: Copyright © 2000-2023 JetBrains s.r.o. +Copyright: Copyright © 2000-2024 JetBrains s.r.o. ShortDescription: Your single entry point to all remote development environments Moniker: jetbrains-gateway Tags: @@ -22,6 +22,16 @@ Tags: - remote - remotedev - ssh +ReleaseNotes: |- + Gateway 2023.3.3 is out with the following improvements: + - New AI actions have become available: Documentation Writing, AI Assistant Buttons, Test Generation (GTW-7356, GTW-6513, RDCT-928). + - It is now possible to open a new project within the IDE frontend: GTW-4799. + - The Java development experience has been improved with the transition of typing assistance to the IDE frontend: GTW-4832. + - Support for Markdown is now available on the IDE frontend, allowing for a more user-friendly editing experience: RDCT-220. + - The IDE frontend now extracts from locally installed IDEs of the same version, saving valuable time and resources: RDCT-163. + - Fixed: Cannot use compact mode of new UI (GTW-6121). + For more details, please refer to the release notes. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/GTW-A-112/Remote-Development-2023.3.3-233.14015.106-build-Release-Notes Documentations: - DocumentLabel: Documentation DocumentUrl: https://www.jetbrains.com/help/idea/remote-development-a.html diff --git a/manifests/j/JetBrains/Gateway/2023.3.3/JetBrains.Gateway.locale.zh-CN.yaml b/manifests/j/JetBrains/Gateway/2023.3.3/JetBrains.Gateway.locale.zh-CN.yaml index 710cd5358209e..a52306d9e6cf4 100644 --- a/manifests/j/JetBrains/Gateway/2023.3.3/JetBrains.Gateway.locale.zh-CN.yaml +++ b/manifests/j/JetBrains/Gateway/2023.3.3/JetBrains.Gateway.locale.zh-CN.yaml @@ -13,7 +13,7 @@ PackageName: JetBrains Gateway PackageUrl: https://www.jetbrains.com/zh-cn/remote-development/gateway/ License: 专有软件 LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ -Copyright: Copyright © 2000-2023 JetBrains s.r.o. +Copyright: Copyright © 2000-2024 JetBrains s.r.o. ShortDescription: 所有远程开发环境的单一入口点 Tags: - gateway @@ -21,6 +21,7 @@ Tags: - ssh - 远程 - 远程开发 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/GTW-A-112/Remote-Development-2023.3.3-233.14015.106-build-Release-Notes Documentations: - DocumentLabel: 文档 DocumentUrl: https://www.jetbrains.com/help/idea/remote-development-a.html diff --git a/manifests/j/JetBrains/QodanaCLI/2023.3.2/JetBrains.QodanaCLI.installer.yaml b/manifests/j/JetBrains/QodanaCLI/2023.3.2/JetBrains.QodanaCLI.installer.yaml new file mode 100644 index 0000000000000..9a66a7a358cfd --- /dev/null +++ b/manifests/j/JetBrains/QodanaCLI/2023.3.2/JetBrains.QodanaCLI.installer.yaml @@ -0,0 +1,21 @@ +# Created with Komac v1.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: JetBrains.QodanaCLI +PackageVersion: 2023.3.2 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: .\qodana.exe + PortableCommandAlias: qodana +ReleaseDate: 2024-02-01 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/JetBrains/qodana-cli/releases/download/v2023.3.2/qodana_windows_x86_64.zip + InstallerSha256: 50768FA57F0E6603D44DC2E505B59AFD3EE3064740443443AB5C747A973D75D6 +- Architecture: arm64 + InstallerUrl: https://github.com/JetBrains/qodana-cli/releases/download/v2023.3.2/qodana_windows_arm64.zip + InstallerSha256: EEC404334DEEA68E6F0EFFFC12E6BD0FF516C1AA9BDD327BB4EF1E0B4D415BAB +ManifestType: installer +ManifestVersion: 1.4.0 diff --git a/manifests/j/JetBrains/QodanaCLI/2023.3.2/JetBrains.QodanaCLI.locale.en-US.yaml b/manifests/j/JetBrains/QodanaCLI/2023.3.2/JetBrains.QodanaCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..d549e337c6dae --- /dev/null +++ b/manifests/j/JetBrains/QodanaCLI/2023.3.2/JetBrains.QodanaCLI.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with Komac v1.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: JetBrains.QodanaCLI +PackageVersion: 2023.3.2 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com +PublisherSupportUrl: https://www.jetbrains.com/help/qodana/getting-started.html +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy +Author: JetBrains s.r.o. +PackageName: Qodana CLI +PackageUrl: https://www.jetbrains.com/qodana +License: APACHE-2.0 +LicenseUrl: https://github.com/JetBrains/qodana-cli/blob/main/LICENSE +Copyright: Copyright © JetBrains s.r.o. +ShortDescription: Qodana is a simple cross-platform command-line tool to run Qodana linters anywhere with minimum effort required. +Moniker: qodana +Tags: +- jetbrains +- qodana +- code-quality +- code-scanning +ReleaseNotes: |- + Changelog + - 1326824 :bug: Fix GitHub branch extraction for pull requests + - 9f0c4ae :bug: Fixed url building to endpoint (QD-7958) + - 20be11c :sparkles: Introduce analysis timeout option (QD-8156) + - 6b19967 :sparkles: [QD-8082] Set QODANA_REPO_URL variable + - 9db9f51 :test_tube: Added test for staging cloud (QD-7958) + - c6398e9 :zap: Set up QODANA_PROJECT_ID_HASH if token is provided (QD-8125 ) +ReleaseNotesUrl: https://github.com/JetBrains/qodana-cli/releases/tag/v2023.3.2 +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/j/JetBrains/QodanaCLI/2023.3.2/JetBrains.QodanaCLI.yaml b/manifests/j/JetBrains/QodanaCLI/2023.3.2/JetBrains.QodanaCLI.yaml new file mode 100644 index 0000000000000..22b297aff6bc9 --- /dev/null +++ b/manifests/j/JetBrains/QodanaCLI/2023.3.2/JetBrains.QodanaCLI.yaml @@ -0,0 +1,8 @@ +# Created with Komac v1.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: JetBrains.QodanaCLI +PackageVersion: 2023.3.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/j/JetBrains/RubyMine/EAP/241.10840.7/JetBrains.RubyMine.EAP.installer.yaml b/manifests/j/JetBrains/RubyMine/EAP/241.10840.7/JetBrains.RubyMine.EAP.installer.yaml new file mode 100644 index 0000000000000..9bfda88a397bf --- /dev/null +++ b/manifests/j/JetBrains/RubyMine/EAP/241.10840.7/JetBrains.RubyMine.EAP.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: JetBrains.RubyMine.EAP +PackageVersion: 241.10840.7 +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- ipr +ReleaseDate: 2024-02-01 +AppsAndFeaturesEntries: +- DisplayName: RubyMine 241.10840.7 + ProductCode: RubyMine 241.10840.7 +Installers: +- Architecture: x64 + InstallerUrl: https://download.jetbrains.com/ruby/RubyMine-241.10840.7.exe + InstallerSha256: 2F6F663A2401FC6ED32C171A26D756DE4106162A2FBB8A893B17F41C63D02064 + ProductCode: RubyMine 241.10840.7 +- Architecture: arm64 + InstallerUrl: https://download.jetbrains.com/ruby/RubyMine-241.10840.7-aarch64.exe + InstallerSha256: D03656B6874C5C439292685951B16F7AB1C8659F39F6DFF3A19690CE8EED4206 + ProductCode: RubyMine 241.10840.7 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/RubyMine/EAP/241.10840.7/JetBrains.RubyMine.EAP.locale.en-US.yaml b/manifests/j/JetBrains/RubyMine/EAP/241.10840.7/JetBrains.RubyMine.EAP.locale.en-US.yaml new file mode 100644 index 0000000000000..d8fd060f055a2 --- /dev/null +++ b/manifests/j/JetBrains/RubyMine/EAP/241.10840.7/JetBrains.RubyMine.EAP.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: JetBrains.RubyMine.EAP +PackageVersion: 241.10840.7 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/ +PublisherSupportUrl: https://www.jetbrains.com/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: RubyMine (EAP) +PackageUrl: https://www.jetbrains.com/ruby/nextversion/ +License: Freeware +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user_eap/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: +ShortDescription: Empowering Ruby Developers +Description: Cross-platform Ruby on Rails IDE with first-class support for Ruby-related technologies. +# Moniker: +Tags: +- code +- coding +- develop +- development +- ide +- programming +- rails +- ror +- ruby +- ruby-on-rails +ReleaseNotes: |- + The RubyMine 2024.1 EAP 2 is here! + Here are the highlights: + - Implemented ruby correctness checker for the full line completion: RUBY-32346 + - EditorTabTitleProvider for better generation of display names for files: IDEA-342444 + - YAML conversion between inline and expanded format: IDEA-114382 + - Customizable Compact Mode: IDEA-330628 + - Ability to scroll past the end of the list of items/files in the Project View: IDEA-342170 + - Ability to show code-review branch related changes in Git log toolwindow: IDEA-343178 + - Added action to show usages in Vue, Svelte, Astro components: WEB-63640 + - Settings to Control Output when using refactor/extract method: WEB-26073 + - Deprecated items are marked as strikethrough text in GraphQL: WEB-65597 + Learn more in release notes. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/RUBY-A-220365141 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Learn RubyMine + DocumentUrl: https://www.jetbrains.com/ruby/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/RubyMine/EAP/241.10840.7/JetBrains.RubyMine.EAP.locale.zh-CN.yaml b/manifests/j/JetBrains/RubyMine/EAP/241.10840.7/JetBrains.RubyMine.EAP.locale.zh-CN.yaml new file mode 100644 index 0000000000000..113dec2e26e73 --- /dev/null +++ b/manifests/j/JetBrains/RubyMine/EAP/241.10840.7/JetBrains.RubyMine.EAP.locale.zh-CN.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: JetBrains.RubyMine.EAP +PackageVersion: 241.10840.7 +PackageLocale: zh-CN +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: RubyMine(抢先体验计划) +PackageUrl: https://www.jetbrains.com/zh-cn/ruby/nextversion/ +License: 免费软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user_eap/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: +ShortDescription: 为 Ruby 开发者赋能 +Description: 跨平台 Ruby on Rails IDE,对 Ruby 相关技术提供了出色支持。 +# Moniker: +Tags: +- rails +- ror +- ruby +- ruby-on-rails +- 代码 +- 开发 +- 编程 +- 集成开发环境 +# ReleaseNotes: +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/RUBY-A-220365141 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 学习 RubyMine + DocumentUrl: https://www.jetbrains.com/zh-cn/ruby/learn/ +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/RubyMine/EAP/241.10840.7/JetBrains.RubyMine.EAP.yaml b/manifests/j/JetBrains/RubyMine/EAP/241.10840.7/JetBrains.RubyMine.EAP.yaml new file mode 100644 index 0000000000000..7a277d2f4c3ac --- /dev/null +++ b/manifests/j/JetBrains/RubyMine/EAP/241.10840.7/JetBrains.RubyMine.EAP.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: JetBrains.RubyMine.EAP +PackageVersion: 241.10840.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/TeamCity/2023.11.3/JetBrains.TeamCity.installer.yaml b/manifests/j/JetBrains/TeamCity/2023.11.3/JetBrains.TeamCity.installer.yaml new file mode 100644 index 0000000000000..7e07766fe45e5 --- /dev/null +++ b/manifests/j/JetBrains/TeamCity/2023.11.3/JetBrains.TeamCity.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: JetBrains.TeamCity +PackageVersion: 2023.11.3 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +ReleaseDate: 2024-01-30 +AppsAndFeaturesEntries: +- DisplayVersion: Build 147512 + ProductCode: JetBrains TeamCity +Installers: +- Architecture: x64 + InstallerUrl: https://download.jetbrains.com/teamcity/TeamCity-2023.11.3.exe + InstallerSha256: A20C5AADFCCBC8D410F4CCFC01552F9BD82B947CD1BF64D7CB0B0B385E3AF96B + ProductCode: JetBrains TeamCity +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/TeamCity/2023.11.3/JetBrains.TeamCity.locale.en-US.yaml b/manifests/j/JetBrains/TeamCity/2023.11.3/JetBrains.TeamCity.locale.en-US.yaml new file mode 100644 index 0000000000000..9c1eec798aa14 --- /dev/null +++ b/manifests/j/JetBrains/TeamCity/2023.11.3/JetBrains.TeamCity.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: JetBrains.TeamCity +PackageVersion: 2023.11.3 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/ +PublisherSupportUrl: https://www.jetbrains.com/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: JetBrains TeamCity +PackageUrl: https://www.jetbrains.com/teamcity/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: +ShortDescription: Powerful continuous integration for DevOps-centric teams +Description: The powerful Continuous Integration and Deployment tool for Developers and DevOps Engineers. +Moniker: teamcity +Tags: +- cd +- ci +- develop +- development +- devops +# ReleaseNotes: +ReleaseNotesUrl: https://www.jetbrains.com/help/teamcity/2023.11/teamcity-2023-11-3-release-notes.html +PurchaseUrl: https://www.jetbrains.com/teamcity/buy/ +# InstallationNotes: +Documentations: +- DocumentLabel: Learn TeamCity + DocumentUrl: https://www.jetbrains.com/teamcity/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/TeamCity/2023.11.3/JetBrains.TeamCity.locale.zh-CN.yaml b/manifests/j/JetBrains/TeamCity/2023.11.3/JetBrains.TeamCity.locale.zh-CN.yaml new file mode 100644 index 0000000000000..393c49534fbe4 --- /dev/null +++ b/manifests/j/JetBrains/TeamCity/2023.11.3/JetBrains.TeamCity.locale.zh-CN.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: JetBrains.TeamCity +PackageVersion: 2023.11.3 +PackageLocale: zh-CN +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: JetBrains TeamCity +PackageUrl: https://www.jetbrains.com/zh-cn/teamcity/ +License: 专有软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: +ShortDescription: 面向以 DevOps 为中心的团队的强大持续集成 +Description: 面向开发者和 DevOps 工程师的强大持续集成和部署工具。 +# Moniker: +Tags: +- devops +- 开发 +- 持续交付 +- 持续部署 +- 持续集成 +# ReleaseNotes: +ReleaseNotesUrl: https://www.jetbrains.com/help/teamcity/2023.11/teamcity-2023-11-3-release-notes.html +PurchaseUrl: https://www.jetbrains.com/zh-cn/teamcity/buy/ +# InstallationNotes: +Documentations: +- DocumentLabel: 学习 TeamCity + DocumentUrl: https://www.jetbrains.com/zh-cn/teamcity/learn/ +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/TeamCity/2023.11.3/JetBrains.TeamCity.yaml b/manifests/j/JetBrains/TeamCity/2023.11.3/JetBrains.TeamCity.yaml new file mode 100644 index 0000000000000..78d10bddda0db --- /dev/null +++ b/manifests/j/JetBrains/TeamCity/2023.11.3/JetBrains.TeamCity.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: JetBrains.TeamCity +PackageVersion: 2023.11.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/Toolbox/2.2.0.19611/JetBrains.Toolbox.installer.yaml b/manifests/j/JetBrains/Toolbox/2.2.0.19611/JetBrains.Toolbox.installer.yaml new file mode 100644 index 0000000000000..743582e699cf3 --- /dev/null +++ b/manifests/j/JetBrains/Toolbox/2.2.0.19611/JetBrains.Toolbox.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: JetBrains.Toolbox +PackageVersion: 2.2.0.19611 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +Protocols: +- jetbrains +ReleaseDate: 2024-02-01 +Installers: +- Architecture: x64 + InstallerUrl: https://download.jetbrains.com/toolbox/jetbrains-toolbox-2.2.0.19611.exe + InstallerSha256: 42E92A0BE86957436824F3D7C060097495628D82E4FE45FDB7DFDE1B4B5FD71D + ProductCode: Toolbox +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/Toolbox/2.2.0.19611/JetBrains.Toolbox.locale.en-US.yaml b/manifests/j/JetBrains/Toolbox/2.2.0.19611/JetBrains.Toolbox.locale.en-US.yaml new file mode 100644 index 0000000000000..8db4403dbbf72 --- /dev/null +++ b/manifests/j/JetBrains/Toolbox/2.2.0.19611/JetBrains.Toolbox.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: JetBrains.Toolbox +PackageVersion: 2.2.0.19611 +PackageLocale: en-US +Publisher: JetBrains +PublisherUrl: https://www.jetbrains.com/ +PublisherSupportUrl: https://www.jetbrains.com/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: JetBrains Toolbox +PackageUrl: https://www.jetbrains.com/toolbox-app/ +License: Freeware +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: +ShortDescription: Manage your IDEs the easy way +Description: Open any of your projects in any of the IDEs with one click. +Moniker: jetbrains-toolbox +Tags: +- jetbrains +ReleaseNotes: |- + Toolbox App 2.2 comes with several improvements: + - Support for Fleet projects [TBX-8546] and Visual Studio projects. [TBX-1550] + - Option to disable Start menu shortcut creation on Windows, both for the Toolbox App and for your installed tools. [TBX-3149] + Learn about these and other improvements in the release blog post. +ReleaseNotesUrl: https://youtrack.jetbrains.com/releaseNotes/TBX?q=Fix%20versions:%202.2%20%23Resolved%20-Duplicate%20-Answered&title=Toolbox%20App%202.2%20Release%20Notes +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: FAQ & Shortcuts + DocumentUrl: https://www.jetbrains.com/toolbox-app/faq/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/Toolbox/2.2.0.19611/JetBrains.Toolbox.locale.zh-CN.yaml b/manifests/j/JetBrains/Toolbox/2.2.0.19611/JetBrains.Toolbox.locale.zh-CN.yaml new file mode 100644 index 0000000000000..575fff7e32235 --- /dev/null +++ b/manifests/j/JetBrains/Toolbox/2.2.0.19611/JetBrains.Toolbox.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: JetBrains.Toolbox +PackageVersion: 2.2.0.19611 +PackageLocale: zh-CN +Publisher: JetBrains +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: JetBrains Toolbox +PackageUrl: https://www.jetbrains.com/zh-cn/toolbox-app/ +License: 免费软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: +ShortDescription: 轻松管理您的 IDE +Description: 一键打开任何 IDE 中的任意项目。 +# Moniker: +Tags: +- jetbrains +# ReleaseNotes: +ReleaseNotesUrl: https://youtrack.jetbrains.com/releaseNotes/TBX?q=Fix%20versions:%202.2%20%23Resolved%20-Duplicate%20-Answered&title=Toolbox%20App%202.2%20Release%20Notes +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 常见问题解答和快捷键 + DocumentUrl: https://www.jetbrains.com/zh-cn/toolbox-app/faq/ +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/Toolbox/2.2.0.19611/JetBrains.Toolbox.yaml b/manifests/j/JetBrains/Toolbox/2.2.0.19611/JetBrains.Toolbox.yaml new file mode 100644 index 0000000000000..18dfe2b53a454 --- /dev/null +++ b/manifests/j/JetBrains/Toolbox/2.2.0.19611/JetBrains.Toolbox.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: JetBrains.Toolbox +PackageVersion: 2.2.0.19611 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/WebStorm/EAP/241.9959.35/JetBrains.WebStorm.EAP.installer.yaml b/manifests/j/JetBrains/WebStorm/EAP/241.9959.35/JetBrains.WebStorm.EAP.installer.yaml new file mode 100644 index 0000000000000..dbec389e23662 --- /dev/null +++ b/manifests/j/JetBrains/WebStorm/EAP/241.9959.35/JetBrains.WebStorm.EAP.installer.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: JetBrains.WebStorm.EAP +PackageVersion: 241.9959.35 +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- css +- html +- ipr +- js +- json +ReleaseDate: 2024-01-29 +AppsAndFeaturesEntries: +- DisplayName: WebStorm 241.9959.35 + ProductCode: WebStorm 241.9959.35 +Installers: +- Architecture: x64 + InstallerUrl: https://download.jetbrains.com/webstorm/WebStorm-241.9959.35.exe + InstallerSha256: 6C70C3D0C89108A4810468F49C743F59E6CC0838B6E520CD9ECFF9CF418CAC45 + ProductCode: WebStorm 241.9959.35 +- Architecture: arm64 + InstallerUrl: https://download.jetbrains.com/webstorm/WebStorm-241.9959.35-aarch64.exe + InstallerSha256: C455485D221222347AE8DA49E9D32738CACA0D1A8C191BC63BA22A39E9740946 + ProductCode: WebStorm 241.9959.35 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/WebStorm/EAP/241.9959.35/JetBrains.WebStorm.EAP.locale.en-US.yaml b/manifests/j/JetBrains/WebStorm/EAP/241.9959.35/JetBrains.WebStorm.EAP.locale.en-US.yaml new file mode 100644 index 0000000000000..7e25788c4f693 --- /dev/null +++ b/manifests/j/JetBrains/WebStorm/EAP/241.9959.35/JetBrains.WebStorm.EAP.locale.en-US.yaml @@ -0,0 +1,51 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: JetBrains.WebStorm.EAP +PackageVersion: 241.9959.35 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/ +PublisherSupportUrl: https://www.jetbrains.com/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: WebStorm (EAP) +PackageUrl: https://www.jetbrains.com/webstorm/nextversion/ +License: Freeware +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user_eap/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: +ShortDescription: The smartest JavaScript IDE +Description: WebStorm is an integrated development environment for JavaScript and related technologies. Like other JetBrains IDEs, it makes your development experience more enjoyable, automating routine work and helping you handle complex tasks with ease. +# Moniker: +Tags: +- code +- coding +- css +- develop +- development +- htm +- html +- ide +- javascript +- js +- programming +- webpage +ReleaseNotes: |- + What's new: + - We've added a revamped Terminal tool window. + - We have added the option to create an arrow function when using Extract Method refactoring (WEB-26073). + - We have reworked the Structure view for .jsx, and it now shows hooks and .jsx tags in it (WEB-39957). + - We've added a new convenient way to show usages for Vue, Svelte and Astro components (WEB-63640). + - We've fixed issues with completion from the TypeScript service not working in quotes in .jsx (WEB-62727). + - We've fixed the issue with Svelte LSP crashing on macOS with a style lang attribute present (WEB-63876). + - We've unbundled AngularJS support from the IDE (WEB-64986). + For more details, please see the release notes. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/WEB-A-233538463/ +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Learn WebStorm + DocumentUrl: https://www.jetbrains.com/webstorm/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/WebStorm/EAP/241.9959.35/JetBrains.WebStorm.EAP.locale.zh-CN.yaml b/manifests/j/JetBrains/WebStorm/EAP/241.9959.35/JetBrains.WebStorm.EAP.locale.zh-CN.yaml new file mode 100644 index 0000000000000..934cd32ea0922 --- /dev/null +++ b/manifests/j/JetBrains/WebStorm/EAP/241.9959.35/JetBrains.WebStorm.EAP.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: JetBrains.WebStorm.EAP +PackageVersion: 241.9959.35 +PackageLocale: zh-CN +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: WebStorm(抢先体验计划) +PackageUrl: https://www.jetbrains.com/zh-cn/webstorm/nextversion/ +License: 免费软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user_eap/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: +ShortDescription: 最智能的 JavaScript IDE +Description: WebStorm 是一个适用于 JavaScript 和相关技术的集成开发环境。类似于其他 JetBrains IDE,它也会使您的开发体验更有趣,自动执行常规工作并帮助您轻松处理复杂任务。 +# Moniker: +Tags: +- css +- htm +- html +- javascript +- js +- 代码 +- 开发 +- 编程 +- 网页 +- 集成开发环境 +# ReleaseNotes: +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/WEB-A-233538463/ +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 学习 WebStorm + DocumentUrl: https://www.jetbrains.com/zh-cn/webstorm/learn/ +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/WebStorm/EAP/241.9959.35/JetBrains.WebStorm.EAP.yaml b/manifests/j/JetBrains/WebStorm/EAP/241.9959.35/JetBrains.WebStorm.EAP.yaml new file mode 100644 index 0000000000000..c05f5b04c449f --- /dev/null +++ b/manifests/j/JetBrains/WebStorm/EAP/241.9959.35/JetBrains.WebStorm.EAP.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: JetBrains.WebStorm.EAP +PackageVersion: 241.9959.35 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/Writerside/EAP/233.14389/JetBrains.Writerside.EAP.installer.yaml b/manifests/j/JetBrains/Writerside/EAP/233.14389/JetBrains.Writerside.EAP.installer.yaml new file mode 100644 index 0000000000000..a33e1d626edd5 --- /dev/null +++ b/manifests/j/JetBrains/Writerside/EAP/233.14389/JetBrains.Writerside.EAP.installer.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: JetBrains.Writerside.EAP +PackageVersion: "233.14389" +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- ipr +- topic +- tree +ReleaseDate: 2024-02-01 +AppsAndFeaturesEntries: +- DisplayName: Writerside 233.14389 + ProductCode: Writerside 233.14389 +Installers: +- Architecture: x64 + InstallerUrl: https://download.jetbrains.com/writerside/writerside-233.14389.exe + InstallerSha256: 4CECAC2D51761AE942A72079D9D8442C7956ACE28C69E9CE50FFB25D74EE5296 + ProductCode: Writerside 233.14389 +- Architecture: arm64 + InstallerUrl: https://download.jetbrains.com/writerside/writerside-233.14389-aarch64.exe + InstallerSha256: ABE5EDA852B260CEE49AF445C2CE9219CAB9B26C773F2AB18418D56E3E6702E1 + ProductCode: Writerside 233.14389 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/Writerside/EAP/233.14389/JetBrains.Writerside.EAP.locale.en-US.yaml b/manifests/j/JetBrains/Writerside/EAP/233.14389/JetBrains.Writerside.EAP.locale.en-US.yaml new file mode 100644 index 0000000000000..3888153407578 --- /dev/null +++ b/manifests/j/JetBrains/Writerside/EAP/233.14389/JetBrains.Writerside.EAP.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: JetBrains.Writerside.EAP +PackageVersion: "233.14389" +PackageLocale: en-US +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/ +PublisherSupportUrl: https://www.jetbrains.com/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: Writerside (EAP) +PackageUrl: https://www.jetbrains.com/writerside/ +License: Freeware +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user_eap/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: +ShortDescription: A new technical writing environment from JetBrains +Description: Writerside is a new technical authoring and publishing environment from JetBrains. +Moniker: writerside +Tags: +- editor +- markdown +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://www.jetbrains.com/help/writerside/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/Writerside/EAP/233.14389/JetBrains.Writerside.EAP.locale.zh-CN.yaml b/manifests/j/JetBrains/Writerside/EAP/233.14389/JetBrains.Writerside.EAP.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cc0803a5e624e --- /dev/null +++ b/manifests/j/JetBrains/Writerside/EAP/233.14389/JetBrains.Writerside.EAP.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: JetBrains.Writerside.EAP +PackageVersion: "233.14389" +PackageLocale: zh-CN +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: Writerside(抢先体验计划) +PackageUrl: https://www.jetbrains.com/zh-cn/writerside/ +License: 免费软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user_eap/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +# CopyrightUrl: +ShortDescription: JetBrains 的全新技术写作环境 +Description: Writerside 是 JetBrains 的全新技术创作和发布环境。 +# Moniker: +Tags: +- markdown +- 编辑器 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.jetbrains.com/help/writerside/ +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JetBrains/Writerside/EAP/233.14389/JetBrains.Writerside.EAP.yaml b/manifests/j/JetBrains/Writerside/EAP/233.14389/JetBrains.Writerside.EAP.yaml new file mode 100644 index 0000000000000..7a7546952e3c4 --- /dev/null +++ b/manifests/j/JetBrains/Writerside/EAP/233.14389/JetBrains.Writerside.EAP.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: JetBrains.Writerside.EAP +PackageVersion: "233.14389" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/JinweiZhiguang/MasterGo/1.7.7/JinweiZhiguang.MasterGo.installer.yaml b/manifests/j/JinweiZhiguang/MasterGo/1.7.7/JinweiZhiguang.MasterGo.installer.yaml new file mode 100644 index 0000000000000..6caf6a4c37660 --- /dev/null +++ b/manifests/j/JinweiZhiguang/MasterGo/1.7.7/JinweiZhiguang.MasterGo.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: JinweiZhiguang.MasterGo +PackageVersion: 1.7.7 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ReleaseDate: 2024-01-30 +Installers: +- Architecture: x64 + InstallerUrl: https://static-nc.mastergo.com/plugins/desktop/windows/MasterGo-1.7.7.exe + InstallerSha256: 059D71188FA104BEFD921F7695E4B0EECEEED2F97800BA1114490E326409E6FC + ProductCode: com.master.electron +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/JinweiZhiguang/MasterGo/1.7.7/JinweiZhiguang.MasterGo.locale.en-US.yaml b/manifests/j/JinweiZhiguang/MasterGo/1.7.7/JinweiZhiguang.MasterGo.locale.en-US.yaml new file mode 100644 index 0000000000000..c763cb2b7de88 --- /dev/null +++ b/manifests/j/JinweiZhiguang/MasterGo/1.7.7/JinweiZhiguang.MasterGo.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: JinweiZhiguang.MasterGo +PackageVersion: 1.7.7 +PackageLocale: en-US +Publisher: Beijing JinweiZhiguang Information Technology +PublisherUrl: https://mastergo.com/ +PublisherSupportUrl: https://mastergo.com/help/ +PrivacyUrl: https://mastergo.com/privacyPolicy +Author: Beijing Jinwei Zhiguang Information Technology Co., Ltd. +PackageName: MasterGo +PackageUrl: https://mastergo.com/resource +License: Proprietary +LicenseUrl: https://mastergo.com/serviceAgreement +Copyright: Copyright © 2024 Beijing Jinwei Zhiguang Information Technology Co., Ltd. +# CopyrightUrl: +ShortDescription: Professional UI/UX design tool for teams +Description: MasterGo is a one-stop online product design tool for team collaboration, which supports multi-user real-time collaboration and features online product design, prototype building and design, web development design, interaction design, etc. It helps build a design system quickly and provides product designers, interaction designers, engineers and product managers with a simpler and more flexible working mode. +# Moniker: +Tags: +- design +- diagram +- flow +- flowchart +- interface +- mockup +- prototype +- specification +- ui +- user-experience +- user-interface +- ux +- wireframe +# ReleaseNotes: +ReleaseNotesUrl: https://mastergo.com/updateRecord +PurchaseUrl: https://mastergo.com/pricing +# InstallationNotes: +Documentations: +- DocumentLabel: Tutorials + DocumentUrl: https://mastergo.com/tutorials +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JinweiZhiguang/MasterGo/1.7.7/JinweiZhiguang.MasterGo.locale.zh-CN.yaml b/manifests/j/JinweiZhiguang/MasterGo/1.7.7/JinweiZhiguang.MasterGo.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6870ff239590c --- /dev/null +++ b/manifests/j/JinweiZhiguang/MasterGo/1.7.7/JinweiZhiguang.MasterGo.locale.zh-CN.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: JinweiZhiguang.MasterGo +PackageVersion: 1.7.7 +PackageLocale: zh-CN +Publisher: Beijing JinweiZhiguang Information Technology +PublisherUrl: https://mastergo.com/ +PublisherSupportUrl: https://mastergo.com/help/ +PrivacyUrl: https://mastergo.com/privacyPolicy +Author: 北京尽微致广信息技术有限公司 +PackageName: MasterGo +PackageUrl: https://mastergo.com/resource +License: 专有软件 +LicenseUrl: https://mastergo.com/serviceAgreement +Copyright: Copyright © 2024 北京尽微致广信息技术有限公司 +# CopyrightUrl: +ShortDescription: 面向团队的专业 UI/UX 设计工具 +Description: MasterGo 是为团队协作而生的一站式在线产品设计工具,提供在线产品设计、原型图制作设计、网页开发设计、产品交互设计等功能,支持多人实时协作,可快速搭建设计系统,为产品设计师、交互设计师,工程师以及产品经理提供更简单灵活的工作模式。 +# Moniker: +Tags: +- 人机交互 +- 原型 +- 图表 +- 模型 +- 流程 +- 流程图 +- 用户界面 +- 界面 +- 线框图 +- 规格 +- 设计 +# ReleaseNotes: +ReleaseNotesUrl: https://mastergo.com/updateRecord +PurchaseUrl: https://mastergo.com/pricing +# InstallationNotes: +Documentations: +- DocumentLabel: 视频教程 + DocumentUrl: https://mastergo.com/tutorials +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JinweiZhiguang/MasterGo/1.7.7/JinweiZhiguang.MasterGo.yaml b/manifests/j/JinweiZhiguang/MasterGo/1.7.7/JinweiZhiguang.MasterGo.yaml new file mode 100644 index 0000000000000..10b4720ec688c --- /dev/null +++ b/manifests/j/JinweiZhiguang/MasterGo/1.7.7/JinweiZhiguang.MasterGo.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: JinweiZhiguang.MasterGo +PackageVersion: 1.7.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/JonatanHeyman/Heynote/1.6.0/JonatanHeyman.Heynote.installer.yaml b/manifests/j/JonatanHeyman/Heynote/1.6.0/JonatanHeyman.Heynote.installer.yaml new file mode 100644 index 0000000000000..abde091102e1e --- /dev/null +++ b/manifests/j/JonatanHeyman/Heynote/1.6.0/JonatanHeyman.Heynote.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: JonatanHeyman.Heynote +PackageVersion: 1.6.0 +InstallerType: nullsoft +Installers: +- InstallerUrl: https://github.com/heyman/heynote/releases/download/v1.6.0/Heynote_1.6.0.exe + Architecture: x64 + InstallerSha256: 01D2B19AD14573F1AEEFB1CF3D734B7A92B6682516FC294E731D19579E0610BA +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/JonatanHeyman/Heynote/1.6.0/JonatanHeyman.Heynote.locale.en-US.yaml b/manifests/j/JonatanHeyman/Heynote/1.6.0/JonatanHeyman.Heynote.locale.en-US.yaml new file mode 100644 index 0000000000000..72280321d175c --- /dev/null +++ b/manifests/j/JonatanHeyman/Heynote/1.6.0/JonatanHeyman.Heynote.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: JonatanHeyman.Heynote +PackageVersion: 1.6.0 +PackageLocale: en-US +Publisher: Jonatan Heyman +PackageName: Heynote +License: '"Commons Clause" License Condition 1.0' +Copyright: Copyright © 2024 Jonatan Heyman +ShortDescription: A dedicated scratch pad +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JonatanHeyman/Heynote/1.6.0/JonatanHeyman.Heynote.yaml b/manifests/j/JonatanHeyman/Heynote/1.6.0/JonatanHeyman.Heynote.yaml new file mode 100644 index 0000000000000..f30d64aaaac62 --- /dev/null +++ b/manifests/j/JonatanHeyman/Heynote/1.6.0/JonatanHeyman.Heynote.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: JonatanHeyman.Heynote +PackageVersion: 1.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/junegunn/fzf/0.46.1/junegunn.fzf.installer.yaml b/manifests/j/junegunn/fzf/0.46.1/junegunn.fzf.installer.yaml new file mode 100644 index 0000000000000..527894a502ff9 --- /dev/null +++ b/manifests/j/junegunn/fzf/0.46.1/junegunn.fzf.installer.yaml @@ -0,0 +1,23 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: junegunn.fzf +PackageVersion: 0.46.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: fzf.exe + PortableCommandAlias: fzf +ReleaseDate: 2024-02-01 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/junegunn/fzf/releases/download/0.46.1/fzf-0.46.1-windows_amd64.zip + InstallerSha256: 5615E671645A59395AB4A637AC3DCDDBDC288A47E2A32E51FEE01C93EFAED2D3 +- Architecture: arm + InstallerUrl: https://github.com/junegunn/fzf/releases/download/0.46.1/fzf-0.46.1-windows_armv7.zip + InstallerSha256: 7E5030D72EA69F1C28C8B1ECE8164D23B0A369A79E3038C9A968F59A88FFE3D3 +- Architecture: arm64 + InstallerUrl: https://github.com/junegunn/fzf/releases/download/0.46.1/fzf-0.46.1-windows_arm64.zip + InstallerSha256: 130CD169F1521E0F462B7CDF5C0595F0D85824F7ACACCD224813581939DC4CA6 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/junegunn/fzf/0.46.1/junegunn.fzf.locale.en-US.yaml b/manifests/j/junegunn/fzf/0.46.1/junegunn.fzf.locale.en-US.yaml new file mode 100644 index 0000000000000..1498917cbacf3 --- /dev/null +++ b/manifests/j/junegunn/fzf/0.46.1/junegunn.fzf.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: junegunn.fzf +PackageVersion: 0.46.1 +PackageLocale: en-US +Publisher: Junegunn Choi +PublisherUrl: https://github.com/junegunn +PublisherSupportUrl: https://github.com/junegunn/fzf/issues +Author: Junegunn Choi +PackageName: fzf +PackageUrl: https://github.com/junegunn/fzf +License: MIT +LicenseUrl: https://github.com/junegunn/fzf/blob/master/LICENSE +Copyright: Copyright (c) 2013-2023 Junegunn Choi +CopyrightUrl: https://github.com/junegunn/fzf/blob/master/LICENSE +ShortDescription: A general-purpose command-line fuzzy finder +Tags: +- cli +- go +ReleaseNotes: |- + - Bug fixes and improvements + - Fixed Windows binaries + - Downgraded Go version to 1.20 to support older versions of Windows + - https://tip.golang.org/doc/go1.21#windows + - Updated rivo/uniseg dependency to v0.4.6 +ReleaseNotesUrl: https://github.com/junegunn/fzf/releases/tag/0.46.1 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/junegunn/fzf/0.46.1/junegunn.fzf.yaml b/manifests/j/junegunn/fzf/0.46.1/junegunn.fzf.yaml new file mode 100644 index 0000000000000..0f68bedc42f8d --- /dev/null +++ b/manifests/j/junegunn/fzf/0.46.1/junegunn.fzf.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: junegunn.fzf +PackageVersion: 0.46.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/k/KaiKramer/KeyStoreExplorer/5.5.3/KaiKramer.KeyStoreExplorer.installer.yaml b/manifests/k/KaiKramer/KeyStoreExplorer/5.5.3/KaiKramer.KeyStoreExplorer.installer.yaml new file mode 100644 index 0000000000000..b70a475cb1b77 --- /dev/null +++ b/manifests/k/KaiKramer/KeyStoreExplorer/5.5.3/KaiKramer.KeyStoreExplorer.installer.yaml @@ -0,0 +1,40 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: KaiKramer.KeyStoreExplorer +PackageVersion: 5.5.3 +Platform: +- Windows.Desktop +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- kse +FileExtensions: +- bcfks +- bks +- jceks +- jks +- keystore +- ks +- p12 +- pfx +- uber +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/kaikramer/keystore-explorer/releases/download/v5.5.3/kse-553-setup.exe + InstallerSha256: 4677123EF937847AC233E8F46A82B6E43854F60A728DCE16D85AA04FFC6D9762 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/kaikramer/keystore-explorer/releases/download/v5.5.3/kse-553-setup.exe + InstallerSha256: 4677123EF937847AC233E8F46A82B6E43854F60A728DCE16D85AA04FFC6D9762 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/k/KaiKramer/KeyStoreExplorer/5.5.3/KaiKramer.KeyStoreExplorer.locale.en-US.yaml b/manifests/k/KaiKramer/KeyStoreExplorer/5.5.3/KaiKramer.KeyStoreExplorer.locale.en-US.yaml new file mode 100644 index 0000000000000..324e30201d437 --- /dev/null +++ b/manifests/k/KaiKramer/KeyStoreExplorer/5.5.3/KaiKramer.KeyStoreExplorer.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: KaiKramer.KeyStoreExplorer +PackageVersion: 5.5.3 +PackageLocale: en-US +Publisher: Kai Kramer +PublisherUrl: http://keystore-explorer.org +PublisherSupportUrl: https://github.com/kaikramer/keystore-explorer/issues +Author: Kai Kramer et al. +PackageName: KeyStore Explorer +PackageUrl: http://keystore-explorer.org +License: GNU General Public License v3.0 +LicenseUrl: https://github.com/kaikramer/keystore-explorer/blob/master/LICENSE +Copyright: Copyright (C) 2007 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/kaikramer/keystore-explorer/blob/master/LICENSE +ShortDescription: KeyStore Explorer is a free GUI replacement for the Java command-line utilities keytool and jarsigner +Moniker: kse +Tags: +- certificates +- explorer +- jarsigner +- keys +- keystore +- keytool +- kse +ReleaseNotesUrl: https://github.com/kaikramer/keystore-explorer/releases/tag/v5.5.3 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/k/KaiKramer/KeyStoreExplorer/5.5.3/KaiKramer.KeyStoreExplorer.yaml b/manifests/k/KaiKramer/KeyStoreExplorer/5.5.3/KaiKramer.KeyStoreExplorer.yaml new file mode 100644 index 0000000000000..b476f0ba1bc66 --- /dev/null +++ b/manifests/k/KaiKramer/KeyStoreExplorer/5.5.3/KaiKramer.KeyStoreExplorer.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: KaiKramer.KeyStoreExplorer +PackageVersion: 5.5.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/k/Kakao/KakaoTalk/3.7.6.3770/Kakao.KakaoTalk.installer.yaml b/manifests/k/Kakao/KakaoTalk/3.7.6.3770/Kakao.KakaoTalk.installer.yaml new file mode 100644 index 0000000000000..1aa3426abcd4e --- /dev/null +++ b/manifests/k/Kakao/KakaoTalk/3.7.6.3770/Kakao.KakaoTalk.installer.yaml @@ -0,0 +1,19 @@ +# Automatically updated by the winget bot at 2024/Jan/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Kakao.KakaoTalk +PackageVersion: 3.7.6.3770 +InstallerLocale: ko-KR +MinimumOSVersion: 10.0.0.0 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://app-pc.kakaocdn.net/talk/win32/KakaoTalk_Setup.exe + InstallerSha256: AA1B4AFA0845526CA2F9D5A767DE0477E94FDCC9CC8F30746338E25B61594210 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/k/Kakao/KakaoTalk/3.7.6.3770/Kakao.KakaoTalk.locale.en-US.yaml b/manifests/k/Kakao/KakaoTalk/3.7.6.3770/Kakao.KakaoTalk.locale.en-US.yaml new file mode 100644 index 0000000000000..b66a96fb7b499 --- /dev/null +++ b/manifests/k/Kakao/KakaoTalk/3.7.6.3770/Kakao.KakaoTalk.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Automatically updated by the winget bot at 2024/Jan/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Kakao.KakaoTalk +PackageVersion: 3.7.6.3770 +PackageLocale: en-US +Publisher: Kakao Corp. +PublisherUrl: https://www.kakaocorp.com +PublisherSupportUrl: https://cs.kakao.com +PrivacyUrl: https://www.kakao.com/policy/privacy +Author: Kakao Corp. +PackageName: KakaoTalk +PackageUrl: https://www.kakaocorp.com +License: Proprietary +LicenseUrl: https://www.kakao.com/policy/terms +Copyright: Copyright © Kakao Corp. All rights reserved. +CopyrightUrl: https://www.kakao.com/policy/terms +ShortDescription: Leading messenger service in South Korea. Chat and call anytime, anywhere, in real-time for free using KakaoTalk. +Description: Leading messenger service in South Korea. Chat and call anytime, anywhere, in real-time for free using KakaoTalk. +Moniker: kakaotalk +Tags: +- messenger +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/k/Kakao/KakaoTalk/3.7.6.3770/Kakao.KakaoTalk.locale.ko-KR.yaml b/manifests/k/Kakao/KakaoTalk/3.7.6.3770/Kakao.KakaoTalk.locale.ko-KR.yaml new file mode 100644 index 0000000000000..eb79d6b5a695b --- /dev/null +++ b/manifests/k/Kakao/KakaoTalk/3.7.6.3770/Kakao.KakaoTalk.locale.ko-KR.yaml @@ -0,0 +1,23 @@ +# Automatically updated by the winget bot at 2024/Jan/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Kakao.KakaoTalk +PackageVersion: 3.7.6.3770 +PackageLocale: ko-KR +Publisher: Kakao Corp. +PublisherUrl: https://www.kakaocorp.com +PublisherSupportUrl: https://cs.kakao.com +PrivacyUrl: https://www.kakao.com/policy/privacy +Author: Kakao Corp. +PackageName: KakaoTalk +PackageUrl: https://www.kakaocorp.com +License: Proprietary +LicenseUrl: https://www.kakao.com/policy/terms +Copyright: Copyright © 카카오 코퍼레이션 +CopyrightUrl: https://www.kakao.com/policy/terms +ShortDescription: 대한민국 최고의 메신저 서비스. 카카오 톡을 이용하여 언제 어디서나 무료로 실시간 채팅과 통화를 할 수 있습니다. +Description: 대한민국 최고의 메신저 서비스. 카카오 톡을 이용하여 언제 어디서나 무료로 실시간 채팅과 통화를 할 수 있습니다. +Tags: +- 전령 +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/k/Kakao/KakaoTalk/3.7.6.3770/Kakao.KakaoTalk.yaml b/manifests/k/Kakao/KakaoTalk/3.7.6.3770/Kakao.KakaoTalk.yaml new file mode 100644 index 0000000000000..1b5d716e7e48d --- /dev/null +++ b/manifests/k/Kakao/KakaoTalk/3.7.6.3770/Kakao.KakaoTalk.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2024/Jan/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Kakao.KakaoTalk +PackageVersion: 3.7.6.3770 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/k/KakaoEntertainmentCorp/MelonPlayer/1.1.7/KakaoEntertainmentCorp.MelonPlayer.installer.yaml b/manifests/k/KakaoEntertainmentCorp/MelonPlayer/1.1.7/KakaoEntertainmentCorp.MelonPlayer.installer.yaml new file mode 100644 index 0000000000000..99cbd4ab29188 --- /dev/null +++ b/manifests/k/KakaoEntertainmentCorp/MelonPlayer/1.1.7/KakaoEntertainmentCorp.MelonPlayer.installer.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2024/Feb/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json + +PackageIdentifier: KakaoEntertainmentCorp.MelonPlayer +PackageVersion: 1.1.7 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: nullsoft +Scope: machine +Installers: +- Architecture: x86 + InstallerUrl: https://cdnimg.melon.co.kr/svc/pcp/apps/MelonSetup.exe + InstallerSha256: 578C8010F35E4393BFBC2B1AF1163C167DF1206F698584532E4850F7655D7ACC +ManifestType: installer +ManifestVersion: 1.2.0 diff --git a/manifests/k/KakaoEntertainmentCorp/MelonPlayer/1.1.7/KakaoEntertainmentCorp.MelonPlayer.locale.en-US.yaml b/manifests/k/KakaoEntertainmentCorp/MelonPlayer/1.1.7/KakaoEntertainmentCorp.MelonPlayer.locale.en-US.yaml new file mode 100644 index 0000000000000..813fb40856293 --- /dev/null +++ b/manifests/k/KakaoEntertainmentCorp/MelonPlayer/1.1.7/KakaoEntertainmentCorp.MelonPlayer.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Automatically updated by the winget bot at 2024/Feb/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json + +PackageIdentifier: KakaoEntertainmentCorp.MelonPlayer +PackageVersion: 1.1.7 +PackageLocale: en-US +Publisher: © Kakao Entertainment Corp. +PublisherUrl: https://kakaoent.com/ +PublisherSupportUrl: https://faqs2.melon.com/customer/index.htm +PrivacyUrl: https://info.melon.com/terms/web/terms3.html +Author: Kakao Entertainment Corp. +PackageName: Melon Player +PackageUrl: https://www.melon.com/ +License: Copyright © Kakao Entertainment Corp. All rights reserved. +ShortDescription: Music streaming player developed and published by Kakao Entertainment. +Tags: +- music +- streaming +ManifestType: defaultLocale +ManifestVersion: 1.2.0 diff --git a/manifests/k/KakaoEntertainmentCorp/MelonPlayer/1.1.7/KakaoEntertainmentCorp.MelonPlayer.yaml b/manifests/k/KakaoEntertainmentCorp/MelonPlayer/1.1.7/KakaoEntertainmentCorp.MelonPlayer.yaml new file mode 100644 index 0000000000000..50d7aaa8b5894 --- /dev/null +++ b/manifests/k/KakaoEntertainmentCorp/MelonPlayer/1.1.7/KakaoEntertainmentCorp.MelonPlayer.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2024/Feb/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json + +PackageIdentifier: KakaoEntertainmentCorp.MelonPlayer +PackageVersion: 1.1.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.2.0 diff --git a/manifests/k/Kingston/SSDManager/1.5.3.6/Kingston.SSDManager.installer.yaml b/manifests/k/Kingston/SSDManager/1.5.3.6/Kingston.SSDManager.installer.yaml new file mode 100644 index 0000000000000..6684d28c19631 --- /dev/null +++ b/manifests/k/Kingston/SSDManager/1.5.3.6/Kingston.SSDManager.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Kingston.SSDManager +PackageVersion: 1.5.3.6 +InstallerLocale: en-US +InstallerType: inno +InstallerSwitches: + Silent: /VERYSILENT + Custom: /NORESTART +UpgradeBehavior: install +Commands: +- KSM +ProductCode: '{53F657CD-C4FC-4DCD-826E-6862917532AC}_is1' +Installers: +- Architecture: x64 + InstallerUrl: https://media.kingston.com/support/downloads/KSM_setup_1.5.3.6.exe + InstallerSha256: 9F76C4884A8829B93D5195A3AC1CE897B23C483A56EBFF58F77D1BF5361C26DE +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/k/Kingston/SSDManager/1.5.3.6/Kingston.SSDManager.locale.en-US.yaml b/manifests/k/Kingston/SSDManager/1.5.3.6/Kingston.SSDManager.locale.en-US.yaml new file mode 100644 index 0000000000000..423625b3c335b --- /dev/null +++ b/manifests/k/Kingston/SSDManager/1.5.3.6/Kingston.SSDManager.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Kingston.SSDManager +PackageVersion: 1.5.3.6 +PackageLocale: en-US +Publisher: Kingston Technology Company, Inc. +PublisherUrl: https://www.kingston.com/en/support/technical/ssdmanager +PublisherSupportUrl: https://www.kingston.com/en/support/technical/ssdmanager +PrivacyUrl: https://www.kingston.com/en/company/privacy +Author: Kingston Technology Company, Inc +PackageName: Kingston SSD Manager x64 +PackageUrl: https://www.kingston.com/en/support/technical/ssdmanager +License: Proprietary +ShortDescription: |- + Kingston® SSD Manager is an application that provides users with the ability to monitor and + manage various aspects of their Kingston® Solid State Drive. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/k/Kingston/SSDManager/1.5.3.6/Kingston.SSDManager.yaml b/manifests/k/Kingston/SSDManager/1.5.3.6/Kingston.SSDManager.yaml new file mode 100644 index 0000000000000..3b0503f467ca8 --- /dev/null +++ b/manifests/k/Kingston/SSDManager/1.5.3.6/Kingston.SSDManager.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Kingston.SSDManager +PackageVersion: 1.5.3.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/k/KoushikNaskar/InteractiveDataEditor/2.13.1.0/KoushikNaskar.InteractiveDataEditor.installer.yaml b/manifests/k/KoushikNaskar/InteractiveDataEditor/2.13.1.0/KoushikNaskar.InteractiveDataEditor.installer.yaml index dfedd1a1e4ac6..1c949389f1f3c 100644 --- a/manifests/k/KoushikNaskar/InteractiveDataEditor/2.13.1.0/KoushikNaskar.InteractiveDataEditor.installer.yaml +++ b/manifests/k/KoushikNaskar/InteractiveDataEditor/2.13.1.0/KoushikNaskar.InteractiveDataEditor.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Feb/02 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json PackageIdentifier: KoushikNaskar.InteractiveDataEditor diff --git a/manifests/k/KoushikNaskar/InteractiveDataEditor/2.13.1.0/KoushikNaskar.InteractiveDataEditor.locale.en-US.yaml b/manifests/k/KoushikNaskar/InteractiveDataEditor/2.13.1.0/KoushikNaskar.InteractiveDataEditor.locale.en-US.yaml index 706c3e4d9efbf..ed4c1b82ec888 100644 --- a/manifests/k/KoushikNaskar/InteractiveDataEditor/2.13.1.0/KoushikNaskar.InteractiveDataEditor.locale.en-US.yaml +++ b/manifests/k/KoushikNaskar/InteractiveDataEditor/2.13.1.0/KoushikNaskar.InteractiveDataEditor.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Feb/02 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json PackageIdentifier: KoushikNaskar.InteractiveDataEditor diff --git a/manifests/k/KoushikNaskar/InteractiveDataEditor/2.13.1.0/KoushikNaskar.InteractiveDataEditor.yaml b/manifests/k/KoushikNaskar/InteractiveDataEditor/2.13.1.0/KoushikNaskar.InteractiveDataEditor.yaml index e000c4da176fd..a519dc969bb3b 100644 --- a/manifests/k/KoushikNaskar/InteractiveDataEditor/2.13.1.0/KoushikNaskar.InteractiveDataEditor.yaml +++ b/manifests/k/KoushikNaskar/InteractiveDataEditor/2.13.1.0/KoushikNaskar.InteractiveDataEditor.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Feb/02 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json PackageIdentifier: KoushikNaskar.InteractiveDataEditor diff --git a/manifests/k/KrassyK1LZ/DXLogNet/2.5.54/KrassyK1LZ.DXLogNet.installer.yaml b/manifests/k/KrassyK1LZ/DXLogNet/2.5.54/KrassyK1LZ.DXLogNet.installer.yaml new file mode 100644 index 0000000000000..58b4df7b2f123 --- /dev/null +++ b/manifests/k/KrassyK1LZ/DXLogNet/2.5.54/KrassyK1LZ.DXLogNet.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: KrassyK1LZ.DXLogNet +PackageVersion: 2.5.54 +InstallerLocale: en-US +InstallerType: wix +UpgradeBehavior: install +ProductCode: '{23D24E22-19DA-4B8F-BADC-4BE30C7A7352}' +ReleaseDate: 2024-01-09 +AppsAndFeaturesEntries: +- DisplayVersion: '2.5' + UpgradeCode: '{3433CFCD-64B3-4DBE-836B-6B446AAA0898}' +Installers: +- Architecture: x86 + InstallerUrl: http://dxlog.net/sw/files/DXLog.net-2.5.54.msi + InstallerSha256: 86B85FA6335F4779A7F43C8889103A0F15259863A92639587C038541FF280374 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/k/KrassyK1LZ/DXLogNet/2.5.54/KrassyK1LZ.DXLogNet.locale.en-US.yaml b/manifests/k/KrassyK1LZ/DXLogNet/2.5.54/KrassyK1LZ.DXLogNet.locale.en-US.yaml new file mode 100644 index 0000000000000..5c70e101b0dac --- /dev/null +++ b/manifests/k/KrassyK1LZ/DXLogNet/2.5.54/KrassyK1LZ.DXLogNet.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: KrassyK1LZ.DXLogNet +PackageVersion: 2.5.54 +PackageLocale: en-US +Publisher: Krassy K1LZ +PublisherUrl: http://dxlog.net/ +Author: Krassy K1LZ +PackageName: DXLog.net +PackageUrl: http://dxlog.net/ +License: Proprietary Software +Copyright: Copyright (C) 2023 Krassy K1LZ +ShortDescription: Ham radio contest logging software by 9A5K. +Moniker: dxlog.net +ReleaseNotesUrl: http://dxlog.net/sw/files/release_notes.txt +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/k/KrassyK1LZ/DXLogNet/2.5.54/KrassyK1LZ.DXLogNet.yaml b/manifests/k/KrassyK1LZ/DXLogNet/2.5.54/KrassyK1LZ.DXLogNet.yaml new file mode 100644 index 0000000000000..6f473f499a38a --- /dev/null +++ b/manifests/k/KrassyK1LZ/DXLogNet/2.5.54/KrassyK1LZ.DXLogNet.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: KrassyK1LZ.DXLogNet +PackageVersion: 2.5.54 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/k/keif888/SSISMHash/1.7.6.0/keif888.SSISMHash.installer.yaml b/manifests/k/keif888/SSISMHash/1.7.6.0/keif888.SSISMHash.installer.yaml new file mode 100644 index 0000000000000..9278ecc6aafb3 --- /dev/null +++ b/manifests/k/keif888/SSISMHash/1.7.6.0/keif888.SSISMHash.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: keif888.SSISMHash +PackageVersion: 1.7.6.0 +InstallerLocale: en-US +InstallerType: wix +Installers: +- InstallerUrl: https://github.com/keif888/SSISMHash/releases/download/v1.7.6.0/MultipleHashInstallerx64.msi + Architecture: x64 + InstallerSha256: 1A85F4E4F0AFD2E95CCE3543FCB701334FED7047DBBB8ECABCE24DC75404ABFC + ProductCode: '{2C239660-9AAF-4FBE-8B17-9797274F0316}' +- InstallerUrl: https://github.com/keif888/SSISMHash/releases/download/v1.7.6.0/MultipleHashInstallerx32.msi + Architecture: x86 + InstallerSha256: 97BE4ECA5CBBCFB7301BE7BB5EDF085DA8866B9D1B3E4F408F0F373902B8AD1A + ProductCode: '{31176C7F-5E08-4DB8-948F-043D2F1EB248}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/k/keif888/SSISMHash/1.7.6.0/keif888.SSISMHash.locale.en-US.yaml b/manifests/k/keif888/SSISMHash/1.7.6.0/keif888.SSISMHash.locale.en-US.yaml new file mode 100644 index 0000000000000..9a81814f97d9c --- /dev/null +++ b/manifests/k/keif888/SSISMHash/1.7.6.0/keif888.SSISMHash.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: keif888.SSISMHash +PackageVersion: 1.7.6.0 +PackageLocale: en-US +Publisher: Keith Martin +PackageName: SSIS Multiple Hash +License: MS-RL license +ShortDescription: SSIS Multiple Hash makes it possible to generate many Hash values from each input row. Hash's supported include MD5 and SHA1. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/k/keif888/SSISMHash/1.7.6.0/keif888.SSISMHash.yaml b/manifests/k/keif888/SSISMHash/1.7.6.0/keif888.SSISMHash.yaml new file mode 100644 index 0000000000000..c9ebcbb65ba29 --- /dev/null +++ b/manifests/k/keif888/SSISMHash/1.7.6.0/keif888.SSISMHash.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: keif888.SSISMHash +PackageVersion: 1.7.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/k/krishisrani/appel/1.0.0.0/krishisrani.appel.installer.yaml b/manifests/k/krishisrani/appel/1.0.0.0/krishisrani.appel.installer.yaml new file mode 100644 index 0000000000000..888dcdf939e3b --- /dev/null +++ b/manifests/k/krishisrani/appel/1.0.0.0/krishisrani.appel.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: krishisrani.appel +PackageVersion: 1.0.0.0 +InstallerType: inno +InstallerSwitches: + Silent: /SILENT +Installers: +- InstallerUrl: https://github.com/krishisrani61/exestorage/raw/main/Appel/setup.exe + Architecture: neutral + InstallerSha256: A0731504BC13E82B8BEEB022B602A33C4FA665A0526B9BA070C32D6A0C482117 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/k/krishisrani/appel/1.0.0.0/krishisrani.appel.locale.en-US.yaml b/manifests/k/krishisrani/appel/1.0.0.0/krishisrani.appel.locale.en-US.yaml new file mode 100644 index 0000000000000..fa18f4a45d1ce --- /dev/null +++ b/manifests/k/krishisrani/appel/1.0.0.0/krishisrani.appel.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: krishisrani.appel +PackageVersion: 1.0.0.0 +PackageLocale: en-US +Publisher: Krish Israni +PackageName: Appel +License: Appel Game +ShortDescription: Appel Game installer +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/k/krishisrani/appel/1.0.0.0/krishisrani.appel.yaml b/manifests/k/krishisrani/appel/1.0.0.0/krishisrani.appel.yaml new file mode 100644 index 0000000000000..a88c7e0f6edc4 --- /dev/null +++ b/manifests/k/krishisrani/appel/1.0.0.0/krishisrani.appel.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: krishisrani.appel +PackageVersion: 1.0.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/l/Log4OM2/Log4OM2/2.31.0.0/Log4OM2.Log4OM2.installer.yaml b/manifests/l/Log4OM2/Log4OM2/2.31.0.0/Log4OM2.Log4OM2.installer.yaml new file mode 100644 index 0000000000000..3a2f6994e954c --- /dev/null +++ b/manifests/l/Log4OM2/Log4OM2/2.31.0.0/Log4OM2.Log4OM2.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Log4OM2.Log4OM2 +PackageVersion: 2.31.0.0 +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: Log4OM2_2_31_0_0.exe +ReleaseDate: 2024-01-31 +AppsAndFeaturesEntries: +- DisplayName: Log4OM Next Gen + Publisher: IW3HMH Daniele Pistollato + ProductCode: '{CA0D32C0-BC60-4883-A356-51ED850C8DAB}_is1' +Installers: +- Architecture: x86 + InstallerUrl: https://www.log4om.com/l4ong/release/Log4OM2_2_31_0_0.zip + InstallerSha256: 585C20C29739423A68536B8C2F50082FE09D4B5674AB31431C58B36DAFFE305F +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/l/Log4OM2/Log4OM2/2.31.0.0/Log4OM2.Log4OM2.locale.en-US.yaml b/manifests/l/Log4OM2/Log4OM2/2.31.0.0/Log4OM2.Log4OM2.locale.en-US.yaml new file mode 100644 index 0000000000000..fcb345baf680f --- /dev/null +++ b/manifests/l/Log4OM2/Log4OM2/2.31.0.0/Log4OM2.Log4OM2.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Log4OM2.Log4OM2 +PackageVersion: 2.31.0.0 +PackageLocale: en-US +Publisher: Log4OM2 +PublisherUrl: https://www.log4om.com/ +PublisherSupportUrl: https://www.log4om.com/support-request/ +Author: Daniele Pistollato IW3HMH +PackageName: Log4OM2 +PackageUrl: https://www.log4om.com/download/ +License: Proprietary +Copyright: Log4OM is provided freely to you by Daniele Pistollato IW3HMH +ShortDescription: Amateur Radio Log. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/l/Log4OM2/Log4OM2/2.31.0.0/Log4OM2.Log4OM2.yaml b/manifests/l/Log4OM2/Log4OM2/2.31.0.0/Log4OM2.Log4OM2.yaml new file mode 100644 index 0000000000000..63814dae3dc2f --- /dev/null +++ b/manifests/l/Log4OM2/Log4OM2/2.31.0.0/Log4OM2.Log4OM2.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Log4OM2.Log4OM2 +PackageVersion: 2.31.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/l/Logitech/Options/10.10.58/Logitech.Options.installer.yaml b/manifests/l/Logitech/Options/10.10.58/Logitech.Options.installer.yaml deleted file mode 100644 index 41645fa96b693..0000000000000 --- a/manifests/l/Logitech/Options/10.10.58/Logitech.Options.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.4 $debug=AUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Logitech.Options -PackageVersion: 10.10.58 -InstallerLocale: en-US -MinimumOSVersion: 10.0.0.0 -InstallerType: exe -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /quiet - SilentWithProgress: /quiet -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerUrl: https://download01.logi.com/web/ftp/pub/techsupport/options/options_installer.exe - InstallerSha256: 8a8882c14f4abbef7756a2e58a69e26af7d2191a26195c51f4325029552c96ae -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/l/Logitech/Options/10.10.58/Logitech.Options.locale.en-US.yaml b/manifests/l/Logitech/Options/10.10.58/Logitech.Options.locale.en-US.yaml deleted file mode 100644 index 1ca4468d01a10..0000000000000 --- a/manifests/l/Logitech/Options/10.10.58/Logitech.Options.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.4 $debug=AUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Logitech.Options -PackageVersion: 10.10.58 -PackageLocale: en-US -Publisher: Logitech -PublisherUrl: https://www.logitech.com/en-us -PublisherSupportUrl: https://support.logi.com/hc/en-us -PrivacyUrl: https://www.logitech.com/en-us/legal/product-privacy-policy.html -Author: Logitech -PackageName: Logitech Options -PackageUrl: https://www.logitech.com/en-us/product/options -License: Copyright (c) Logitech -LicenseUrl: https://secure.logitech.com/en-us/footer/terms-of-use -Copyright: Copyright (c) Logitech -# CopyrightUrl: -ShortDescription: Logitech Options is a powerful and easy-to-use application that enhances your Logitech mice, keyboards, and touchpads. Customize your device with Options and do more than you thought possible. -# Description: -Moniker: logitechoptions -Tags: -- keyboard -- logi -- logitech -- mouse -- options -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/l/Logitech/Options/10.10.58/Logitech.Options.locale.ja-JP.yaml b/manifests/l/Logitech/Options/10.10.58/Logitech.Options.locale.ja-JP.yaml deleted file mode 100644 index e8ab7daace5b9..0000000000000 --- a/manifests/l/Logitech/Options/10.10.58/Logitech.Options.locale.ja-JP.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.4 $debug=AUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Logitech.Options -PackageVersion: 10.10.58 -PackageLocale: ja-JP -Publisher: Logicool -PublisherUrl: https://www.logicool.co.jp/ja-jp -PublisherSupportUrl: https://support.logi.com/hc/ja/ -PrivacyUrl: https://www.logicool.co.jp/ja-jp/legal/web-privacy-policy.html -Author: Logicool -PackageName: Logicool Options -PackageUrl: https://www.logicool.co.jp/ja-jp/product/options -License: Copyright (c) Logicool -LicenseUrl: https://www.logicool.co.jp/ja-jp/tos/terms.html -Copyright: Copyright (c) Logicool -# CopyrightUrl: -ShortDescription: Logicool Optionsは、ロジクールマウス、キーボード、およびタッチパッドの機能を強化する、高性能で使いやすいアプリケーションです。Optionsを使ってデバイスをカスタマイズし、自分の使い方にあった操作方法で様々なタスクを実行することができます。 -# Description: -# Moniker: -Tags: -- keyboard -- logi -- logicool -- logitech -- mouse -- options -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/l/Logtalk/Logtalk/3.74.0/Logtalk.Logtalk.installer.yaml b/manifests/l/Logtalk/Logtalk/3.74.0/Logtalk.Logtalk.installer.yaml new file mode 100644 index 0000000000000..ef6c840873f9a --- /dev/null +++ b/manifests/l/Logtalk/Logtalk/3.74.0/Logtalk.Logtalk.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Logtalk.Logtalk +PackageVersion: 3.74.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- lgt +- logtalk +ReleaseDate: 2024-01-31 +Installers: +- Architecture: neutral + InstallerUrl: https://logtalk.org/files/logtalk-3.74.0.exe + InstallerSha256: D16860910595E043B04C6CA932374AA86140F118050A3B04F389C6F4D6531C95 + ProductCode: Logtalk_is1 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/l/Logtalk/Logtalk/3.74.0/Logtalk.Logtalk.locale.en-US.yaml b/manifests/l/Logtalk/Logtalk/3.74.0/Logtalk.Logtalk.locale.en-US.yaml new file mode 100644 index 0000000000000..85511a679bfcf --- /dev/null +++ b/manifests/l/Logtalk/Logtalk/3.74.0/Logtalk.Logtalk.locale.en-US.yaml @@ -0,0 +1,110 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Logtalk.Logtalk +PackageVersion: 3.74.0 +PackageLocale: en-US +Publisher: Logtalk.org +PublisherUrl: https://logtalk.org/ +PublisherSupportUrl: https://logtalk.org/support.html +# PrivacyUrl: +Author: Paulo Moura +PackageName: Logtalk +PackageUrl: https://logtalk.org/ +License: Apache-2.0 +LicenseUrl: https://github.com/LogtalkDotOrg/logtalk3/blob/master/LICENSE.txt +Copyright: Copyright 1998-2024 Paulo Moura +CopyrightUrl: https://github.com/LogtalkDotOrg/logtalk3/blob/master/NOTICE.txt +ShortDescription: Declarative object-oriented logic programming language +Description: Logtalk is a declarative object-oriented logic programming language that extends and leverages the Prolog language with modern code encapsulation and code reuse mechanisms while also providing improved predicate semantics. +# Moniker: +Tags: +- language +- logic +- programming +- prolog +ReleaseNotes: |- + Logtalk compiler and runtime + - CHANGED: Printing of linter warnings about to the use of unsound control constructs in grammar rules to be controlled by the grammar_rules flag instead of the suspicious_calls flag. Also changed the format of warning message. + - CHANGED: The implementation of the context/1 built-in method and the implementation of the threaded_call/2 and threaded_once/2 built-in predicates to throw uninstantiation_error(Term) errors instead of type_error(var, Term) errors. + - CHANGED: The implementation of the threaded_peek/1-2 built-in predicate to throw an exception when there is no thread proving the goal argument. + - CHANGED: The implementation of the threaded/1 built-in predicate to not abort execution when the argument is a disjunction of goals if one of them throws an exception while there are still thread goals running. + - IMPROVED: The implementation of the threaded/1 built-in predicate to support calls where the argument is only bound at runtime. + - IMPROVED: The implementation of the threaded/1 built-in predicate to use a dedicated message queue per call. This prevents unlikely but still possible leaks of individual thread results between calls that could cause unexpected failures. + - IMPROVED: The implementation of the threaded_engine_create/3 predicate to use a single mutex. + - IMPROVED: The implementation of the threaded_cancel/1 predicate. + - IMPROVED: Error checking of the threaded_exit/1-2 and threaded_peek/1-2 predicates. + - IMPROVED: Linter warnings for if-then-else and soft-cut control constructs. + - FIXED: Compilation of synchronized/1 directives in categories to not depend on the Prolog with_mutex/2 built-in predicate implicitly creating mutexes. + - FIXED: Compilation of phrase/2-3 goals where the first argument is a (::)/1-2 or (^^)/2 control construct with a variable grammar rule body argument would result in a compilation infinite loop. Thanks to Yurii Rashkovskii for the bug report. + - FIXED: Regression where a compiler error when a source file term is not callable would be delegated to the backend. + Prolog adapter and integration files + - UPDATED: The LVM adapter file to set the engines and threads flags depending on the availability of the required built-in predicates. + - FIXED: The SWI-Prolog swihooks.pl file to allow calls to the threaded/1 built-in predicate in user to actually use multi-threading by preventing module-qualification of the predicate argument. + Documentation + - IMPROVED: Handbook documentation of built-in meta-non-terminals and meta-predicates. + - IMPROVED: Handbook documentation on grammar rules. + - IMPROVED: Handbook documentation on dynamic predicates and the create_object/4 built-in predicate. + - IMPROVED: Handbook documentation of the threaded/1 built-in predicate. + - IMPROVED: Handbook documentation of the meta_predicate/1 directive. + - FIXED: Handbook description of the if/1 conditional compilation directive. + - FIXED: Documentation of the context/1 built-in execution context method. + - FIXED: Documentation of the threaded_exit/1-2 exceptions. + Library + - CHANGED: The type library object to to throw uninstantiation_error(Term) error instead of type_error(var, Term) error when checking the var type. + - CHANGED: Deleted deprecated library/genint.lgt file, replaced by the genint library. + - ADDED: Library listing supporting listing of object dynamic predicates clauses. This library replaces the old non-documented listing category. + - ADDED: Library recorded_database to help porting legacy Prolog code. + - UPDATED: The os::file_exists/1 predicate for YAP. + - FIXED: The json library to avoid unnecessary escaping of slashes when encoding a string. Thanks to Yurii Rashkovskii for the bug report. + - FIXED: The json library ignoring the selected JSON object representation when generating JSON output. Thanks to Yurii Rashkovskii for the bug report. + - FIXED: The json library domain error when trying to generate JSON output from an invalid JSON representation. + - FIXED: Description of the hierarchies library. + - FIXED: Compatibility of the types library with XSB due to the missing implementation of the de facto standard gcd/2 arithmetic function. + - FIXED: Two linter warnings when loading the os library using the CxProlog backend. + Tools + - CHANGED: Recent versions of both Texinfo and Sphinx broke index search in the Handbook and APIs documentation when using the help::handbook/1 and help::apis/1 predicates. The argument is now interpreted as a starting node instead of a search string. + - CHANGED: Default output directory for the diagrams tool to ./dot_dias. + - UPDATED: The update_svg_diagrams.* scripts for the new diagrams tool default output directory. + - UPDATED: The lgtunit tool to report unbound test options. + - UPDATED: The lgtunit tool xUnit.net v2 XML format output to include the assemblies and assembly tags start-rtf and finish-rtf attributes. + - UPDATED: The tutor tool for the refactoring of the linter warnings on the use of unsound control constructs in grammar rules. + - FIXED: Syntax error in the logtalk_tester.ps1 script. + Ports + - IMPROVED: Portability of the fcube port by using less problematic operator names. This allows the port to run with LVM and SICStus Prolog. + Examples + - CHANGED: The haunted_wasteland, scratchcards, and trebuchet examples providing solutions for selected Advent of Code 2023 problems to comply with this event legal requirements by linking (instead of copying) to the problem descriptions and removing test files that are not samples found in the problem descriptions. + - UPDATED: The errors example for the linter warnings on the use of unsound control constructs in grammar rules, redefined operators, and suspicious tests in conditionals. + - UPDATED: The ebench example for an upcoming LVM version. + - UPDATED: Several multi-threading example tests to use explicit assertions. + - UPDATED: The mtbatch example to use the format and os libraries. + - UPDATED: Simplified the functions and mtbatch multi-threading examples, accounting for the changes to the threaded/1 built-in predicate. + - FIXED: The emetas example definition of the best_of/3 predicate to destroy the threaded engine after computing the answer. + Tests + - ADDED: Additional tests for the multi-threading built-in predicates. + - ADDED: Additional tests for the format/2-3 de facto standard predicates (~Ng, ~NG, ~|, ~N|, and ~N+ control sequences). + IDEs, text editors, and syntax highlighters support + - REMOVED: The old and deprecated VSCode support in favor of the "Logtalk for VSCode" extension available from the VSCode Marketplace. + - UPDATED: The syntax highlighting test files to include the built-in non-terminals. + - UPDATED: EditorConfig support for the .logtalk and .prolog file name extensions. + - UPDATED: Ace support for compatibility with its current version (v1.32.2). + - UPDATED: Rouge support for compatibility with recent versions. + - FIXED: Ace support highlight of 0'Char and 0'\Char numbers. + - FIXED: GtkSourceView support error with escaped characters highlighting. + - FIXED: Merge upstream changes for the Kate text editor support. + - FIXED: Merge upstream changes for the Pygments syntax highlighter support. + - FIXED: SubEthaEdit 4.x/5.x syntax highlight for the threaded_cancel/1 built-in predicate. + - FIXED: Vim support highlight of 0'Char and 0'\Char numbers. + Installers and installation scripts + - UPDATED: The install.sh manual installation script to inform the user about the INFOPATH environment variable. + - FIXED: The Bash shell embedding scripts to actually use the default settings file when no -s option is passed. +ReleaseNotesUrl: https://github.com/LogtalkDotOrg/logtalk3/blob/master/RELEASE_NOTES.md#3740---january-31-2024 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://logtalk.org/documentation.html +- DocumentLabel: Guides + DocumentUrl: https://logtalk.org/guides.html +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/l/Logtalk/Logtalk/3.74.0/Logtalk.Logtalk.locale.zh-CN.yaml b/manifests/l/Logtalk/Logtalk/3.74.0/Logtalk.Logtalk.locale.zh-CN.yaml new file mode 100644 index 0000000000000..37b1abe3e63f8 --- /dev/null +++ b/manifests/l/Logtalk/Logtalk/3.74.0/Logtalk.Logtalk.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Logtalk.Logtalk +PackageVersion: 3.74.0 +PackageLocale: zh-CN +Publisher: Logtalk.org +PublisherUrl: https://logtalk.org/ +PublisherSupportUrl: https://logtalk.org/support.html +# PrivacyUrl: +Author: Paulo Moura +PackageName: Logtalk +PackageUrl: https://logtalk.org/ +License: Apache-2.0 +LicenseUrl: https://github.com/LogtalkDotOrg/logtalk3/blob/master/LICENSE.txt +Copyright: Copyright 1998-2024 Paulo Moura +CopyrightUrl: https://github.com/LogtalkDotOrg/logtalk3/blob/master/NOTICE.txt +ShortDescription: 声明式的面向对象的逻辑编程语言 +Description: Logtalk 是一种声明式的面向对象的逻辑编程语言,通过现代的代码封装和代码重用机制扩展并利用了 Prolog 语言,同时还提供了改进的谓词语义。 +# Moniker: +Tags: +- prolog +- 编程 +- 语言 +- 逻辑 +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/LogtalkDotOrg/logtalk3/blob/master/RELEASE_NOTES.md#3740---january-31-2024 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://logtalk.org/documentation.html +- DocumentLabel: 教程 + DocumentUrl: https://logtalk.org/guides.html +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/l/Logtalk/Logtalk/3.74.0/Logtalk.Logtalk.yaml b/manifests/l/Logtalk/Logtalk/3.74.0/Logtalk.Logtalk.yaml new file mode 100644 index 0000000000000..490128d6434ca --- /dev/null +++ b/manifests/l/Logtalk/Logtalk/3.74.0/Logtalk.Logtalk.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Logtalk.Logtalk +PackageVersion: 3.74.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/Maltego/Maltego/4.5.0/Maltego.Maltego.installer.yaml b/manifests/m/Maltego/Maltego/4.5.0/Maltego.Maltego.installer.yaml index 7b3c15b485356..3d7bb80491aa8 100644 --- a/manifests/m/Maltego/Maltego/4.5.0/Maltego.Maltego.installer.yaml +++ b/manifests/m/Maltego/Maltego/4.5.0/Maltego.Maltego.installer.yaml @@ -7,10 +7,6 @@ InstallerType: nullsoft AppsAndFeaturesEntries: - DisplayVersion: "4" ProductCode: Maltego -- DisplayName: AdoptOpenJDK JRE with Hotspot - DisplayVersion: 11.0.7.10 - Publisher: AdoptOpenJDK - ProductCode: "{1B5CD899-5DA3-411F-B85F-B4FC08F2D564}" Installers: - Architecture: x64 InstallerUrl: https://downloads.maltego.com/maltego-v4/windows/MaltegoSetup.JRE64.v4.5.0.exe diff --git a/manifests/m/MathiasSvensson/MultiCommander/12.8.0.2929/MathiasSvensson.MultiCommander.installer.yaml b/manifests/m/MathiasSvensson/MultiCommander/12.8.0.2929/MathiasSvensson.MultiCommander.installer.yaml deleted file mode 100644 index 5a54591656519..0000000000000 --- a/manifests/m/MathiasSvensson/MultiCommander/12.8.0.2929/MathiasSvensson.MultiCommander.installer.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.4 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: MathiasSvensson.MultiCommander -PackageVersion: 12.8.0.2929 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -InstallModes: -- interactive -- silent -UpgradeBehavior: install -Installers: -- Architecture: x64 - Scope: machine - InstallerUrl: http://multicommander.com/files/updates/MultiCommander_x64_(12.8.0.2929).exe - InstallerSha256: F5BA6CECF157A7108EFFF23EFED6B1F84D1FA443508B9C265ED6BE5EA2B46431 - InstallerSwitches: - Custom: /ALLUSERS -- Architecture: x64 - Scope: user - InstallerUrl: http://multicommander.com/files/updates/MultiCommander_x64_(12.8.0.2929).exe - InstallerSha256: F5BA6CECF157A7108EFFF23EFED6B1F84D1FA443508B9C265ED6BE5EA2B46431 - InstallerSwitches: - Custom: /CURRENTUSER -- Architecture: x86 - Scope: machine - InstallerUrl: http://multicommander.com/files/updates/MultiCommander_win32_(12.8.0.2929).exe - InstallerSha256: 225658548E6736C1BBF19B27C92B225118C51265B89AED7B3F32D72E87354B2C - InstallerSwitches: - Custom: /ALLUSERS -- Architecture: x86 - Scope: user - InstallerUrl: http://multicommander.com/files/updates/MultiCommander_win32_(12.8.0.2929).exe - InstallerSha256: 225658548E6736C1BBF19B27C92B225118C51265B89AED7B3F32D72E87354B2C - InstallerSwitches: - Custom: /CURRENTUSER -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/m/MathiasSvensson/MultiCommander/12.8.0.2929/MathiasSvensson.MultiCommander.locale.en-US.yaml b/manifests/m/MathiasSvensson/MultiCommander/12.8.0.2929/MathiasSvensson.MultiCommander.locale.en-US.yaml deleted file mode 100644 index 256e081d8573f..0000000000000 --- a/manifests/m/MathiasSvensson/MultiCommander/12.8.0.2929/MathiasSvensson.MultiCommander.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.4 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: MathiasSvensson.MultiCommander -PackageVersion: 12.8.0.2929 -PackageLocale: en-US -Publisher: Mathias Svensson -# PublisherUrl: -# PublisherSupportUrl: -# PrivacyUrl: -# Author: -PackageName: MultiCommander -# PackageUrl: -License: Copyright (c) by Mathias Svensson, Sweden 2021 -LicenseUrl: http://multicommander.com/docs/License -# Copyright: -# CopyrightUrl: -ShortDescription: Multi Commander is a multi-tabbed file manager and is an alternative to the standard Windows Explorer. It uses the very popular and efficient dual-panel layout. -# Description: -# Moniker: -Tags: -- commander -- explorer -- file-manager -- files -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/m/MathiasSvensson/MultiCommander/13.1.0.2955/MathiasSvensson.MultiCommander.installer.yaml b/manifests/m/MathiasSvensson/MultiCommander/13.5.0.2983/MathiasSvensson.MultiCommander.installer.yaml similarity index 58% rename from manifests/m/MathiasSvensson/MultiCommander/13.1.0.2955/MathiasSvensson.MultiCommander.installer.yaml rename to manifests/m/MathiasSvensson/MultiCommander/13.5.0.2983/MathiasSvensson.MultiCommander.installer.yaml index b66b25aa1f837..a486e77a218dc 100644 --- a/manifests/m/MathiasSvensson/MultiCommander/13.1.0.2955/MathiasSvensson.MultiCommander.installer.yaml +++ b/manifests/m/MathiasSvensson/MultiCommander/13.5.0.2983/MathiasSvensson.MultiCommander.installer.yaml @@ -1,39 +1,38 @@ -# Created with YamlCreate.ps1 v2.2.10 $debug=MDSU.CRLF.7-4-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MathiasSvensson.MultiCommander -PackageVersion: 13.1.0.2955 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -InstallModes: -- interactive -- silent -UpgradeBehavior: install -Installers: -- Architecture: x64 - Scope: machine - InstallerUrl: https://multicommander.com/files/updates/MultiCommander_x64_(13.1.0.2955).exe - InstallerSha256: 21880135D3A7C3F3C8117587B49DF8CAEFAEA1C57BA8B47675CDD6F79A39E19F - InstallerSwitches: - Custom: /ALLUSERS -- Architecture: x64 - Scope: user - InstallerUrl: https://multicommander.com/files/updates/MultiCommander_x64_(13.1.0.2955).exe - InstallerSha256: 21880135D3A7C3F3C8117587B49DF8CAEFAEA1C57BA8B47675CDD6F79A39E19F - InstallerSwitches: - Custom: /CURRENTUSER -- Architecture: x86 - Scope: machine - InstallerUrl: https://multicommander.com/files/updates/MultiCommander_win32_(13.1.0.2955).exe - InstallerSha256: 533D084746F733D0DB639235552DE1A031F1D7A23B5F8627E066D0EEF7E28B41 - InstallerSwitches: - Custom: /ALLUSERS -- Architecture: x86 - Scope: user - InstallerUrl: https://multicommander.com/files/updates/MultiCommander_win32_(13.1.0.2955).exe - InstallerSha256: 533D084746F733D0DB639235552DE1A031F1D7A23B5F8627E066D0EEF7E28B41 - InstallerSwitches: - Custom: /CURRENTUSER -ReleaseDate: 2023-07-25 -ManifestType: installer -ManifestVersion: 1.5.0 +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: MathiasSvensson.MultiCommander +PackageVersion: 13.5.0.2983 +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ReleaseDate: 2024-01-26 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://multicommander.com/files/updates/MultiCommander_win32_(13.5.0.2983).exe + InstallerSha256: 00F1729CD2CE6804319EA13A336CB42098620E3C82E4E563EA1CE5C82BD232DD + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x86 + Scope: machine + InstallerUrl: https://multicommander.com/files/updates/MultiCommander_win32_(13.5.0.2983).exe + InstallerSha256: 00F1729CD2CE6804319EA13A336CB42098620E3C82E4E563EA1CE5C82BD232DD + InstallerSwitches: + Custom: /ALLUSERS +- Architecture: x64 + Scope: user + InstallerUrl: https://multicommander.com/files/updates/MultiCommander_x64_(13.5.0.2983).exe + InstallerSha256: 4A3CF710475AF42582FD9D5970BE260764C2FA8315F38CAC87D7B34C63638920 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://multicommander.com/files/updates/MultiCommander_x64_(13.5.0.2983).exe + InstallerSha256: 4A3CF710475AF42582FD9D5970BE260764C2FA8315F38CAC87D7B34C63638920 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/MathiasSvensson/MultiCommander/13.1.0.2955/MathiasSvensson.MultiCommander.locale.en-US.yaml b/manifests/m/MathiasSvensson/MultiCommander/13.5.0.2983/MathiasSvensson.MultiCommander.locale.en-US.yaml similarity index 54% rename from manifests/m/MathiasSvensson/MultiCommander/13.1.0.2955/MathiasSvensson.MultiCommander.locale.en-US.yaml rename to manifests/m/MathiasSvensson/MultiCommander/13.5.0.2983/MathiasSvensson.MultiCommander.locale.en-US.yaml index 21470acb1c57d..af733c6e06173 100644 --- a/manifests/m/MathiasSvensson/MultiCommander/13.1.0.2955/MathiasSvensson.MultiCommander.locale.en-US.yaml +++ b/manifests/m/MathiasSvensson/MultiCommander/13.5.0.2983/MathiasSvensson.MultiCommander.locale.en-US.yaml @@ -1,43 +1,23 @@ -# Created with YamlCreate.ps1 v2.2.10 $debug=MDSU.CRLF.7-4-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MathiasSvensson.MultiCommander -PackageVersion: 13.1.0.2955 -PackageLocale: en-US -Publisher: Mathias Svensson -PublisherUrl: https://multicommander.com/ -PublisherSupportUrl: https://multicommander.com/Support -# PrivacyUrl: -Author: Mathias Svensson -PackageName: MultiCommander -PackageUrl: https://multicommander.com/ -License: Proprietary -LicenseUrl: http://multicommander.com/docs/License -Copyright: Copyright 2023 by Mathias Svensson, Sweden - All rights reserved. -# CopyrightUrl: -ShortDescription: Multi Commander is a multi-tabbed file manager and is an alternative to the standard Windows Explorer. It uses the very popular and efficient dual-panel layout. -# Description: -# Moniker: -Tags: -- commander -- explorer -- file-manager -- files -ReleaseNotes: |- - Since v13.0 there is 12+ Changes - - - 5 Stability Issues - - Since 12.8 there is 55+ Changes since 12.8 some of the are... - - - Better handling of not enough free space when copying - - Show image in Preview panel now using WIC (Windows Imaging component) - - Drop file/folder on tab header make that tab go to that location - - And many more (check change log) - - 10 Stability Issues -ReleaseNotesUrl: https://multicommander.com/ReleaseInfo/2955 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.5.0 +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: MathiasSvensson.MultiCommander +PackageVersion: 13.5.0.2983 +PackageLocale: en-US +Publisher: Mathias Svensson +PublisherUrl: https://multicommander.com/ +PublisherSupportUrl: https://multicommander.com/Support +Author: Mathias Svensson +PackageName: MultiCommander +PackageUrl: https://multicommander.com/ +License: Proprietary +LicenseUrl: http://multicommander.com/docs/License +Copyright: Copyright 2023 by Mathias Svensson, Sweden - All rights reserved. +ShortDescription: Multi Commander is a multi-tabbed file manager and is an alternative to the standard Windows Explorer. It uses the very popular and efficient dual-panel layout. +Tags: +- commander +- explorer +- file-manager +- files +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/MathiasSvensson/MultiCommander/13.1.0.2955/MathiasSvensson.MultiCommander.yaml b/manifests/m/MathiasSvensson/MultiCommander/13.5.0.2983/MathiasSvensson.MultiCommander.yaml similarity index 67% rename from manifests/m/MathiasSvensson/MultiCommander/13.1.0.2955/MathiasSvensson.MultiCommander.yaml rename to manifests/m/MathiasSvensson/MultiCommander/13.5.0.2983/MathiasSvensson.MultiCommander.yaml index d4d73c9991dea..150c2271ee3f5 100644 --- a/manifests/m/MathiasSvensson/MultiCommander/13.1.0.2955/MathiasSvensson.MultiCommander.yaml +++ b/manifests/m/MathiasSvensson/MultiCommander/13.5.0.2983/MathiasSvensson.MultiCommander.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.2.10 $debug=MDSU.CRLF.7-4-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MathiasSvensson.MultiCommander -PackageVersion: 13.1.0.2955 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: MathiasSvensson.MultiCommander +PackageVersion: 13.5.0.2983 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.installer.yaml b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.installer.yaml index dabd1f615eb1f..4c418dc93eb20 100644 --- a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.installer.yaml +++ b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/23 +# Automatically updated by the winget bot at 2024/Jan/30 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Maxthon.Maxthon diff --git a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.en-US.yaml b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.en-US.yaml index fb88fa73e9a96..28a414b873c37 100644 --- a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.en-US.yaml +++ b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/23 +# Automatically updated by the winget bot at 2024/Jan/30 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Maxthon.Maxthon diff --git a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.zh-CN.yaml b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.zh-CN.yaml index 2ae5fa8d81951..c1e44873538ec 100644 --- a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.zh-CN.yaml +++ b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/23 +# Automatically updated by the winget bot at 2024/Jan/30 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json PackageIdentifier: Maxthon.Maxthon diff --git a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.yaml b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.yaml index fa0fdd7270df8..bed0ee707ea4a 100644 --- a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.yaml +++ b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/23 +# Automatically updated by the winget bot at 2024/Jan/30 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Maxthon.Maxthon diff --git a/manifests/m/MedalB/V/Medal/4.2309.0/MedalB.V.Medal.installer.yaml b/manifests/m/MedalB/V/Medal/4.2309.0/MedalB.V.Medal.installer.yaml new file mode 100644 index 0000000000000..c55945c8e103c --- /dev/null +++ b/manifests/m/MedalB/V/Medal/4.2309.0/MedalB.V.Medal.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: MedalB.V.Medal +PackageVersion: 4.2309.0 +Platform: +- Windows.Desktop +InstallerType: exe +Scope: user +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.medal.tv/production/candidate/electron/win32/4.2309.0/MedalSetup.exe + InstallerSha256: 1C5D37724E16363746BFD2AF11CCD713103C02FCE353331D4BF5D468F22D784E +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/MedalB/V/Medal/4.2309.0/MedalB.V.Medal.locale.en-US.yaml b/manifests/m/MedalB/V/Medal/4.2309.0/MedalB.V.Medal.locale.en-US.yaml new file mode 100644 index 0000000000000..1bbaad33d4841 --- /dev/null +++ b/manifests/m/MedalB/V/Medal/4.2309.0/MedalB.V.Medal.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: MedalB.V.Medal +PackageVersion: 4.2309.0 +PackageLocale: en-US +Publisher: Medal B.V. +PublisherUrl: https://medal.tv/ +PublisherSupportUrl: https://support.medal.tv/ +PrivacyUrl: https://medal.tv/privacy +PackageName: Medal +PackageUrl: https://medal.tv/ +License: Copyright © 2021 Medal B.V. +ShortDescription: Medal.tv lets you clip your gameplay on your PC, Mac, and Mobile devices without dropping a frame. Edit your clips and share them to Medal and any other social platform with a click of a button. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/MedalB/V/Medal/4.2309.0/MedalB.V.Medal.yaml b/manifests/m/MedalB/V/Medal/4.2309.0/MedalB.V.Medal.yaml new file mode 100644 index 0000000000000..a3317d01cf730 --- /dev/null +++ b/manifests/m/MedalB/V/Medal/4.2309.0/MedalB.V.Medal.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: MedalB.V.Medal +PackageVersion: 4.2309.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/108.0.1462.54/Microsoft.Edge.installer.yaml b/manifests/m/Microsoft/Edge/108.0.1462.54/Microsoft.Edge.installer.yaml deleted file mode 100644 index 6a69419b7e365..0000000000000 --- a/manifests/m/Microsoft/Edge/108.0.1462.54/Microsoft.Edge.installer.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 108.0.1462.54 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Commands: -- msedge -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -Installers: -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/92bc3738-b5d1-4fe2-8359-695b6d17661d/MicrosoftEdgeEnterpriseX64.msi - InstallerSha256: F83E437302C1C9CECC7E9F133DB4CD649CF14A4B4776503CD02C0A0CF5838E70 - ProductCode: '{4B325713-EC5E-3D0D-B0F4-80906D2561D6}' -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/2e8675b4-4388-4945-9898-18ee64bd2189/MicrosoftEdgeEnterpriseARM64.msi - InstallerSha256: D64116BB234CF71F59F44887774B6A101E8BE018E20FD31C03394E413156F335 - ProductCode: '{CA8D47F7-1E5B-3A32-B6D7-49C333223233}' -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/4a197141-bb80-41be-a232-eb0cf90f8cdd/MicrosoftEdgeEnterpriseX86.msi - InstallerSha256: 1D1C715786360BFAE6C598213D704FF7BFC7DC7D933E982DB69B5332A6C13B64 - ProductCode: '{ECB0C222-5E5E-325A-AC2D-2C5C23A638E1}' -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/108.0.1462.54/Microsoft.Edge.locale.en-US.yaml b/manifests/m/Microsoft/Edge/108.0.1462.54/Microsoft.Edge.locale.en-US.yaml deleted file mode 100644 index 079b30d9d6ced..0000000000000 --- a/manifests/m/Microsoft/Edge/108.0.1462.54/Microsoft.Edge.locale.en-US.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 108.0.1462.54 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/en-US/ -PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement -Author: Microsoft Corporation -PackageName: Microsoft Edge -PackageUrl: https://www.microsoft.com/en-us/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement/ -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement/ -ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. -# Description: -Moniker: microsoft-edge -Tags: -- blink -- browser -- chromium -- edge -- web -- web-browser -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/108.0.1462.54/Microsoft.Edge.locale.nb-NO.yaml b/manifests/m/Microsoft/Edge/108.0.1462.54/Microsoft.Edge.locale.nb-NO.yaml deleted file mode 100644 index 27bb788c6aba8..0000000000000 --- a/manifests/m/Microsoft/Edge/108.0.1462.54/Microsoft.Edge.locale.nb-NO.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 108.0.1462.54 -PackageLocale: nb-NO -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/nb-NO/ -PublisherSupportUrl: https://support.microsoft.com/nb-NO/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement -Author: Microsoft Corporation -PackageName: Microsoft Edge -PackageUrl: https://www.microsoft.com/nb-no/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/nb-NO/servicesagreement/ -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/nb-NO/servicesagreement/ -ShortDescription: Ytelse i verdensklasse med mer privatliv, mer produktivitet og mer verdi mens du surfer. -# Description: -# Moniker: -Tags: -- nettleser -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/108.0.1462.54/Microsoft.Edge.yaml b/manifests/m/Microsoft/Edge/108.0.1462.54/Microsoft.Edge.yaml deleted file mode 100644 index 44e63d3c31830..0000000000000 --- a/manifests/m/Microsoft/Edge/108.0.1462.54/Microsoft.Edge.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 108.0.1462.54 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/108.0.1462.76/Microsoft.Edge.installer.yaml b/manifests/m/Microsoft/Edge/108.0.1462.76/Microsoft.Edge.installer.yaml deleted file mode 100644 index ce6d3535d3cb1..0000000000000 --- a/manifests/m/Microsoft/Edge/108.0.1462.76/Microsoft.Edge.installer.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 108.0.1462.76 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Commands: -- msedge -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -Installers: -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/3d42c5c0-a1e1-4f90-96ba-967eacd5870a/MicrosoftEdgeEnterpriseX64.msi - InstallerSha256: 69C0F1883AF05AADECC075FE592D3D3663F042AF48D5A57265DDE948BB5C7151 - ProductCode: '{CA43AFE6-5C0B-3879-8677-1DB5A7B9CF9A}' -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/e046c230-c91f-452e-9d2e-44a67eac68d7/MicrosoftEdgeEnterpriseARM64.msi - InstallerSha256: CAA0491F5F30EFAF560450BD0C3AEAC241C0E648DB1008B0F0928D8B6F3E60A5 - ProductCode: '{25FE2D34-E762-3720-8401-F7C96214385F}' -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/654084d4-ee14-4c13-ba84-1246e3987cd3/MicrosoftEdgeEnterpriseX86.msi - InstallerSha256: A68E3EAD4DC2C922328196A9F57A311C084E63A56D138DB38C1E0D217D863FF1 - ProductCode: '{4AB8327D-4BB1-3A0F-806D-95FF635E926C}' -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/108.0.1462.76/Microsoft.Edge.locale.en-US.yaml b/manifests/m/Microsoft/Edge/108.0.1462.76/Microsoft.Edge.locale.en-US.yaml deleted file mode 100644 index e3a4dacb34a2c..0000000000000 --- a/manifests/m/Microsoft/Edge/108.0.1462.76/Microsoft.Edge.locale.en-US.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 108.0.1462.76 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/en-US/ -PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement -Author: Microsoft Corporation -PackageName: Microsoft Edge -PackageUrl: https://www.microsoft.com/en-us/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement/ -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement/ -ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. -# Description: -Moniker: microsoft-edge -Tags: -- blink -- browser -- chromium -- edge -- web -- web-browser -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/108.0.1462.76/Microsoft.Edge.locale.nb-NO.yaml b/manifests/m/Microsoft/Edge/108.0.1462.76/Microsoft.Edge.locale.nb-NO.yaml deleted file mode 100644 index 1dac22d06bdb3..0000000000000 --- a/manifests/m/Microsoft/Edge/108.0.1462.76/Microsoft.Edge.locale.nb-NO.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 108.0.1462.76 -PackageLocale: nb-NO -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/nb-NO/ -PublisherSupportUrl: https://support.microsoft.com/nb-NO/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement -Author: Microsoft Corporation -PackageName: Microsoft Edge -PackageUrl: https://www.microsoft.com/nb-no/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/nb-NO/servicesagreement/ -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/nb-NO/servicesagreement/ -ShortDescription: Ytelse i verdensklasse med mer privatliv, mer produktivitet og mer verdi mens du surfer. -# Description: -# Moniker: -Tags: -- nettleser -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/108.0.1462.76/Microsoft.Edge.yaml b/manifests/m/Microsoft/Edge/108.0.1462.76/Microsoft.Edge.yaml deleted file mode 100644 index 975a865df75bb..0000000000000 --- a/manifests/m/Microsoft/Edge/108.0.1462.76/Microsoft.Edge.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 108.0.1462.76 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/109.0.1518.55/Microsoft.Edge.installer.yaml b/manifests/m/Microsoft/Edge/109.0.1518.55/Microsoft.Edge.installer.yaml deleted file mode 100644 index fe169ba176c9c..0000000000000 --- a/manifests/m/Microsoft/Edge/109.0.1518.55/Microsoft.Edge.installer.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json -PackageIdentifier: Microsoft.Edge -PackageVersion: 109.0.1518.55 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Commands: -- msedge -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -Installers: -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/dd75b458-0c26-4cf6-a4e2-8972f78ecea6/MicrosoftEdgeEnterpriseX64.msi - InstallerSha256: 7638F0E03548B5104FC33CD071C01399C4092B484A85C662E36AA523595FD980 - ProductCode: "{9658DE46-016C-3C7C-BA34-ADC0DA959790}" -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/c7fb2bd8-2676-4942-b7ec-27a42575eec2/MicrosoftEdgeEnterpriseARM64.msi - InstallerSha256: 202979A8D3592618F9505CE0495959161C82A4E129D49B83F03B35BEC39139FD - ProductCode: "{A77EED74-AB64-3D93-BEB4-2696C42E27EF}" -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab08bd3-905c-4250-9b96-2ad14a3c9e10/MicrosoftEdgeEnterpriseX86.msi - InstallerSha256: 4587B266620F8AC735F39B964C071884AE692C5F222EC5C47373F2380BE9FEE9 - ProductCode: "{55D7524A-DF45-3258-B69E-FD1C16DB999C}" -ManifestType: installer -ManifestVersion: 1.2.0 - diff --git a/manifests/m/Microsoft/Edge/109.0.1518.55/Microsoft.Edge.locale.en-US.yaml b/manifests/m/Microsoft/Edge/109.0.1518.55/Microsoft.Edge.locale.en-US.yaml deleted file mode 100644 index a11e728b81c8a..0000000000000 --- a/manifests/m/Microsoft/Edge/109.0.1518.55/Microsoft.Edge.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultlocale.1.2.0.schema.json -PackageIdentifier: Microsoft.Edge -PackageVersion: 109.0.1518.55 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/en-US/ -PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement -Author: Microsoft Corporation -PackageName: Microsoft Edge -PackageUrl: https://www.microsoft.com/en-us/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement/ -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement/ -ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. -Moniker: microsoft-edge -Tags: -- blink -- browser -- chromium -- edge -- web -- web-browser -ManifestType: defaultLocale -ManifestVersion: 1.2.0 - diff --git a/manifests/m/Microsoft/Edge/109.0.1518.55/Microsoft.Edge.locale.nb-NO.yaml b/manifests/m/Microsoft/Edge/109.0.1518.55/Microsoft.Edge.locale.nb-NO.yaml deleted file mode 100644 index 1992be5c7b1b3..0000000000000 --- a/manifests/m/Microsoft/Edge/109.0.1518.55/Microsoft.Edge.locale.nb-NO.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json -PackageIdentifier: Microsoft.Edge -PackageVersion: 109.0.1518.55 -PackageLocale: nb-NO -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/nb-NO/ -PublisherSupportUrl: https://support.microsoft.com/nb-NO/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement -Author: Microsoft Corporation -PackageName: Microsoft Edge -PackageUrl: https://www.microsoft.com/nb-no/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/nb-NO/servicesagreement/ -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/nb-NO/servicesagreement/ -ShortDescription: Ytelse i verdensklasse med mer privatliv, mer produktivitet og mer verdi mens du surfer. -Tags: -- nettleser -ManifestType: locale -ManifestVersion: 1.2.0 - diff --git a/manifests/m/Microsoft/Edge/109.0.1518.61/Microsoft.Edge.installer.yaml b/manifests/m/Microsoft/Edge/109.0.1518.61/Microsoft.Edge.installer.yaml deleted file mode 100644 index d19722d20c320..0000000000000 --- a/manifests/m/Microsoft/Edge/109.0.1518.61/Microsoft.Edge.installer.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 109.0.1518.61 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Commands: -- msedge -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -Installers: -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/ed6a74df-5313-4f5d-b350-87cc53bc8d13/MicrosoftEdgeEnterpriseARM64.msi - InstallerSha256: B935D45681A4073D983433BC91BD72CE004D2BA05771F32EA2ABD153E7B404DE - ProductCode: '{7C09B072-3CB1-3783-ADC8-F6E5711729F7}' -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/f5524660-74d7-4441-9aba-4c5884a171a5/MicrosoftEdgeEnterpriseX64.msi - InstallerSha256: 4343BE214825A50C72FCC0C30655B2A040DF6F53A7410AAE063D90D7E52BF666 - ProductCode: '{66591FF2-28F2-3CFB-9535-8930F1461A2E}' -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/d5b2008c-1352-4373-91eb-75cd969eea07/MicrosoftEdgeEnterpriseX86.msi - InstallerSha256: 5AA1D318EEB4C66D2E4C2D55B02820D22B2C255445EF76A7DF96A9E07E808ECA - ProductCode: '{3BE3E390-2C9D-353D-AB40-46B228A323F7}' -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/109.0.1518.61/Microsoft.Edge.locale.en-US.yaml b/manifests/m/Microsoft/Edge/109.0.1518.61/Microsoft.Edge.locale.en-US.yaml deleted file mode 100644 index f122eefb8615c..0000000000000 --- a/manifests/m/Microsoft/Edge/109.0.1518.61/Microsoft.Edge.locale.en-US.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 109.0.1518.61 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/en-US/ -PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement -Author: Microsoft Corporation -PackageName: Microsoft Edge -PackageUrl: https://www.microsoft.com/en-us/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement/ -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement/ -ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. -# Description: -Moniker: microsoft-edge -Tags: -- blink -- browser -- chromium -- edge -- web -- web-browser -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/109.0.1518.61/Microsoft.Edge.locale.nb-NO.yaml b/manifests/m/Microsoft/Edge/109.0.1518.61/Microsoft.Edge.locale.nb-NO.yaml deleted file mode 100644 index 255859556983c..0000000000000 --- a/manifests/m/Microsoft/Edge/109.0.1518.61/Microsoft.Edge.locale.nb-NO.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 109.0.1518.61 -PackageLocale: nb-NO -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/nb-NO/ -PublisherSupportUrl: https://support.microsoft.com/nb-NO/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement -Author: Microsoft Corporation -PackageName: Microsoft Edge -PackageUrl: https://www.microsoft.com/nb-no/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/nb-NO/servicesagreement/ -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/nb-NO/servicesagreement/ -ShortDescription: Ytelse i verdensklasse med mer privatliv, mer produktivitet og mer verdi mens du surfer. -# Description: -# Moniker: -Tags: -- nettleser -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/109.0.1518.61/Microsoft.Edge.yaml b/manifests/m/Microsoft/Edge/109.0.1518.61/Microsoft.Edge.yaml deleted file mode 100644 index 172c8272835fc..0000000000000 --- a/manifests/m/Microsoft/Edge/109.0.1518.61/Microsoft.Edge.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 109.0.1518.61 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/109.0.1518.70/Microsoft.Edge.installer.yaml b/manifests/m/Microsoft/Edge/109.0.1518.70/Microsoft.Edge.installer.yaml deleted file mode 100644 index fb4b006cb75e2..0000000000000 --- a/manifests/m/Microsoft/Edge/109.0.1518.70/Microsoft.Edge.installer.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 109.0.1518.70 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Commands: -- msedge -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -Installers: -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/64daea79-a443-4a1b-b23a-b286e37e08f6/MicrosoftEdgeEnterpriseARM64.msi - InstallerSha256: F2F4CF141AE12E7A880FF76176CCF6C578EC2D3DE0D2D875ED152D26727B9822 - ProductCode: '{87E8DDB6-FEDA-3559-86DE-2354723EF7D8}' -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/224f0252-19d5-4a90-90dc-89b3999fa1fa/MicrosoftEdgeEnterpriseX64.msi - InstallerSha256: EA1ECCB76CBC59EB085E46DA332B7720252351F4D28FAD2A96B3C70C9F8AB7FF - ProductCode: '{F3DC990F-ABE3-3408-875C-0B84DE962088}' -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/a89bf1fb-636e-40c9-85ea-d349b2ea7451/MicrosoftEdgeEnterpriseX86.msi - InstallerSha256: A571ABA38B7C9F5063F78BECF57A45AEA6A0F75AC0401719140961F60E5CBCB8 - ProductCode: '{AFEE6280-F659-3CCA-A449-EECC91A9E99D}' -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/109.0.1518.70/Microsoft.Edge.locale.en-US.yaml b/manifests/m/Microsoft/Edge/109.0.1518.70/Microsoft.Edge.locale.en-US.yaml deleted file mode 100644 index fabb3567ff28a..0000000000000 --- a/manifests/m/Microsoft/Edge/109.0.1518.70/Microsoft.Edge.locale.en-US.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 109.0.1518.70 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/en-US/ -PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement -Author: Microsoft Corporation -PackageName: Microsoft Edge -PackageUrl: https://www.microsoft.com/en-us/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement/ -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement/ -ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. -# Description: -Moniker: microsoft-edge -Tags: -- blink -- browser -- chromium -- edge -- web -- web-browser -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/109.0.1518.70/Microsoft.Edge.locale.nb-NO.yaml b/manifests/m/Microsoft/Edge/109.0.1518.70/Microsoft.Edge.locale.nb-NO.yaml deleted file mode 100644 index e7df98503e7dd..0000000000000 --- a/manifests/m/Microsoft/Edge/109.0.1518.70/Microsoft.Edge.locale.nb-NO.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 109.0.1518.70 -PackageLocale: nb-NO -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/nb-NO/ -PublisherSupportUrl: https://support.microsoft.com/nb-NO/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement -Author: Microsoft Corporation -PackageName: Microsoft Edge -PackageUrl: https://www.microsoft.com/nb-no/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/nb-NO/servicesagreement/ -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/nb-NO/servicesagreement/ -ShortDescription: Ytelse i verdensklasse med mer privatliv, mer produktivitet og mer verdi mens du surfer. -# Description: -# Moniker: -Tags: -- nettleser -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/109.0.1518.70/Microsoft.Edge.yaml b/manifests/m/Microsoft/Edge/109.0.1518.70/Microsoft.Edge.yaml deleted file mode 100644 index 0ff8cbb7aa471..0000000000000 --- a/manifests/m/Microsoft/Edge/109.0.1518.70/Microsoft.Edge.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Microsoft.Edge -PackageVersion: 109.0.1518.70 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/Beta/117.0.2045.27/Microsoft.Edge.Beta.installer.yaml b/manifests/m/Microsoft/Edge/Beta/117.0.2045.27/Microsoft.Edge.Beta.installer.yaml deleted file mode 100644 index 5245a33186816..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/117.0.2045.27/Microsoft.Edge.Beta.installer.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 117.0.2045.27 -InstallerLocale: en-US -InstallerType: msi -Scope: machine -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -ReleaseDate: 2023-09-14 -AppsAndFeaturesEntries: -- UpgradeCode: "{55B884A6-908D-3E59-BDCE-5E4BFA64FA7B}" -Installers: -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/ced9e42e-8561-4d54-b666-784bfdf71b98/MicrosoftEdgeBetaEnterpriseX86.msi - InstallerSha256: 8C1A1EE7418CE8DE52614C20D36069F34735A9082EC2E47BDDD026FEAC48078D - ProductCode: "{5EF8B41F-2F16-3CB8-9475-49FEECC16C29}" -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/61133b56-5256-463c-885e-d8d48633e3a9/MicrosoftEdgeBetaEnterpriseX64.msi - InstallerSha256: 88850370716224645FC25D045E270FA4D8176A9A7BB0589FB2D14CF401EC76DB - ProductCode: "{D61BED85-CE45-33BB-BC38-DE109F996146}" -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/9387b36b-3f41-4742-922b-aec24f192565/MicrosoftEdgeBetaEnterpriseARM64.msi - InstallerSha256: 33A904AC6507B630929E93959CC44200721CEE367F3174FB733124BE9628DF78 - ProductCode: "{1372EE8B-929A-32F0-A283-7245C77821F7}" -ManifestType: installer -ManifestVersion: 1.5.0 - diff --git a/manifests/m/Microsoft/Edge/Beta/117.0.2045.27/Microsoft.Edge.Beta.locale.en-US.yaml b/manifests/m/Microsoft/Edge/Beta/117.0.2045.27/Microsoft.Edge.Beta.locale.en-US.yaml deleted file mode 100644 index 5f03f5cf175b4..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/117.0.2045.27/Microsoft.Edge.Beta.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultlocale.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 117.0.2045.27 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/en-US -PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement -Author: Microsoft -PackageName: Microsoft Edge Beta -PackageUrl: https://www.microsoft.com/en-us/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement -ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. -Moniker: msedge-beta -Tags: -- beta -- browser -- chromium -- edge -- web -- web-browser -ManifestType: defaultLocale -ManifestVersion: 1.5.0 - diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.11/Microsoft.Edge.Beta.installer.yaml b/manifests/m/Microsoft/Edge/Beta/118.0.2088.11/Microsoft.Edge.Beta.installer.yaml deleted file mode 100644 index 1dc5b2734bfcf..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.11/Microsoft.Edge.Beta.installer.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.11 -InstallerLocale: en-US -InstallerType: msi -Scope: machine -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -ReleaseDate: 2023-09-20 -AppsAndFeaturesEntries: -- UpgradeCode: "{55B884A6-908D-3E59-BDCE-5E4BFA64FA7B}" -Installers: -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/185a5d6c-20fc-4e56-9e1e-f866555a0e92/MicrosoftEdgeBetaEnterpriseX86.msi - InstallerSha256: 0601D1B33A4FC01B0E2DD271B0D143117FF3726CBF484F285A42E0DB81C294A9 - ProductCode: "{74227700-795E-3F67-9D66-281365E3A07F}" -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/50f2fc56-0cb4-4a1d-8469-1b7fb6567978/MicrosoftEdgeBetaEnterpriseX64.msi - InstallerSha256: BB2EB7EF4E72D94036A48E0B21FBCB3247350EF29F6E14967ED5D492C083F980 - ProductCode: "{B0B9FB82-FDC0-3434-AF1E-AC2C85637ED9}" -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/38a104ea-dec7-48df-bd76-03608fe2074a/MicrosoftEdgeBetaEnterpriseARM64.msi - InstallerSha256: 3CC01E37530B0B94F43102F1992D7DA5DCF13C1EA160B10E0F7D01761693A987 - ProductCode: "{AED4C83D-06DC-3715-BFCA-A8026BCEA914}" -ManifestType: installer -ManifestVersion: 1.5.0 - diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.11/Microsoft.Edge.Beta.locale.en-US.yaml b/manifests/m/Microsoft/Edge/Beta/118.0.2088.11/Microsoft.Edge.Beta.locale.en-US.yaml deleted file mode 100644 index 91d5c854e678c..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.11/Microsoft.Edge.Beta.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultlocale.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.11 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/en-US -PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement -Author: Microsoft -PackageName: Microsoft Edge Beta -PackageUrl: https://www.microsoft.com/en-us/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement -ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. -Moniker: msedge-beta -Tags: -- beta -- browser -- chromium -- edge -- web -- web-browser -ManifestType: defaultLocale -ManifestVersion: 1.5.0 - diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.17/Microsoft.Edge.Beta.installer.yaml b/manifests/m/Microsoft/Edge/Beta/118.0.2088.17/Microsoft.Edge.Beta.installer.yaml deleted file mode 100644 index a3c80e2167f66..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.17/Microsoft.Edge.Beta.installer.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.17 -InstallerLocale: en-US -InstallerType: msi -Scope: machine -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -ReleaseDate: 2023-09-25 -AppsAndFeaturesEntries: -- UpgradeCode: '{55B884A6-908D-3E59-BDCE-5E4BFA64FA7B}' -Installers: -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/fc72332d-831b-47d5-befc-28c4e40c1663/MicrosoftEdgeBetaEnterpriseX86.msi - InstallerSha256: EC1B25ED3C601145852D0CC6E3AA07587BEB094C2EEB24E7BFC5E94D12DB870E - ProductCode: '{6B48B5F3-0175-36EB-BC04-C1E61FC6D7A6}' -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/7adec542-f34c-4dea-8e2a-f8c6fab4d2f3/MicrosoftEdgeBetaEnterpriseX64.msi - InstallerSha256: 5D1142A43A1DB4AF27A89C683BC430A41B30E33F271926B7B38A7C4566CFA6BC - ProductCode: '{CA60B714-112E-3053-A61E-124743BD435A}' -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/7dc4a7c0-6f15-463f-8e01-4a0063e21378/MicrosoftEdgeBetaEnterpriseARM64.msi - InstallerSha256: 4D0DCC6BA2B0FE155A629684656A27A08E656108990C9C2C812355A505ED76B8 - ProductCode: '{249712EE-E845-37CE-AE5B-F6DFC66B714B}' -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.17/Microsoft.Edge.Beta.locale.en-US.yaml b/manifests/m/Microsoft/Edge/Beta/118.0.2088.17/Microsoft.Edge.Beta.locale.en-US.yaml deleted file mode 100644 index 6a56de1a3d990..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.17/Microsoft.Edge.Beta.locale.en-US.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.17 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/en-US -PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement -Author: Microsoft -PackageName: Microsoft Edge Beta -PackageUrl: https://www.microsoft.com/en-us/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement -ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. -Moniker: msedge-beta -Tags: -- beta -- browser -- chromium -- edge -- web -- web-browser -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.24/Microsoft.Edge.Beta.installer.yaml b/manifests/m/Microsoft/Edge/Beta/118.0.2088.24/Microsoft.Edge.Beta.installer.yaml deleted file mode 100644 index 131c034e59502..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.24/Microsoft.Edge.Beta.installer.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.24 -InstallerLocale: en-US -InstallerType: msi -Scope: machine -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -ReleaseDate: 2023-10-02 -AppsAndFeaturesEntries: -- UpgradeCode: '{55B884A6-908D-3E59-BDCE-5E4BFA64FA7B}' -Installers: -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/5ebb0770-497e-44eb-80c6-c7102d2cf14e/MicrosoftEdgeBetaEnterpriseX86.msi - InstallerSha256: D8E1F352C27A49F8D9859D4CB6A61B35EA99270666E700EF4B7F3BC7E1737FB3 - ProductCode: '{DF799EF1-EDB3-3E50-8AE9-09EBC38BFE63}' -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/9824b7c2-33b7-4b1c-8439-c81c41d4c173/MicrosoftEdgeBetaEnterpriseX64.msi - InstallerSha256: C1312FD2A8988539D2EF1BCE6186E0817DC463272847A6420EEBD0E420543473 - ProductCode: '{97953644-B21A-3A99-8377-5E2A4D3C1A23}' -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/bce3acb5-23e7-4f45-b04d-5e85bc61e22a/MicrosoftEdgeBetaEnterpriseARM64.msi - InstallerSha256: D98DE539BA45654F9F93AB1A001516AF2A86FD49A7FF5D24E0AE9F66137B4D86 - ProductCode: '{155F6BE4-4F49-37F3-BCF8-F478704A3A4C}' -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.24/Microsoft.Edge.Beta.locale.en-US.yaml b/manifests/m/Microsoft/Edge/Beta/118.0.2088.24/Microsoft.Edge.Beta.locale.en-US.yaml deleted file mode 100644 index 6919d025173e5..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.24/Microsoft.Edge.Beta.locale.en-US.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.24 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/en-US -PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement -Author: Microsoft -PackageName: Microsoft Edge Beta -PackageUrl: https://www.microsoft.com/en-us/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement -ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. -Moniker: msedge-beta -Tags: -- beta -- browser -- chromium -- edge -- web -- web-browser -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.27/Microsoft.Edge.Beta.installer.yaml b/manifests/m/Microsoft/Edge/Beta/118.0.2088.27/Microsoft.Edge.Beta.installer.yaml deleted file mode 100644 index 747b8e83faeb6..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.27/Microsoft.Edge.Beta.installer.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.27 -InstallerLocale: en-US -InstallerType: msi -Scope: machine -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -ReleaseDate: 2023-10-03 -AppsAndFeaturesEntries: -- UpgradeCode: '{55B884A6-908D-3E59-BDCE-5E4BFA64FA7B}' -Installers: -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/e0553bf8-6b97-491b-b803-75b87c86dbc5/MicrosoftEdgeBetaEnterpriseX86.msi - InstallerSha256: A1C813847E040170ED3860B130AA7B68AD5400B6DED88CF12FA2D055A8C50CB8 - ProductCode: '{327972C2-B024-33E3-A6EA-242C231A9000}' -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/42dcf611-0a84-4c2f-b41c-78cf8e0fc16e/MicrosoftEdgeBetaEnterpriseX64.msi - InstallerSha256: 03417760F989E44990ACD49C01E40254AFC1CFF8DFE0A76FA91EE876E4A24270 - ProductCode: '{094A30FE-EADC-3C94-AE15-4FDE943DC4A3}' -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/38807564-6c0f-40f1-8302-8bfa8420cd2b/MicrosoftEdgeBetaEnterpriseARM64.msi - InstallerSha256: 08FB23A3B31E501249B04030AAF7B2E0EE31AF27F0854988014DDF3B76335D5C - ProductCode: '{7F3ABE3A-D529-3550-82BC-9D2E37A1D385}' -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.27/Microsoft.Edge.Beta.locale.en-US.yaml b/manifests/m/Microsoft/Edge/Beta/118.0.2088.27/Microsoft.Edge.Beta.locale.en-US.yaml deleted file mode 100644 index 7bc49dce23e54..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.27/Microsoft.Edge.Beta.locale.en-US.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.27 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/en-US -PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement -Author: Microsoft -PackageName: Microsoft Edge Beta -PackageUrl: https://www.microsoft.com/en-us/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement -ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. -Moniker: msedge-beta -Tags: -- beta -- browser -- chromium -- edge -- web -- web-browser -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.27/Microsoft.Edge.Beta.yaml b/manifests/m/Microsoft/Edge/Beta/118.0.2088.27/Microsoft.Edge.Beta.yaml deleted file mode 100644 index 41c83749bba8d..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.27/Microsoft.Edge.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.27 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.41/Microsoft.Edge.Beta.installer.yaml b/manifests/m/Microsoft/Edge/Beta/118.0.2088.41/Microsoft.Edge.Beta.installer.yaml deleted file mode 100644 index aa14929ea732e..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.41/Microsoft.Edge.Beta.installer.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.41 -InstallerLocale: en-US -InstallerType: msi -Scope: machine -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -ReleaseDate: 2023-10-11 -AppsAndFeaturesEntries: -- UpgradeCode: "{55B884A6-908D-3E59-BDCE-5E4BFA64FA7B}" -Installers: -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/7a45c52f-aaba-4342-9634-39d774ce1055/MicrosoftEdgeBetaEnterpriseX86.msi - InstallerSha256: 3DD3B68D55FA335BA422E94CDF244C9EFF8F740B1AE227DA084C7AD13AC22363 - ProductCode: "{E7E57015-D3A4-3C64-A625-BD7CA5C51DE8}" -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/9bbf9dec-a186-4950-a2d9-4631ed7a86f9/MicrosoftEdgeBetaEnterpriseX64.msi - InstallerSha256: 63C4B205969B8EE7B482AC5396EB0BBC8B4A9728DA4492AEBB93FB078019D7C9 - ProductCode: "{36FEF132-CB85-33B1-8025-C67939A76629}" -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/bff1e845-1e73-4e86-92c3-f5599b379170/MicrosoftEdgeBetaEnterpriseARM64.msi - InstallerSha256: 9C9201FE592C214287984E44C5FEC29CC4A27BC358D23C8536B4C78DA93C87A6 - ProductCode: "{70971EDD-B3FF-35D2-BCB1-6644E6B08F11}" -ManifestType: installer -ManifestVersion: 1.5.0 - diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.41/Microsoft.Edge.Beta.locale.en-US.yaml b/manifests/m/Microsoft/Edge/Beta/118.0.2088.41/Microsoft.Edge.Beta.locale.en-US.yaml deleted file mode 100644 index ff7c6b5972ec4..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.41/Microsoft.Edge.Beta.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultlocale.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.41 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/en-US -PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement -Author: Microsoft -PackageName: Microsoft Edge Beta -PackageUrl: https://www.microsoft.com/en-us/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement -ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. -Moniker: msedge-beta -Tags: -- beta -- browser -- chromium -- edge -- web -- web-browser -ManifestType: defaultLocale -ManifestVersion: 1.5.0 - diff --git a/manifests/m/Microsoft/Edge/Beta/119.0.2151.12/Microsoft.Edge.Beta.installer.yaml b/manifests/m/Microsoft/Edge/Beta/119.0.2151.12/Microsoft.Edge.Beta.installer.yaml deleted file mode 100644 index 8e6227f89bb16..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/119.0.2151.12/Microsoft.Edge.Beta.installer.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 119.0.2151.12 -InstallerLocale: en-US -InstallerType: msi -Scope: machine -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -ReleaseDate: 2023-10-19 -AppsAndFeaturesEntries: -- UpgradeCode: "{55B884A6-908D-3E59-BDCE-5E4BFA64FA7B}" -Installers: -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/bffb394b-f5e9-411c-9e12-83e77fd52a0e/MicrosoftEdgeBetaEnterpriseX86.msi - InstallerSha256: 38F7035E1E88D517288AD27C3FD8F0E16F7B25043CB3A8F4449B0D79710B678E - ProductCode: "{04466008-DBA6-367C-96B2-F26D46E340F8}" -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/2ae8ad90-198a-4ea6-bc5e-890ebc308982/MicrosoftEdgeBetaEnterpriseX64.msi - InstallerSha256: 9182D6FFFE96CC6B799BCA67770E91C4ECCCC28D6A821703C0646E4DCB15A8D4 - ProductCode: "{C463F312-212B-3543-BFBF-43190C7DCCFE}" -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/f3a4ba6c-ee74-4f94-ac18-28f07ea0e687/MicrosoftEdgeBetaEnterpriseARM64.msi - InstallerSha256: 993ECF0D4402D0E23C751A0B8DACB960E9BCC5879EC63425EDA8EF710449E2CE - ProductCode: "{6051901D-EAB2-3E44-B8D9-82DA81B9FDD3}" -ManifestType: installer -ManifestVersion: 1.5.0 - diff --git a/manifests/m/Microsoft/Edge/Beta/119.0.2151.12/Microsoft.Edge.Beta.locale.en-US.yaml b/manifests/m/Microsoft/Edge/Beta/119.0.2151.12/Microsoft.Edge.Beta.locale.en-US.yaml deleted file mode 100644 index 499b50869a58c..0000000000000 --- a/manifests/m/Microsoft/Edge/Beta/119.0.2151.12/Microsoft.Edge.Beta.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultlocale.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 119.0.2151.12 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/en-US -PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge -PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement -Author: Microsoft -PackageName: Microsoft Edge Beta -PackageUrl: https://www.microsoft.com/en-us/edge -License: MIT License -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement -ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. -Moniker: msedge-beta -Tags: -- beta -- browser -- chromium -- edge -- web -- web-browser -ManifestType: defaultLocale -ManifestVersion: 1.5.0 - diff --git a/manifests/m/Microsoft/Edge/Dev/118.0.2088.9/Microsoft.Edge.Dev.installer.yaml b/manifests/m/Microsoft/Edge/Dev/118.0.2088.9/Microsoft.Edge.Dev.installer.yaml deleted file mode 100644 index 08e4c41423332..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/118.0.2088.9/Microsoft.Edge.Dev.installer.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 118.0.2088.9 -InstallerLocale: en-US -Platform: -- Windows.Desktop -InstallerType: msi -Scope: machine -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -ReleaseDate: 2023-09-19 -AppsAndFeaturesEntries: -- UpgradeCode: '{B2F4640E-B3EE-351A-A71F-C5DA7048B1B4}' -Installers: -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/31b2c057-cf95-4dae-95fc-d20c1f814811/MicrosoftEdgeDevEnterpriseX86.msi - InstallerSha256: D83589C486DFE82502FF2D734C2A342157DBCED1A66BB949D68FA6E2C3877A19 - ProductCode: '{F77BDC88-B486-33B1-8F0C-6A1016060899}' -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/647c557b-46ac-48f3-bdfb-e71d2d1c4f3b/MicrosoftEdgeDevEnterpriseX64.msi - InstallerSha256: E433163DB9A3CBCE5639D5583FC07DB551893EF1673DAEB7C3F131B2D9649639 - ProductCode: '{F308E4B9-3CCD-32C1-B45C-0C35A329A897}' -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/2f7720ec-5337-4d8c-8b5d-c360e5e5c827/MicrosoftEdgeDevEnterpriseARM64.msi - InstallerSha256: 4AEB9348DF997876BA3E572997CBD499937D7FBE1661B906F8475F0F79C3872A - ProductCode: '{769F762B-B57D-3040-9A94-5060C21FC5DC}' -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Dev/118.0.2088.9/Microsoft.Edge.Dev.locale.en-US.yaml b/manifests/m/Microsoft/Edge/Dev/118.0.2088.9/Microsoft.Edge.Dev.locale.en-US.yaml deleted file mode 100644 index 28dd8e1477502..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/118.0.2088.9/Microsoft.Edge.Dev.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 118.0.2088.9 -PackageLocale: en-US -Publisher: Microsoft Corporation -Author: Microsoft -PackageName: Microsoft Edge Dev -PackageUrl: https://www.microsoft.com/en-us/edge -License: Proprietary -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks -ShortDescription: Microsoft Edge is the best browser for Windows. Sync your passwords, favorites, and settings across multiple devices and start using Microsoft Edge today. -Description: |- - Microsoft Edge is a cross-platform web browser created and developed by Microsoft. - It was first released for Windows 10 and Xbox One in 2015, for Android and iOS in 2017, for macOS in 2019, and for Linux in 2020, and can replace Internet Explorer on Windows 7, Windows Server 2008 R2 and later versions but unlike IE, this browser does not support Windows Vista or earlier versions. -Tags: -- browser -- chromium -- edge -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Dev/118.0.2088.9/Microsoft.Edge.Dev.yaml b/manifests/m/Microsoft/Edge/Dev/118.0.2088.9/Microsoft.Edge.Dev.yaml deleted file mode 100644 index fbc10bc9a9d3c..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/118.0.2088.9/Microsoft.Edge.Dev.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 118.0.2088.9 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Dev/119.0.2109.1/Microsoft.Edge.Dev.installer.yaml b/manifests/m/Microsoft/Edge/Dev/119.0.2109.1/Microsoft.Edge.Dev.installer.yaml deleted file mode 100644 index 3a0fbe762c128..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/119.0.2109.1/Microsoft.Edge.Dev.installer.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 119.0.2109.1 -InstallerLocale: en-US -Platform: -- Windows.Desktop -InstallerType: msi -Scope: machine -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -ReleaseDate: 2023-09-21 -AppsAndFeaturesEntries: -- UpgradeCode: '{B2F4640E-B3EE-351A-A71F-C5DA7048B1B4}' -Installers: -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/9363b5ee-539f-4a4a-8961-44f73df4abf8/MicrosoftEdgeDevEnterpriseX86.msi - InstallerSha256: 2CC040229E089E93D5C284359E238245F9221A52D7D59CED2BC85306E92784A9 - ProductCode: '{4AB196C1-D36B-3C86-89B1-984819ECA281}' -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/3b6b2032-8ea4-4616-91a8-72ce68239d2b/MicrosoftEdgeDevEnterpriseX64.msi - InstallerSha256: 6565B82067E08E43206B16567070C71BA8AF8EC490DB2D90870EF33543AB1A6C - ProductCode: '{34603E1E-24D4-38C4-A5B9-47A49F4BBB17}' -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/f8d51bd2-9382-441c-ba58-6af79f373f1b/MicrosoftEdgeDevEnterpriseARM64.msi - InstallerSha256: 7BB121FE7CC822E3501FF619085A1D46876F62ACBD2AB69163D813B0811E134E - ProductCode: '{AE3837E0-9DC2-3592-A408-0B12FA71E1BA}' -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Dev/119.0.2109.1/Microsoft.Edge.Dev.locale.en-US.yaml b/manifests/m/Microsoft/Edge/Dev/119.0.2109.1/Microsoft.Edge.Dev.locale.en-US.yaml deleted file mode 100644 index bac94129e3ea0..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/119.0.2109.1/Microsoft.Edge.Dev.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 119.0.2109.1 -PackageLocale: en-US -Publisher: Microsoft Corporation -Author: Microsoft -PackageName: Microsoft Edge Dev -PackageUrl: https://www.microsoft.com/en-us/edge -License: Proprietary -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks -ShortDescription: Microsoft Edge is the best browser for Windows. Sync your passwords, favorites, and settings across multiple devices and start using Microsoft Edge today. -Description: |- - Microsoft Edge is a cross-platform web browser created and developed by Microsoft. - It was first released for Windows 10 and Xbox One in 2015, for Android and iOS in 2017, for macOS in 2019, and for Linux in 2020, and can replace Internet Explorer on Windows 7, Windows Server 2008 R2 and later versions but unlike IE, this browser does not support Windows Vista or earlier versions. -Tags: -- browser -- chromium -- edge -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Dev/119.0.2109.1/Microsoft.Edge.Dev.yaml b/manifests/m/Microsoft/Edge/Dev/119.0.2109.1/Microsoft.Edge.Dev.yaml deleted file mode 100644 index 6da666b889ed4..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/119.0.2109.1/Microsoft.Edge.Dev.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 119.0.2109.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Dev/119.0.2116.0/Microsoft.Edge.Dev.installer.yaml b/manifests/m/Microsoft/Edge/Dev/119.0.2116.0/Microsoft.Edge.Dev.installer.yaml deleted file mode 100644 index 5903c403347e7..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/119.0.2116.0/Microsoft.Edge.Dev.installer.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 119.0.2116.0 -InstallerLocale: en-US -Platform: -- Windows.Desktop -InstallerType: msi -Scope: machine -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -ReleaseDate: 2023-09-26 -AppsAndFeaturesEntries: -- UpgradeCode: '{B2F4640E-B3EE-351A-A71F-C5DA7048B1B4}' -Installers: -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/1573d837-31e5-46f0-9759-3cf471d73806/MicrosoftEdgeDevEnterpriseX86.msi - InstallerSha256: F67FDCE3D34842A64F63356CDC9AF2BA0468705285F310E922E01303C9291D78 - ProductCode: '{382D041F-2533-3A7E-9ADF-6B3403A28BF5}' -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/b68c27de-02f1-4e82-922f-0b02fad9e696/MicrosoftEdgeDevEnterpriseX64.msi - InstallerSha256: 0244F2A4E2D9BDAC77DA25E865A0AB25D19F82FEE19AB308C39A74D0BBC2A267 - ProductCode: '{97AA03BA-2D49-3CCC-99BB-59A15EC0C6F4}' -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/bd67329b-f27d-4fb4-8ec1-b5513e7c42b0/MicrosoftEdgeDevEnterpriseARM64.msi - InstallerSha256: D0702E1EA72BD589C2054DA562155031F0B56BD0A1F9E3BCE23904D125EA0DBC - ProductCode: '{EB8073AF-81FC-336E-A56A-C6B5626FC3A0}' -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Dev/119.0.2116.0/Microsoft.Edge.Dev.locale.en-US.yaml b/manifests/m/Microsoft/Edge/Dev/119.0.2116.0/Microsoft.Edge.Dev.locale.en-US.yaml deleted file mode 100644 index ada293b143032..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/119.0.2116.0/Microsoft.Edge.Dev.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 119.0.2116.0 -PackageLocale: en-US -Publisher: Microsoft Corporation -Author: Microsoft -PackageName: Microsoft Edge Dev -PackageUrl: https://www.microsoft.com/en-us/edge -License: Proprietary -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks -ShortDescription: Microsoft Edge is the best browser for Windows. Sync your passwords, favorites, and settings across multiple devices and start using Microsoft Edge today. -Description: |- - Microsoft Edge is a cross-platform web browser created and developed by Microsoft. - It was first released for Windows 10 and Xbox One in 2015, for Android and iOS in 2017, for macOS in 2019, and for Linux in 2020, and can replace Internet Explorer on Windows 7, Windows Server 2008 R2 and later versions but unlike IE, this browser does not support Windows Vista or earlier versions. -Tags: -- browser -- chromium -- edge -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Dev/119.0.2116.0/Microsoft.Edge.Dev.yaml b/manifests/m/Microsoft/Edge/Dev/119.0.2116.0/Microsoft.Edge.Dev.yaml deleted file mode 100644 index 8389bfd2ec64a..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/119.0.2116.0/Microsoft.Edge.Dev.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 119.0.2116.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Dev/119.0.2132.0/Microsoft.Edge.Dev.installer.yaml b/manifests/m/Microsoft/Edge/Dev/119.0.2132.0/Microsoft.Edge.Dev.installer.yaml deleted file mode 100644 index 9b93c3698c3f0..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/119.0.2132.0/Microsoft.Edge.Dev.installer.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 119.0.2132.0 -InstallerLocale: en-US -Platform: -- Windows.Desktop -InstallerType: msi -Scope: machine -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -ReleaseDate: 2023-10-03 -AppsAndFeaturesEntries: -- UpgradeCode: '{B2F4640E-B3EE-351A-A71F-C5DA7048B1B4}' -Installers: -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/51fb8122-4b9c-4e0e-a6a9-f0c1ea6267f7/MicrosoftEdgeDevEnterpriseX86.msi - InstallerSha256: 8B98F88D2EBACE79BF6007D332AA44FB159BA10B1BF344D0EA6632EB4D5F33DB - ProductCode: '{AAA991DE-3B2D-3F6A-ABB9-629503A1D17C}' -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/b5786f91-b0e5-4dda-9a52-cdc1baa738cc/MicrosoftEdgeDevEnterpriseX64.msi - InstallerSha256: EE05BF08664B077D5132B6D312A30A22DFAD8052FF19C0DC9F8EB27E9A4C7C52 - ProductCode: '{89E50DBA-9E9B-335F-88E8-C2B72002DCCD}' -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/78cd3c06-f96c-4f69-894b-2ea63fc29f75/MicrosoftEdgeDevEnterpriseARM64.msi - InstallerSha256: A98E39459C4834662B7F83363576E23152E30316C256E066D41907D0440D3BF1 - ProductCode: '{1C05F849-BFAD-3024-B893-A7810B5C72F7}' -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Dev/119.0.2132.0/Microsoft.Edge.Dev.locale.en-US.yaml b/manifests/m/Microsoft/Edge/Dev/119.0.2132.0/Microsoft.Edge.Dev.locale.en-US.yaml deleted file mode 100644 index 4b08ef5192e9d..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/119.0.2132.0/Microsoft.Edge.Dev.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 119.0.2132.0 -PackageLocale: en-US -Publisher: Microsoft Corporation -Author: Microsoft -PackageName: Microsoft Edge Dev -PackageUrl: https://www.microsoft.com/en-us/edge -License: Proprietary -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks -ShortDescription: Microsoft Edge is the best browser for Windows. Sync your passwords, favorites, and settings across multiple devices and start using Microsoft Edge today. -Description: |- - Microsoft Edge is a cross-platform web browser created and developed by Microsoft. - It was first released for Windows 10 and Xbox One in 2015, for Android and iOS in 2017, for macOS in 2019, and for Linux in 2020, and can replace Internet Explorer on Windows 7, Windows Server 2008 R2 and later versions but unlike IE, this browser does not support Windows Vista or earlier versions. -Tags: -- browser -- chromium -- edge -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Dev/119.0.2132.0/Microsoft.Edge.Dev.yaml b/manifests/m/Microsoft/Edge/Dev/119.0.2132.0/Microsoft.Edge.Dev.yaml deleted file mode 100644 index 6d3dea3f48e97..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/119.0.2132.0/Microsoft.Edge.Dev.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 119.0.2132.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Dev/120.0.2165.1/Microsoft.Edge.Dev.installer.yaml b/manifests/m/Microsoft/Edge/Dev/120.0.2165.1/Microsoft.Edge.Dev.installer.yaml deleted file mode 100644 index 9d8c1ba0db8a7..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/120.0.2165.1/Microsoft.Edge.Dev.installer.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 120.0.2165.1 -InstallerLocale: en-US -Platform: -- Windows.Desktop -InstallerType: msi -Scope: machine -Protocols: -- http -- https -FileExtensions: -- crx -- htm -- html -- pdf -- url -ReleaseDate: 2023-10-19 -AppsAndFeaturesEntries: -- UpgradeCode: "{B2F4640E-B3EE-351A-A71F-C5DA7048B1B4}" -Installers: -- Architecture: x86 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/177e5c7f-7475-4cff-8374-e805ee56f78d/MicrosoftEdgeDevEnterpriseX86.msi - InstallerSha256: BC88705CF1377B6E8D18F8E051C9E99851D392DF50AC915474178A087286E2F4 - ProductCode: "{975F6290-8A86-3BA3-9A24-AD1C7DC7520B}" -- Architecture: x64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/0a74bf50-fc6b-425c-937b-9e8e7be0f92a/MicrosoftEdgeDevEnterpriseX64.msi - InstallerSha256: DDE49AC46A4C96313B3C117D854AA45CCF0E6F8A48985966EF1B11F020D8B20A - ProductCode: "{9C81614A-2345-3133-9DEB-B6C1C4B32C39}" -- Architecture: arm64 - InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/e5a75d25-4c5a-4e29-bc8b-c7845fe49a78/MicrosoftEdgeDevEnterpriseARM64.msi - InstallerSha256: A824F867C6BB76BC6C57E37714C59332CFF3DDDA6FE1EDEA4D83BE7B74956949 - ProductCode: "{5F16EA6E-A599-3A4A-9F0D-2A6F0FE9F4BE}" -ManifestType: installer -ManifestVersion: 1.5.0 - diff --git a/manifests/m/Microsoft/Edge/Dev/120.0.2165.1/Microsoft.Edge.Dev.locale.en-US.yaml b/manifests/m/Microsoft/Edge/Dev/120.0.2165.1/Microsoft.Edge.Dev.locale.en-US.yaml deleted file mode 100644 index 358c53465b5c6..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/120.0.2165.1/Microsoft.Edge.Dev.locale.en-US.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultlocale.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 120.0.2165.1 -PackageLocale: en-US -Publisher: Microsoft Corporation -Author: Microsoft -PackageName: Microsoft Edge Dev -PackageUrl: https://www.microsoft.com/en-us/edge -License: Proprietary -LicenseUrl: https://www.microsoft.com/en-us/servicesagreement -Copyright: Copyright (C) Microsoft Corporation -CopyrightUrl: https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks -ShortDescription: Microsoft Edge is the best browser for Windows. Sync your passwords, favorites, and settings across multiple devices and start using Microsoft Edge today. -Description: |- - Microsoft Edge is a cross-platform web browser created and developed by Microsoft. - It was first released for Windows 10 and Xbox One in 2015, for Android and iOS in 2017, for macOS in 2019, and for Linux in 2020, and can replace Internet Explorer on Windows 7, Windows Server 2008 R2 and later versions but unlike IE, this browser does not support Windows Vista or earlier versions. -Tags: -- browser -- chromium -- edge -ManifestType: defaultLocale -ManifestVersion: 1.5.0 - diff --git a/manifests/m/Microsoft/Edge/Dev/120.0.2165.1/Microsoft.Edge.Dev.yaml b/manifests/m/Microsoft/Edge/Dev/120.0.2165.1/Microsoft.Edge.Dev.yaml deleted file mode 100644 index 2f79a02f74d13..0000000000000 --- a/manifests/m/Microsoft/Edge/Dev/120.0.2165.1/Microsoft.Edge.Dev.yaml +++ /dev/null @@ -1,7 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Dev -PackageVersion: 120.0.2165.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 - diff --git a/manifests/m/Microsoft/OpenJDK/17/17.0.10.7/Microsoft.OpenJDK.17.installer.yaml b/manifests/m/Microsoft/OpenJDK/17/17.0.10.7/Microsoft.OpenJDK.17.installer.yaml index 67ae66117370c..ca2436aee6253 100644 --- a/manifests/m/Microsoft/OpenJDK/17/17.0.10.7/Microsoft.OpenJDK.17.installer.yaml +++ b/manifests/m/Microsoft/OpenJDK/17/17.0.10.7/Microsoft.OpenJDK.17.installer.yaml @@ -13,15 +13,30 @@ InstallModes: InstallerSwitches: Custom: ADDLOCAL=FeatureMain,FeatureEnvironment,FeatureJarFileRunWith,FeatureJavaHome UpgradeBehavior: uninstallPrevious -ElevationRequirement: elevatesSelf Installers: - Architecture: x64 + ElevationRequirement: elevatesSelf InstallerUrl: https://aka.ms/download-jdk/microsoft-jdk-17.0.10-windows-x64.msi#winget InstallerSha256: 27253F0698975BA02BDF397A86AED3C264592787F9BA0259E3FE550F2E6E0896 ProductCode: '{ED36DBA7-F9B4-4C72-91FB-9E4CCD3C3841}' - Architecture: arm64 + ElevationRequirement: elevatesSelf InstallerUrl: https://aka.ms/download-jdk/microsoft-jdk-17.0.10-windows-aarch64.msi#winget InstallerSha256: 35372AB40030BD9F2DE2C59C5151E6A658E89AA5675EF7780EA9C0A167DEF979 ProductCode: '{748769F5-A513-48BD-B0CC-FF1D1EEE1B65}' +- Architecture: x64 + InstallerSha256: 27253F0698975BA02BDF397A86AED3C264592787F9BA0259E3FE550F2E6E0896 + InstallerSwitches: + Custom: ADDLOCAL=FeatureMain,FeatureEnvironment,FeatureJarFileRunWith,FeatureJavaHome MSIINSTALLPERUSER=1 + InstallerUrl: https://aka.ms/download-jdk/microsoft-jdk-17.0.10-windows-x64.msi#winget + ProductCode: '{ED36DBA7-F9B4-4C72-91FB-9E4CCD3C3841}' + Scope: user +- Architecture: arm64 + InstallerSha256: 35372AB40030BD9F2DE2C59C5151E6A658E89AA5675EF7780EA9C0A167DEF979 + InstallerSwitches: + Custom: ADDLOCAL=FeatureMain,FeatureEnvironment,FeatureJarFileRunWith,FeatureJavaHome MSIINSTALLPERUSER=1 + InstallerUrl: https://aka.ms/download-jdk/microsoft-jdk-17.0.10-windows-aarch64.msi#winget + ProductCode: '{748769F5-A513-48BD-B0CC-FF1D1EEE1B65}' + Scope: user ManifestType: installer ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/PowerToys/0.78.0/Microsoft.PowerToys.installer.yaml b/manifests/m/Microsoft/PowerToys/0.78.0/Microsoft.PowerToys.installer.yaml new file mode 100644 index 0000000000000..75586c9541c29 --- /dev/null +++ b/manifests/m/Microsoft/PowerToys/0.78.0/Microsoft.PowerToys.installer.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.PowerToys +PackageVersion: 0.78.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17134.0 +InstallerType: burn +InstallerSwitches: + Silent: /quiet /norestart + SilentWithProgress: /quiet /norestart +UpgradeBehavior: install +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/microsoft/PowerToys/releases/download/v0.78.0/PowerToysUserSetup-0.78.0-x64.exe + InstallerSha256: 120B1CEFC94D76EC593A61D717BBB2E12AF195D19E04C811F519D3F9B9B3B5C0 +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/microsoft/PowerToys/releases/download/v0.78.0/PowerToysSetup-0.78.0-x64.exe + InstallerSha256: 19E025381588ABAEC209CDD0A18BB779EE58FC24646D898C2A7C38A4858EAEDB +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/microsoft/PowerToys/releases/download/v0.78.0/PowerToysUserSetup-0.78.0-arm64.exe + InstallerSha256: 3C3C8A8A549ABDD1C5E5DA7DC22D254F7BBD0F9DC05DA17E51020B153662F083 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/microsoft/PowerToys/releases/download/v0.78.0/PowerToysSetup-0.78.0-arm64.exe + InstallerSha256: 5C70054A8991885A958F066B00D7FAFE608C730FC7A99178D6C64A1F03A3C109 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/PowerToys/0.78.0/Microsoft.PowerToys.locale.en-US.yaml b/manifests/m/Microsoft/PowerToys/0.78.0/Microsoft.PowerToys.locale.en-US.yaml new file mode 100644 index 0000000000000..8843b55006d85 --- /dev/null +++ b/manifests/m/Microsoft/PowerToys/0.78.0/Microsoft.PowerToys.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Microsoft.PowerToys +PackageVersion: 0.78.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://github.com/microsoft/PowerToys +PublisherSupportUrl: https://github.com/microsoft/PowerToys/issues +PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement +Author: Microsoft Corporation +PackageName: PowerToys (Preview) +PackageUrl: https://github.com/microsoft/PowerToys +License: MIT +LicenseUrl: https://github.com/microsoft/PowerToys/blob/master/LICENSE +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +CopyrightUrl: https://github.com/microsoft/PowerToys/blob/main/LICENSE +ShortDescription: Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. +Description: |- + Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. + Inspired by the Windows 95 era PowerToys project, this reboot provides power users with ways to squeeze more efficiency out of the Windows 10 shell and customize it for individual workflows. +Moniker: powertoys +Tags: +- colorpicker +- fancyzones +- fileexplorer +- imageresizer +- keyboardmanager +- power-toys +- powerrename +- powertoys +- powertoys-run +- windows-key-shortcut-guide +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/PowerToys/0.78.0/Microsoft.PowerToys.yaml b/manifests/m/Microsoft/PowerToys/0.78.0/Microsoft.PowerToys.yaml new file mode 100644 index 0000000000000..970fb5eb57640 --- /dev/null +++ b/manifests/m/Microsoft/PowerToys/0.78.0/Microsoft.PowerToys.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Microsoft.PowerToys +PackageVersion: 0.78.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/ROpen/4.0.2.0/Microsoft.ROpen.installer.yaml b/manifests/m/Microsoft/ROpen/4.0.2.0/Microsoft.ROpen.installer.yaml deleted file mode 100644 index 6222d4c6fa199..0000000000000 --- a/manifests/m/Microsoft/ROpen/4.0.2.0/Microsoft.ROpen.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.1.0.schema.json - -PackageIdentifier: Microsoft.ROpen -PackageVersion: 4.0.2.0 -MinimumOSVersion: 10.0.0.0 -InstallerType: burn -InstallerSwitches: - Silent: /quiet - SilentWithProgress: /quiet -ReleaseDate: 2020-09-23 -Installers: -- Architecture: x64 - InstallerUrl: https://mran.blob.core.windows.net/install/mro/4.0.2/Windows/microsoft-r-open-4.0.2.exe - InstallerSha256: EB4F0DDB009A5CF63A85024599238802E0F4E509BE3A065A3EAED9D185DE66B7 -ManifestType: installer -ManifestVersion: 1.1.0 diff --git a/manifests/m/Microsoft/ROpen/4.0.2.0/Microsoft.ROpen.locale.en-US.yaml b/manifests/m/Microsoft/ROpen/4.0.2.0/Microsoft.ROpen.locale.en-US.yaml deleted file mode 100644 index 8df90d2b4ee85..0000000000000 --- a/manifests/m/Microsoft/ROpen/4.0.2.0/Microsoft.ROpen.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.1.0.schema.json - -PackageIdentifier: Microsoft.ROpen -PackageVersion: 4.0.2.0 -PackageLocale: en-US -Publisher: Microsoft -PublisherUrl: https://github.com/microsoft/microsoft-r-open -PublisherSupportUrl: https://github.com/microsoft/microsoft-r-open/issues -# PrivacyUrl: -Author: Microsoft -PackageName: Microsoft R Open -PackageUrl: https://mran.microsoft.com/open -License: GPLv2 -LicenseUrl: https://mran.microsoft.com/faq#mro-eula -# Copyright: -# CopyrightUrl: -ShortDescription: Microsoft.ROpen -Description: Microsoft R Open is the enhanced distribution of open source R from Microsoft Corporation. Enhancements include multi-core processing, a fixed CRAN repository date, and reproducible R with the checkpoint package. It includes Intel Math Kernel Library (Intel MKL) as well. -Moniker: microsoft-r-open -Tags: -- admin -- computation -- mathematics -- modelling -- r -# Agreements: -ReleaseNotes: |- - • Microsoft R Open 4.0.2 is based on R-4.0.2. - • The default CRAN mirror has been updated to point to the fixed CRAN repository snapshot from July 16, 2020. - • Microsoft R Open 4.0.2 is supported on the following platforms. Please post issues or suggestions on our Microsoft R Open User Forum. - • Windows® 10, Windows Server® 2012 and 2016 - • Ubuntu 16.04, 18.04 - • CentOS / Red Hat Enterprise Linux 7.x, 8.x - • SUSE Linux Enterprise Server 12, 15 -ReleaseNotesUrl: https://github.com/microsoft/microsoft-r-open/releases/tag/MRO-4.0.2 -ManifestType: defaultLocale -ManifestVersion: 1.1.0 diff --git a/manifests/m/Microsoft/ROpen/4.0.2.0/Microsoft.ROpen.yaml b/manifests/m/Microsoft/ROpen/4.0.2.0/Microsoft.ROpen.yaml deleted file mode 100644 index 9fb83674b2175..0000000000000 --- a/manifests/m/Microsoft/ROpen/4.0.2.0/Microsoft.ROpen.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.1.0.schema.json - -PackageIdentifier: Microsoft.ROpen -PackageVersion: 4.0.2.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.1.0 diff --git a/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.30704.0/Microsoft.VCLibs.Desktop.14.installer.yaml b/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.30704.0/Microsoft.VCLibs.Desktop.14.installer.yaml deleted file mode 100644 index 99a52364d070e..0000000000000 --- a/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.30704.0/Microsoft.VCLibs.Desktop.14.installer.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Created using wingetcreate 1.5.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Microsoft.VCLibs.Desktop.14 -PackageVersion: 14.0.30704.0 -Platform: -- Windows.Universal -MinimumOSVersion: 10.0.10042.0 -InstallerType: msix -PackageFamilyName: Microsoft.VCLibs.140.00.UWPDesktop_8wekyb3d8bbwe -Installers: -- Architecture: x64 - InstallerUrl: https://download.microsoft.com/download/4/7/c/47c6134b-d61f-4024-83bd-b9c9ea951c25/appx/Microsoft.VCLibs.x64.14.00.Desktop.appx - InstallerSha256: 9BFDE6CFCC530EF073AB4BC9C4817575F63BE1251DD75AAA58CB89299697A569 - SignatureSha256: 9D34C5CF8B3951F5E3471206C2DD30EA34B1D7B80ABF9014D21F3109DB87C397 -- Architecture: x86 - InstallerUrl: https://download.microsoft.com/download/4/7/c/47c6134b-d61f-4024-83bd-b9c9ea951c25/appx/Microsoft.VCLibs.x86.14.00.Desktop.appx - InstallerSha256: 3195DB914BEA1534EE73582CD483C548A929AED2799D305B3BBF7411BA7A6C7D - SignatureSha256: D72F5D6E0AF1A1914CD1EDB89A34BCEBD838F2F4395BDD89FE31BF636DCDA351 -- Architecture: arm - InstallerUrl: https://download.microsoft.com/download/4/7/c/47c6134b-d61f-4024-83bd-b9c9ea951c25/appx/Microsoft.VCLibs.arm.14.00.Desktop.appx - InstallerSha256: E88497EED19C1207ACCA2BF85A81E4C52899E8C7350030B57298EE0282C69C9B - SignatureSha256: 1CE47EA3E875EBA1FFC904C410308948EBB558A2CBDF1618F49CC813DAB9248E -- Architecture: arm64 - InstallerUrl: https://download.microsoft.com/download/4/7/c/47c6134b-d61f-4024-83bd-b9c9ea951c25/appx/Microsoft.VCLibs.arm64.14.00.Desktop.appx - InstallerSha256: 1EC4E926F17B8557C76B4DD0BD06AF229AB0D096E719FA6631D1FAB8334FD9A5 - SignatureSha256: B742AB1955302099FEB3C85B12570CD5088257BCE388948F6F58D798BEE2D075 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.33321.0/Microsoft.VCLibs.Desktop.14.installer.yaml b/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.33321.0/Microsoft.VCLibs.Desktop.14.installer.yaml new file mode 100644 index 0000000000000..076579dd52ed9 --- /dev/null +++ b/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.33321.0/Microsoft.VCLibs.Desktop.14.installer.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.VCLibs.Desktop.14 +PackageVersion: 14.0.33321.0 +Platform: +- Windows.Universal +MinimumOSVersion: 10.0.10042.0 +InstallerType: msix +PackageFamilyName: Microsoft.VCLibs.140.00.UWPDesktop_8wekyb3d8bbwe +Installers: +- Architecture: x64 + InstallerUrl: https://download.microsoft.com/download/4/7/c/47c6134b-d61f-4024-83bd-b9c9ea951c25/Microsoft.VCLibs.x64.14.00.Desktop.appx + InstallerSha256: B56A9101F706F9D95F815F5B7FA6EFBAC972E86573D378B96A07CFF5540C5961 + SignatureSha256: 28A80453B7E43D9661A9BF6F0016057B911AD74BF7D1E1EA0A4FE9447CCB667D +- Architecture: x86 + InstallerUrl: https://download.microsoft.com/download/4/7/c/47c6134b-d61f-4024-83bd-b9c9ea951c25/Microsoft.VCLibs.x86.14.00.Desktop.appx + InstallerSha256: A7FB9D76E07B36D868179EB53FFD13740C25242176FA363F154798CF34EDD4A9 + SignatureSha256: 902B3579D4D02475F467AD43AD43A5725AC31952FB2218E6AB1922E1C747D4DE +- Architecture: arm + InstallerUrl: https://download.microsoft.com/download/4/7/c/47c6134b-d61f-4024-83bd-b9c9ea951c25/Microsoft.VCLibs.arm.14.00.Desktop.appx + InstallerSha256: 2ACE50F3F73A741D526CBB32926F14054E7020685EE9A05AD8E6804CE1F62385 + SignatureSha256: 88F3960D1B459D924A530021768A66F0506CD2EED9A2B865BF8D80D14D9B80C0 +- Architecture: arm64 + InstallerUrl: https://download.microsoft.com/download/4/7/c/47c6134b-d61f-4024-83bd-b9c9ea951c25/Microsoft.VCLibs.arm64.14.00.Desktop.appx + InstallerSha256: 9A7F6D69EA6CF042EA8680B7CD0BFAA9C04F0F6CC89055D43F7F6CD0250508D3 + SignatureSha256: 7C835501BA9E6D70ED9FAB8B68DBB495AFAE1028637C83E1EA833590115D9345 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.30704.0/Microsoft.VCLibs.Desktop.14.locale.en-US.yaml b/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.33321.0/Microsoft.VCLibs.Desktop.14.locale.en-US.yaml similarity index 90% rename from manifests/m/Microsoft/VCLibs/Desktop/14/14.0.30704.0/Microsoft.VCLibs.Desktop.14.locale.en-US.yaml rename to manifests/m/Microsoft/VCLibs/Desktop/14/14.0.33321.0/Microsoft.VCLibs.Desktop.14.locale.en-US.yaml index b8e5dc27376a9..b7d3b80dcfcf3 100644 --- a/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.30704.0/Microsoft.VCLibs.Desktop.14.locale.en-US.yaml +++ b/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.33321.0/Microsoft.VCLibs.Desktop.14.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.5.3.0 +# Created using wingetcreate 1.5.7.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Microsoft.VCLibs.Desktop.14 -PackageVersion: 14.0.30704.0 +PackageVersion: 14.0.33321.0 PackageLocale: en-US Publisher: Microsoft Platform Extensions PublisherUrl: https://www.microsoft.com/en-us/ diff --git a/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.30704.0/Microsoft.VCLibs.Desktop.14.yaml b/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.33321.0/Microsoft.VCLibs.Desktop.14.yaml similarity index 73% rename from manifests/m/Microsoft/VCLibs/Desktop/14/14.0.30704.0/Microsoft.VCLibs.Desktop.14.yaml rename to manifests/m/Microsoft/VCLibs/Desktop/14/14.0.33321.0/Microsoft.VCLibs.Desktop.14.yaml index 5bd761b949a7c..78a5bb2d1f86e 100644 --- a/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.30704.0/Microsoft.VCLibs.Desktop.14.yaml +++ b/manifests/m/Microsoft/VCLibs/Desktop/14/14.0.33321.0/Microsoft.VCLibs.Desktop.14.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.5.3.0 +# Created using wingetcreate 1.5.7.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Microsoft.VCLibs.Desktop.14 -PackageVersion: 14.0.30704.0 +PackageVersion: 14.0.33321.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/1.86.0/Microsoft.VisualStudioCode.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/1.86.0/Microsoft.VisualStudioCode.installer.yaml new file mode 100644 index 0000000000000..b88e1a71b0f66 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/1.86.0/Microsoft.VisualStudioCode.installer.yaml @@ -0,0 +1,28 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode +PackageVersion: 1.86.0 +Commands: + - code +InstallerType: inno +Installers: + - Architecture: arm64 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/stable/05047486b6df5eb8d44b2ecd70ea3bdf775fd937/VSCodeSetup-arm64-1.86.0.exe' + InstallerSha256: 326a80e528526c269c068420a0e840214a33b1a87a7422fea09a0434736abd71 + Scope: machine + - Architecture: arm64 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/stable/05047486b6df5eb8d44b2ecd70ea3bdf775fd937/VSCodeUserSetup-arm64-1.86.0.exe' + InstallerSha256: f83be4f3b600abf17b1486bf576aee8dd5cc01bb4ca0794de8bb87582549dcba + Scope: user + - Architecture: x64 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/stable/05047486b6df5eb8d44b2ecd70ea3bdf775fd937/VSCodeSetup-x64-1.86.0.exe' + InstallerSha256: 335330964a1dbfc5edce3a0c1bc87e8e8192518296d7e7e4c6d074ed8c221066 + Scope: machine + - Architecture: x64 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/stable/05047486b6df5eb8d44b2ecd70ea3bdf775fd937/VSCodeUserSetup-x64-1.86.0.exe' + InstallerSha256: 92c90f5c54bd19371717e70cdbe8ca156891f25ed64d6ee48aa4da56dfac84d2 + Scope: user +ManifestType: installer +ManifestVersion: 1.5.0 +InstallerSwitches: + Custom: /mergetasks=!runcode diff --git a/manifests/m/Microsoft/VisualStudioCode/1.86.0/Microsoft.VisualStudioCode.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudioCode/1.86.0/Microsoft.VisualStudioCode.locale.en-US.yaml new file mode 100644 index 0000000000000..879960b2a1ec5 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/1.86.0/Microsoft.VisualStudioCode.locale.en-US.yaml @@ -0,0 +1,19 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode +PackageName: Microsoft Visual Studio Code +PackageVersion: 1.86.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: 'https://www.microsoft.com/' +PrivacyUrl: 'https://privacy.microsoft.com/' +PackageUrl: 'https://code.visualstudio.com' +License: Microsoft Software License +LicenseUrl: 'https://code.visualstudio.com/license' +ShortDescription: 'Microsoft Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Microsoft Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.' +Moniker: vscode +Tags: + - developer-tools + - editor +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/1.86.0/Microsoft.VisualStudioCode.yaml b/manifests/m/Microsoft/VisualStudioCode/1.86.0/Microsoft.VisualStudioCode.yaml new file mode 100644 index 0000000000000..3c93535fbb65b --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/1.86.0/Microsoft.VisualStudioCode.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode +PackageVersion: 1.86.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/CLI/1.86.0/Microsoft.VisualStudioCode.CLI.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/CLI/1.86.0/Microsoft.VisualStudioCode.CLI.installer.yaml new file mode 100644 index 0000000000000..bb2a2e1055be4 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/CLI/1.86.0/Microsoft.VisualStudioCode.CLI.installer.yaml @@ -0,0 +1,19 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode.CLI +PackageVersion: 1.86.0 +Commands: [] +InstallerType: zip +Installers: + - Architecture: arm64 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/stable/05047486b6df5eb8d44b2ecd70ea3bdf775fd937/vscode_cli_win32_arm64_cli.zip' + InstallerSha256: f0ba8d48c610128bb58c0d3b8ffed433d2bc65224366bc60f4f516db32827763 + - Architecture: x64 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/stable/05047486b6df5eb8d44b2ecd70ea3bdf775fd937/vscode_cli_win32_x64_cli.zip' + InstallerSha256: 094eb0afacb227f29fadecf4a08cbbfd5879cd2dc42abcb36cece8875c289723 +ManifestType: installer +ManifestVersion: 1.5.0 +NestedInstallerType: portable +NestedInstallerFiles: + - RelativeFilePath: ./code.exe + PortableCommandAlias: code diff --git a/manifests/m/Microsoft/VisualStudioCode/CLI/1.86.0/Microsoft.VisualStudioCode.CLI.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudioCode/CLI/1.86.0/Microsoft.VisualStudioCode.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..860a46e279467 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/CLI/1.86.0/Microsoft.VisualStudioCode.CLI.locale.en-US.yaml @@ -0,0 +1,19 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode.CLI +PackageName: Microsoft Visual Studio Code CLI +PackageVersion: 1.86.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: 'https://www.microsoft.com/' +PrivacyUrl: 'https://privacy.microsoft.com/' +PackageUrl: 'https://code.visualstudio.com' +License: Microsoft Software License +LicenseUrl: 'https://code.visualstudio.com/license' +ShortDescription: 'Microsoft Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Microsoft Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.' +Moniker: vscode-cli +Tags: + - developer-tools + - editor +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/CLI/1.86.0/Microsoft.VisualStudioCode.CLI.yaml b/manifests/m/Microsoft/VisualStudioCode/CLI/1.86.0/Microsoft.VisualStudioCode.CLI.yaml new file mode 100644 index 0000000000000..99f86c21c3d56 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/CLI/1.86.0/Microsoft.VisualStudioCode.CLI.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode.CLI +PackageVersion: 1.86.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/1.87.0/Microsoft.VisualStudioCode.Insiders.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.87.0/Microsoft.VisualStudioCode.Insiders.installer.yaml new file mode 100644 index 0000000000000..2db96af9fb6e8 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.87.0/Microsoft.VisualStudioCode.Insiders.installer.yaml @@ -0,0 +1,28 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode.Insiders +PackageVersion: 1.87.0 +Commands: + - code-insiders +InstallerType: inno +Installers: + - Architecture: arm64 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/442c133fe92b5e2606c8242caae4e68938faccc7/VSCodeSetup-arm64-1.87.0-insider.exe' + InstallerSha256: 81a3118252ae5adb61805458cc82aa4acc52f11e294dbc688d35abee9fb9e5ea + Scope: machine + - Architecture: arm64 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/442c133fe92b5e2606c8242caae4e68938faccc7/VSCodeUserSetup-arm64-1.87.0-insider.exe' + InstallerSha256: f592aadb3b5fd6e4114635eb0729a2d1a9f52dab2610c64880f791206178d0f8 + Scope: user + - Architecture: x64 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/442c133fe92b5e2606c8242caae4e68938faccc7/VSCodeSetup-x64-1.87.0-insider.exe' + InstallerSha256: 2b3f1bf5bb9314f6fd5745a8acf556e2a65ba7eb54a371c0daac49d973d10850 + Scope: machine + - Architecture: x64 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/442c133fe92b5e2606c8242caae4e68938faccc7/VSCodeUserSetup-x64-1.87.0-insider.exe' + InstallerSha256: 5d78c25e6ae49b224b4282311a97f23771eb6681b094932551fc25c366332adc + Scope: user +ManifestType: installer +ManifestVersion: 1.5.0 +InstallerSwitches: + Custom: /mergetasks=!runcode diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/1.87.0/Microsoft.VisualStudioCode.Insiders.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.87.0/Microsoft.VisualStudioCode.Insiders.locale.en-US.yaml new file mode 100644 index 0000000000000..f17f5db4c3cc3 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.87.0/Microsoft.VisualStudioCode.Insiders.locale.en-US.yaml @@ -0,0 +1,19 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode.Insiders +PackageName: Microsoft Visual Studio Code Insiders +PackageVersion: 1.87.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: 'https://www.microsoft.com/' +PrivacyUrl: 'https://privacy.microsoft.com/' +PackageUrl: 'https://code.visualstudio.com' +License: Microsoft Pre-Release Software License +LicenseUrl: 'https://code.visualstudio.com/license/insiders' +ShortDescription: 'Microsoft Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Microsoft Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.' +Moniker: vscode-insiders +Tags: + - developer-tools + - editor +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/1.87.0/Microsoft.VisualStudioCode.Insiders.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.87.0/Microsoft.VisualStudioCode.Insiders.yaml new file mode 100644 index 0000000000000..ef3565b78944c --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.87.0/Microsoft.VisualStudioCode.Insiders.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode.Insiders +PackageVersion: 1.87.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.87.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.87.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml new file mode 100644 index 0000000000000..00f474bd3f94c --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.87.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml @@ -0,0 +1,19 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode.Insiders.CLI +PackageVersion: 1.87.0 +Commands: [] +InstallerType: zip +Installers: + - Architecture: arm64 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/2af613979f646fc4dcebfeaedc7d14f138c7b072/vscode_cli_win32_arm64_cli.zip' + InstallerSha256: d4cd411b1f522b0e8892a29b5590a2d209e7fb6e92453f330f9f39fd0c988421 + - Architecture: x64 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/2af613979f646fc4dcebfeaedc7d14f138c7b072/vscode_cli_win32_x64_cli.zip' + InstallerSha256: 15a76804f931b12b01d62802231b59c6564df7dbe6918c3adadde368b8a61f7b +ManifestType: installer +ManifestVersion: 1.5.0 +NestedInstallerType: portable +NestedInstallerFiles: + - RelativeFilePath: ./code-insiders.exe + PortableCommandAlias: code-insiders diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.87.0/Microsoft.VisualStudioCode.Insiders.CLI.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.87.0/Microsoft.VisualStudioCode.Insiders.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..c72cde2ed064e --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.87.0/Microsoft.VisualStudioCode.Insiders.CLI.locale.en-US.yaml @@ -0,0 +1,19 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode.Insiders.CLI +PackageName: Microsoft Visual Studio Code Insiders CLI +PackageVersion: 1.87.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: 'https://www.microsoft.com/' +PrivacyUrl: 'https://privacy.microsoft.com/' +PackageUrl: 'https://code.visualstudio.com' +License: Microsoft Pre-Release Software License +LicenseUrl: 'https://code.visualstudio.com/license/insiders' +ShortDescription: 'Microsoft Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Microsoft Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.' +Moniker: vscode-insiders-cli +Tags: + - developer-tools + - editor +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.87.0/Microsoft.VisualStudioCode.Insiders.CLI.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.87.0/Microsoft.VisualStudioCode.Insiders.CLI.yaml new file mode 100644 index 0000000000000..b416d567ce16b --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.87.0/Microsoft.VisualStudioCode.Insiders.CLI.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode.Insiders.CLI +PackageVersion: 1.87.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.installer.yaml b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.installer.yaml new file mode 100644 index 0000000000000..48746c3188b6b --- /dev/null +++ b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.installer.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.WindowsTerminal +PackageVersion: 1.18.10301.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +Scope: user +InstallModes: +- silent +Commands: +- wt +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.UI.Xaml.2.8 + MinimumVersion: 8.2306.22001.0 +PackageFamilyName: Microsoft.WindowsTerminal_8wekyb3d8bbwe +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/microsoft/terminal/releases/download/v1.18.10301.0/Microsoft.WindowsTerminal_1.18.10301.0_8wekyb3d8bbwe.msixbundle + InstallerSha256: DAC95A3D337A315FD1298E2A06F27332F6CADA3E386EA772C179B105A0D817A7 + SignatureSha256: 58BFC7A7DB88B464AFF82FDEF796BF095E84B36D5DAE84739D8D2C0F242E7174 +- Architecture: x64 + InstallerUrl: https://github.com/microsoft/terminal/releases/download/v1.18.10301.0/Microsoft.WindowsTerminal_1.18.10301.0_8wekyb3d8bbwe.msixbundle + InstallerSha256: DAC95A3D337A315FD1298E2A06F27332F6CADA3E386EA772C179B105A0D817A7 + SignatureSha256: 58BFC7A7DB88B464AFF82FDEF796BF095E84B36D5DAE84739D8D2C0F242E7174 +- Architecture: arm64 + InstallerUrl: https://github.com/microsoft/terminal/releases/download/v1.18.10301.0/Microsoft.WindowsTerminal_1.18.10301.0_8wekyb3d8bbwe.msixbundle + InstallerSha256: DAC95A3D337A315FD1298E2A06F27332F6CADA3E386EA772C179B105A0D817A7 + SignatureSha256: 58BFC7A7DB88B464AFF82FDEF796BF095E84B36D5DAE84739D8D2C0F242E7174 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.en-US.yaml b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.en-US.yaml new file mode 100644 index 0000000000000..4e649e018e543 --- /dev/null +++ b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Microsoft.WindowsTerminal +PackageVersion: 1.18.10301.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com +PublisherSupportUrl: https://github.com/microsoft/terminal/issues +PrivacyUrl: https://privacy.microsoft.com +Author: Microsoft +PackageName: Windows Terminal +PackageUrl: https://docs.microsoft.com/windows/terminal +License: MIT +LicenseUrl: https://github.com/microsoft/terminal/blob/master/LICENSE +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +CopyrightUrl: https://github.com/microsoft/terminal/blob/master/LICENSE +ShortDescription: The new Windows Terminal, a tabbed command line experience for Windows. +Moniker: terminal +Tags: +- cli +- cmd +- command-line +- command-prompt +- console +- developer-tools +- powershell +- ps +- shell +- terminal +- utilities +- wsl +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.fr-FR.yaml b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.fr-FR.yaml new file mode 100644 index 0000000000000..8807113ac24bf --- /dev/null +++ b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.fr-FR.yaml @@ -0,0 +1,10 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Microsoft.WindowsTerminal +PackageVersion: 1.18.10301.0 +PackageLocale: fr-FR +Publisher: Microsoft +ShortDescription: Le nouveau terminal Windows, une expérience de ligne de commande à onglets pour Windows. +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.it-IT.yaml b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.it-IT.yaml new file mode 100644 index 0000000000000..e521ff9edd4e7 --- /dev/null +++ b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.it-IT.yaml @@ -0,0 +1,10 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Microsoft.WindowsTerminal +PackageVersion: 1.18.10301.0 +PackageLocale: it-IT +Publisher: Microsoft +ShortDescription: Il nuovo terminal di Windows, un'esperienza della riga di comando a schede per Windows. +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.ja-JP.yaml b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.ja-JP.yaml new file mode 100644 index 0000000000000..9f21e6474d646 --- /dev/null +++ b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.ja-JP.yaml @@ -0,0 +1,10 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Microsoft.WindowsTerminal +PackageVersion: 1.18.10301.0 +PackageLocale: ja-JP +Publisher: Microsoft +ShortDescription: 新しい Windows ターミナル、Windows のタブ付きコマンド ライン エクスペリエンス。 +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.ko-KR.yaml b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.ko-KR.yaml new file mode 100644 index 0000000000000..5018efa7020de --- /dev/null +++ b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.ko-KR.yaml @@ -0,0 +1,10 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Microsoft.WindowsTerminal +PackageVersion: 1.18.10301.0 +PackageLocale: ko-KR +Publisher: Microsoft +ShortDescription: 새로운 Windows 터미널, Windows에 대 한 탭 명령줄 경험. +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.pt-BR.yaml b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.pt-BR.yaml new file mode 100644 index 0000000000000..d497ef05c1c74 --- /dev/null +++ b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.pt-BR.yaml @@ -0,0 +1,10 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Microsoft.WindowsTerminal +PackageVersion: 1.18.10301.0 +PackageLocale: pt-BR +Publisher: Microsoft +ShortDescription: O novo Windows Terminal, uma experiência de linha de comando com guias para Windows. +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.ru-RU.yaml b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.ru-RU.yaml new file mode 100644 index 0000000000000..3495ea9c85fd4 --- /dev/null +++ b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.ru-RU.yaml @@ -0,0 +1,10 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Microsoft.WindowsTerminal +PackageVersion: 1.18.10301.0 +PackageLocale: ru-RU +Publisher: Microsoft +ShortDescription: Новый терминал Windows, вкладка командной строки опыт для Windows. +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.zh-CN.yaml b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a68021ad84202 --- /dev/null +++ b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Microsoft.WindowsTerminal +PackageVersion: 1.18.10301.0 +PackageLocale: zh-CN +Publisher: Microsoft +ShortDescription: 新的视窗终端,为 Windows 提供标签命令行体验。 +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.zh-TW.yaml b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.zh-TW.yaml new file mode 100644 index 0000000000000..6769b769025bb --- /dev/null +++ b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.locale.zh-TW.yaml @@ -0,0 +1,10 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Microsoft.WindowsTerminal +PackageVersion: 1.18.10301.0 +PackageLocale: zh-TW +Publisher: Microsoft +ShortDescription: 新的視窗終端,為 Windows 提供標籤命令行體驗。 +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.yaml b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.yaml new file mode 100644 index 0000000000000..15c42fe2047d7 --- /dev/null +++ b/manifests/m/Microsoft/WindowsTerminal/1.18.10301.0/Microsoft.WindowsTerminal.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Microsoft.WindowsTerminal +PackageVersion: 1.18.10301.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/Mikrotik/Winbox/3.40/Mikrotik.Winbox.installer.yaml b/manifests/m/Mikrotik/Winbox/3.40/Mikrotik.Winbox.installer.yaml new file mode 100644 index 0000000000000..054d455a0f9b6 --- /dev/null +++ b/manifests/m/Mikrotik/Winbox/3.40/Mikrotik.Winbox.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Mikrotik.Winbox +PackageVersion: '3.40' +InstallerType: portable +ReleaseDate: 2023-10-10 +Installers: +- Architecture: x86 + InstallerUrl: https://download.mikrotik.com/winbox/3.40/winbox.exe + InstallerSha256: 91162BDF1122A4FBDDA31C31F37C92AA2D41897617EB37DBE4C7A311F96C7587 +- Architecture: x64 + InstallerUrl: https://download.mikrotik.com/winbox/3.40/winbox64.exe + InstallerSha256: 91F7B0456619DBFC19940A85566C949CE3718321F32709886DF5125C71F0B6B7 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/Mikrotik/Winbox/3.40/Mikrotik.Winbox.locale.en-US.yaml b/manifests/m/Mikrotik/Winbox/3.40/Mikrotik.Winbox.locale.en-US.yaml new file mode 100644 index 0000000000000..3f26886a96067 --- /dev/null +++ b/manifests/m/Mikrotik/Winbox/3.40/Mikrotik.Winbox.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Mikrotik.Winbox +PackageVersion: '3.40' +PackageLocale: en-US +Publisher: Mikrotik +PublisherUrl: https://mikrotik.com/ +PublisherSupportUrl: https://mikrotik.com/support +PrivacyUrl: https://mikrotik.com/privacy +PackageName: Winbox +License: Proprietary +Copyright: Copyright (C) 2023 Mikrotik +ShortDescription: Small utility that allows administration of MikroTik RouterOS using a fast and simple GUI. +Moniker: winbox +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Mikrotik/Winbox/3.40/Mikrotik.Winbox.yaml b/manifests/m/Mikrotik/Winbox/3.40/Mikrotik.Winbox.yaml new file mode 100644 index 0000000000000..7e3ab6656ba34 --- /dev/null +++ b/manifests/m/Mikrotik/Winbox/3.40/Mikrotik.Winbox.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Mikrotik.Winbox +PackageVersion: '3.40' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/MilosParipovic/OneCommander/3.67.0.0/MilosParipovic.OneCommander.installer.yaml b/manifests/m/MilosParipovic/OneCommander/3.67.0.0/MilosParipovic.OneCommander.installer.yaml new file mode 100644 index 0000000000000..c746e9d4dd395 --- /dev/null +++ b/manifests/m/MilosParipovic/OneCommander/3.67.0.0/MilosParipovic.OneCommander.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: MilosParipovic.OneCommander +PackageVersion: 3.67.0.0 +InstallerLocale: en-US +InstallerType: msi +Scope: machine +UpgradeBehavior: install +ProductCode: '{3324C601-A642-41CB-AABD-0406A42E90F5}' +ReleaseDate: 2024-01-28 +AppsAndFeaturesEntries: +- DisplayVersion: 3.67.0 + UpgradeCode: '{E2AFC434-3689-40B9-B3DB-A1D80FDDA478}' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://onecommander.com/OneCommanderSetup3.67.0.0.msi + InstallerSha256: 49FEB3ACAB206A2A90901E531051BBDF7BEC7CD7129BE58630A123461258F4C0 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/MilosParipovic/OneCommander/3.67.0.0/MilosParipovic.OneCommander.locale.en-US.yaml b/manifests/m/MilosParipovic/OneCommander/3.67.0.0/MilosParipovic.OneCommander.locale.en-US.yaml new file mode 100644 index 0000000000000..8852ba60b8034 --- /dev/null +++ b/manifests/m/MilosParipovic/OneCommander/3.67.0.0/MilosParipovic.OneCommander.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: MilosParipovic.OneCommander +PackageVersion: 3.67.0.0 +PackageLocale: en-US +Publisher: Milos Paripovic +PublisherUrl: https://onecommander.com/ +PublisherSupportUrl: https://onecommander.com/help +Author: Milos Paripovic +PackageName: OneCommander +PackageUrl: https://onecommander.com/ +License: Proprietary +Copyright: Copyright Milos Paripovic © 2013-2023. All Rights Reserved. +CopyrightUrl: https://onecommander.com/ +ShortDescription: OneCommander is a modern file manager for Windows 10 and Windows 11. +Description: OneCommander is a modern file manager for Windows 10 and Windows 11. Features include tabs, dual-pane browsers, columns navigation, built-in preview, a theming system, color tags, and much more. It is free for home use and has no ads. +Moniker: onecommander +Tags: +- file-manager +- modern +- onecommander +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/MilosParipovic/OneCommander/3.67.0.0/MilosParipovic.OneCommander.yaml b/manifests/m/MilosParipovic/OneCommander/3.67.0.0/MilosParipovic.OneCommander.yaml new file mode 100644 index 0000000000000..771fd48cc8caa --- /dev/null +++ b/manifests/m/MilosParipovic/OneCommander/3.67.0.0/MilosParipovic.OneCommander.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: MilosParipovic.OneCommander +PackageVersion: 3.67.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/MongoDB/Compass/Full/1.42.0.0/MongoDB.Compass.Full.installer.yaml b/manifests/m/MongoDB/Compass/Full/1.42.0.0/MongoDB.Compass.Full.installer.yaml new file mode 100644 index 0000000000000..6be0621b1e0e0 --- /dev/null +++ b/manifests/m/MongoDB/Compass/Full/1.42.0.0/MongoDB.Compass.Full.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.LF.7-4-0.Unix +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: MongoDB.Compass.Full +PackageVersion: 1.42.0.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/mongodb-js/compass/releases/download/v1.42.0/mongodb-compass-1.42.0-win32-x64.msi + InstallerSha256: 4D9EDFD7A41FD17BC95D8383F769D52B5EB83052C719E6D657869C76B14CB7A5 + ProductCode: '{D8C546AE-C3C7-449D-98A9-D5839BE69911}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/MongoDB/Compass/Full/1.42.0.0/MongoDB.Compass.Full.locale.en-US.yaml b/manifests/m/MongoDB/Compass/Full/1.42.0.0/MongoDB.Compass.Full.locale.en-US.yaml new file mode 100644 index 0000000000000..cf013d41410a9 --- /dev/null +++ b/manifests/m/MongoDB/Compass/Full/1.42.0.0/MongoDB.Compass.Full.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.LF.7-4-0.Unix +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: MongoDB.Compass.Full +PackageVersion: 1.42.0.0 +PackageLocale: en-US +Publisher: MongoDB Inc +PublisherUrl: https://www.mongodb.com/ +PublisherSupportUrl: https://support.mongodb.com/ +PrivacyUrl: https://www.mongodb.com/legal/privacy-policy +# Author: +PackageName: MongoDB Compass +PackageUrl: https://www.mongodb.com/products/compass +License: Proprietary +LicenseUrl: https://www.mongodb.com/customer-agreement +Copyright: Copyright (c) 2023 MongoDB, Inc. +# CopyrightUrl: +ShortDescription: The GUI for MongoDB. Visually explore your data. +Description: The GUI for MongoDB. Visually explore your data. Run ad hoc queries in seconds. Interact with your data with full CRUD functionality. View and optimize your query performance. Available on Linux, Mac, or Windows. Compass empowers you to make smarter decisions about indexing, document validation, and more. +Moniker: mongodb-compass +Tags: +- compass +- db +- mongo +- mongodb +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/mongodb-js/compass/releases/tag/v1.42.0 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/MongoDB/Compass/Full/1.42.0.0/MongoDB.Compass.Full.yaml b/manifests/m/MongoDB/Compass/Full/1.42.0.0/MongoDB.Compass.Full.yaml new file mode 100644 index 0000000000000..d617082adc548 --- /dev/null +++ b/manifests/m/MongoDB/Compass/Full/1.42.0.0/MongoDB.Compass.Full.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.LF.7-4-0.Unix +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: MongoDB.Compass.Full +PackageVersion: 1.42.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/MongoDB/Compass/Isolated/1.42.0.0/MongoDB.Compass.Isolated.installer.yaml b/manifests/m/MongoDB/Compass/Isolated/1.42.0.0/MongoDB.Compass.Isolated.installer.yaml new file mode 100644 index 0000000000000..53036dce8ff68 --- /dev/null +++ b/manifests/m/MongoDB/Compass/Isolated/1.42.0.0/MongoDB.Compass.Isolated.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.LF.7-4-0.Unix +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: MongoDB.Compass.Isolated +PackageVersion: 1.42.0.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/mongodb-js/compass/releases/download/v1.42.0/mongodb-compass-isolated-1.42.0-win32-x64.msi + InstallerSha256: 291B490B1F5F10F70E414360C0210164A6C39A0BCBF7D2326504082FA829EACD + ProductCode: '{BA76E1A1-6BAC-406D-B3E9-138BCAEC7A32}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/MongoDB/Compass/Isolated/1.42.0.0/MongoDB.Compass.Isolated.locale.en-US.yaml b/manifests/m/MongoDB/Compass/Isolated/1.42.0.0/MongoDB.Compass.Isolated.locale.en-US.yaml new file mode 100644 index 0000000000000..3931c15dda7db --- /dev/null +++ b/manifests/m/MongoDB/Compass/Isolated/1.42.0.0/MongoDB.Compass.Isolated.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.LF.7-4-0.Unix +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: MongoDB.Compass.Isolated +PackageVersion: 1.42.0.0 +PackageLocale: en-US +Publisher: MongoDB Inc +PublisherUrl: https://www.mongodb.com/ +PublisherSupportUrl: https://support.mongodb.com/ +PrivacyUrl: https://www.mongodb.com/legal/privacy-policy +# Author: +PackageName: MongoDB Compass Isolated Edition +PackageUrl: https://www.mongodb.com/products/compass +License: Proprietary +LicenseUrl: https://www.mongodb.com/customer-agreement +Copyright: Copyright (c) 2023 MongoDB, Inc. +# CopyrightUrl: +ShortDescription: The GUI for MongoDB. Visually explore your data. +Description: The GUI for MongoDB. Visually explore your data. Run ad hoc queries in seconds. Interact with your data with full CRUD functionality. View and optimize your query performance. Available on Linux, Mac, or Windows. Compass empowers you to make smarter decisions about indexing, document validation, and more. +Moniker: mongodb-compass-isolated +Tags: +- compass +- db +- isolated +- mongo +- mongodb +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/mongodb-js/compass/releases/tag/v1.42.0 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.24/Microsoft.Edge.Beta.yaml b/manifests/m/MongoDB/Compass/Isolated/1.42.0.0/MongoDB.Compass.Isolated.yaml similarity index 54% rename from manifests/m/Microsoft/Edge/Beta/118.0.2088.24/Microsoft.Edge.Beta.yaml rename to manifests/m/MongoDB/Compass/Isolated/1.42.0.0/MongoDB.Compass.Isolated.yaml index f426fda8f4e90..d4167936023c1 100644 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.24/Microsoft.Edge.Beta.yaml +++ b/manifests/m/MongoDB/Compass/Isolated/1.42.0.0/MongoDB.Compass.Isolated.yaml @@ -1,8 +1,8 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.24 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.LF.7-4-0.Unix +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: MongoDB.Compass.Isolated +PackageVersion: 1.42.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/MongoDB/Compass/Readonly/1.42.0.0/MongoDB.Compass.Readonly.installer.yaml b/manifests/m/MongoDB/Compass/Readonly/1.42.0.0/MongoDB.Compass.Readonly.installer.yaml new file mode 100644 index 0000000000000..f8986769adc2d --- /dev/null +++ b/manifests/m/MongoDB/Compass/Readonly/1.42.0.0/MongoDB.Compass.Readonly.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.LF.7-4-0.Unix +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: MongoDB.Compass.Readonly +PackageVersion: 1.42.0.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/mongodb-js/compass/releases/download/v1.42.0/mongodb-compass-readonly-1.42.0-win32-x64.msi + InstallerSha256: BA89E5649994332494BED7D817452B088159F5B76D639135789ABC173B0F5BB4 + ProductCode: '{94BFFFFE-74F9-40CD-B153-21A5B3E8CDA0}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/MongoDB/Compass/Readonly/1.42.0.0/MongoDB.Compass.Readonly.locale.en-US.yaml b/manifests/m/MongoDB/Compass/Readonly/1.42.0.0/MongoDB.Compass.Readonly.locale.en-US.yaml new file mode 100644 index 0000000000000..00be054867684 --- /dev/null +++ b/manifests/m/MongoDB/Compass/Readonly/1.42.0.0/MongoDB.Compass.Readonly.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.LF.7-4-0.Unix +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: MongoDB.Compass.Readonly +PackageVersion: 1.42.0.0 +PackageLocale: en-US +Publisher: MongoDB Inc +PublisherUrl: https://www.mongodb.com/ +PublisherSupportUrl: https://support.mongodb.com/ +PrivacyUrl: https://www.mongodb.com/legal/privacy-policy +# Author: +PackageName: MongoDB Compass Readonly +PackageUrl: https://www.mongodb.com/products/compass +License: Proprietary +LicenseUrl: https://www.mongodb.com/customer-agreement +Copyright: Copyright (c) 2023 MongoDB, Inc. +# CopyrightUrl: +ShortDescription: The GUI for MongoDB. Visually explore your data. +Description: The GUI for MongoDB. Visually explore your data. Run ad hoc queries in seconds. Interact with your data with full CRUD functionality. View and optimize your query performance. Available on Linux, Mac, or Windows. Compass empowers you to make smarter decisions about indexing, document validation, and more. +Moniker: mongodb-compass-readonly +Tags: +- compass +- db +- mongo +- mongodb +- readonly +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/mongodb-js/compass/releases/tag/v1.42.0 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.17/Microsoft.Edge.Beta.yaml b/manifests/m/MongoDB/Compass/Readonly/1.42.0.0/MongoDB.Compass.Readonly.yaml similarity index 54% rename from manifests/m/Microsoft/Edge/Beta/118.0.2088.17/Microsoft.Edge.Beta.yaml rename to manifests/m/MongoDB/Compass/Readonly/1.42.0.0/MongoDB.Compass.Readonly.yaml index baffcd5e97f17..64395a3e17601 100644 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.17/Microsoft.Edge.Beta.yaml +++ b/manifests/m/MongoDB/Compass/Readonly/1.42.0.0/MongoDB.Compass.Readonly.yaml @@ -1,8 +1,8 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.17 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.LF.7-4-0.Unix +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: MongoDB.Compass.Readonly +PackageVersion: 1.42.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.017/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.017/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index f90082bfca6ee..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.017/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.10.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.017' -InstallerType: nullsoft -ReleaseDate: 2023-06-29 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1017.exe - InstallerSha256: 940DFE6050345772A5BC8397095F4662CE67FB0553643310B5312611D53EB662 - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1017_x64.exe - InstallerSha256: F53223308D378262FE491D66744FAD2CDF7D776B6F6CA085724253EECBC2D6BA - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.017/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.017/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index 3f5087f4f0656..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.017/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.10.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.017' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.018/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.018/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index 3e16971dc070f..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.018/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.10.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.018' -InstallerType: nullsoft -ReleaseDate: 2023-08-09 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1018.exe - InstallerSha256: B58982A5BFEDB316716B529E144FA4B5EC57DB5484F8DEED1019DE6F92D48185 - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1018_x64.exe - InstallerSha256: B364BF1AA95E81C2F6D5962BFD01F6EB43766B2CDCBABF19C4BEE7FEAFC5F595 - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.018/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.018/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index cc02f8464ce50..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.018/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.10.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.018' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.018/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.018/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index c99f77525352c..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.018/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.10.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.018' -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.019/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.019/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index a4304cb3f8f47..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.019/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.019' -InstallerType: nullsoft -ReleaseDate: 2023-08-19 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1019.exe - InstallerSha256: 25DCE81559562FA841D562A34BC051507F24A0C066CE9266CAA75CCE3652DCAC - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1019_x64.exe - InstallerSha256: FF05EC4CEC700281F7E93106616774501BABC25163ACCD85F7213133DD109213 - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.019/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.019/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index 36e3b19c6e770..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.019/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.019' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.019/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.019/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index 3d6d1d8bd4912..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.019/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.019' -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.020/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.020/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index dd794b703e0c1..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.020/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.020' -InstallerType: nullsoft -ReleaseDate: 2023-08-28 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1020.exe - InstallerSha256: 1427EBB80E6B9EFCCB937FB8A9B6FF4B22045BCEBE0AF76407DC67FCE599222E - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1020_x64.exe - InstallerSha256: 36D2B961C430849410A504FF19C0691D681D4E6D7AC61D9A3F3DBD0170E708F2 - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.020/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.020/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index 24c0c37010cd2..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.020/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.020' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.020/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.020/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index 785605b2d92e3..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.020/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.020' -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.022/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.022/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index e6546fd40497d..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.022/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.022' -InstallerType: nullsoft -ReleaseDate: 2023-09-14 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1022.exe - InstallerSha256: B742886AC28C05F6ED67F59F82E7DAA9E21A094E512DE7E6E03742E98AF0929E - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1022_x64.exe - InstallerSha256: 5BECAFC368107260A32E43910502A207A517510EBC7970D1328695DC3678F73A - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.022/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.022/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index 705838b158584..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.022/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.022' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.022/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.022/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index a279da6b869a5..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.022/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.022' -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.023/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.023/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index 0013572180c76..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.023/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.023' -InstallerType: nullsoft -ReleaseDate: 2023-09-27 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1023.exe - InstallerSha256: 2DCEC258E350D9002FFF245A6490EA63F1F9F25172CF43393F3DEDF7FB2867F8 - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1023_x64.exe - InstallerSha256: AF4AD35469AC72F0789FE6BC56EF49EF89EA4BB0AAD24B7638F43FE364943C99 - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.023/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.023/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index 613c4a6268cdf..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.023/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.023' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.023/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.023/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index e9e29e00204eb..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.023/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.023' -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.024/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.024/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index f43acc57de5b2..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.024/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.024' -InstallerType: nullsoft -ReleaseDate: 2023-09-29 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1024.exe - InstallerSha256: E2CCBAEEC4738E2BA21EED5C4C20B8FF5F5E355851DCF57ABC23F2BCED246F07 - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1024_x64.exe - InstallerSha256: 570D2EE890B009433EEEAE605BAFD524EAF811684E68EF9F7BD465A552ADF0B7 - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.024/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.024/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index 3a81ba4758a78..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.024/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.024' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.024/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.024/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index 648de62caa935..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.024/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.024' -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.026/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.026/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index 1d8b7def12886..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.026/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.026' -InstallerType: nullsoft -ReleaseDate: 2023-10-30 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1026.exe - InstallerSha256: 90CCFEE3875F88690595C43CCB9A4D00A81F8DC3C4DEC632DD5BDAFA63C73A6D - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1026_x64.exe - InstallerSha256: 46B25B669011A8DE4EE5838E82FA6547D2067623A8DDF804F2FA02EF311EDBFE - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.026/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.026/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index 9a2504f3d138a..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.026/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.026' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.026/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.026/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index 09b91145b786a..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.026/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.026' -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.027/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.027/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index ce1a0fd3eb42d..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.027/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.027' -InstallerType: nullsoft -ReleaseDate: 2023-11-16 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1027.exe - InstallerSha256: 2564F058D8BCD78DF36708A795D063AE708C7647CB340F8D1B11907E455C3BEB - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1027_x64.exe - InstallerSha256: 8BA6A0E59E3CCB63AA6C156EF5B58FCE00F4A60ED845C72F8B151A33C4CE4B90 - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.027/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.027/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index 751a7401ab109..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.027/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.027' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.027/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.027/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index 3035851247585..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.027/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.027' -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.028/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.028/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index d2b7b8d0d9ea6..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.028/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.028' -InstallerType: nullsoft -ReleaseDate: 2023-11-22 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1028.exe - InstallerSha256: 34674F66812610207F4F1C58F71445A0E02E731CF5AE09C6FE86E6B27B95BCA8 - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1028_x64.exe - InstallerSha256: 6366BE01697B8378A7D0D563D896AE6647AFF7D2B1E3A619E72007D11D782A08 - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.028/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.028/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index 4aefe16c2a3a4..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.028/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.028' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.028/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.028/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index 5d54a24b37339..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.028/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.028' -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.029/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.029/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index 2efd28489ee94..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.029/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.029' -InstallerType: nullsoft -ReleaseDate: 2023-11-24 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1029.exe - InstallerSha256: 671D8C1E06C898378FDF8D779A9E7E19B51E68B48464FCB2E195B56556CB2A50 - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1029_x64.exe - InstallerSha256: D1E39388AABB4F6A9CD101D7DEB045FDF53208C07AAA1097C62A7216587E88EC - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.029/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.029/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index bf48d19118222..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.029/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.029' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.029/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.029/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index c79067ea6c8a4..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.029/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.029' -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.030/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.030/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index 4e3d4023186e3..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.030/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.030' -InstallerType: nullsoft -ReleaseDate: 2023-12-13 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1030.exe - InstallerSha256: FB9D92348823C739B21168C4EE73C7B45782EDA07925821CDC1A57D09DA102A9 - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1030_x64.exe - InstallerSha256: 7D7775801406E9AF788F001FE43D55F9BBC54194F592CE948580891D8A1A760E - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.030/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.030/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index 44845bc592dcb..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.030/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.030' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.030/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.030/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index ad99a810b14b3..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.030/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.030' -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.033/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.033/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index 55302115ed21c..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.033/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.033' -InstallerType: nullsoft -ReleaseDate: 2023-12-16 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1033.exe - InstallerSha256: 01911B8DB33FB76546558A0A56513CCDA0B4E555050156C3A60EBA40CF1DC6BC - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1033_x64.exe - InstallerSha256: AF3906F1B450EDC7D9B60F9DB8054AB061E28D370A53C67571085527314B7115 - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.033/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.033/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index f6af75ba82389..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.033/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.033' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.033/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.033/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index afb4b3b842358..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.033/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.033' -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.034/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.034/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index b0199ecad4446..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.034/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.034' -InstallerType: nullsoft -ReleaseDate: 2023-12-17 -Installers: -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_1034.exe - InstallerSha256: 9DDA2355E4941521F599911C2F5D7CE475737C6F8A72B22BD3F1F9122EA4EE0B - ProductCode: Monkey's Audio_is1 -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_1034_x64.exe - InstallerSha256: E462AC98A77F3BFB8CB8749003725AB7FD87E50D0FB269511A07D5F28ACF0935 - ProductCode: Monkey's Audio x64_is1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.034/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.034/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index 69f656b1a6228..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.034/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.034' -PackageLocale: en-US -Publisher: Matthew Todd Ashland -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -Tags: -- audio -- compressor -- digital-audio -- music -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/1.034/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/1.034/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index 6cfde714e475f..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/1.034/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Automation using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: '1.034' -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/9.04/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/9.04/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index a1164de9d5efe..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/9.04/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: "9.04" -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -ReleaseDate: 2022-11-28 -Installers: -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_904_x64.exe - InstallerSha256: 9085C33CAA48E998AB7DBEC4C2636E360F6278DAC47F48C88157BF025F18514D - ProductCode: Monkey's Audio x64_is1 -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_904.exe - InstallerSha256: 2F3E715DA491270F58CC41FF3225A4A5C357BEC2AD959B0398EDF4490152CA36 - ProductCode: Monkey's Audio_is1 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/9.04/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/9.04/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index ed2d8e379c88e..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/9.04/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: "9.04" -PackageLocale: en-US -Publisher: Matthew Todd Ashland -# PublisherUrl: -# PublisherSupportUrl: -# PrivacyUrl: -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com/ -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2022 Matt Ashland -# CopyrightUrl: -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -# Moniker: -Tags: -- audio -- compressor -- digital-audio -- music -# Agreements: -ReleaseNotes: |- - Version 9.01 (December 3, 2022) - 1. Changed: Updated to FLAC 1.4.2. - 2. Changed: Updated from the beta to release of TAK 2.3.3. - 3. Changed: Updated to QAAC 2.77. - 4. Changed: WAV files with ID3v1 tags at the end would fail to decode. Now ID3v1 tags are no longer checked for if that's the exact size of the WAV terminating data. -ReleaseNotesUrl: https://monkeysaudio.com/versionhistory.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/9.04/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/9.04/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index 5271ff144f3fc..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/9.04/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: "9.04" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/9.20/MonkeysAudio.MonkeysAudio.installer.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/9.20/MonkeysAudio.MonkeysAudio.installer.yaml deleted file mode 100644 index 433f11715c8f0..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/9.20/MonkeysAudio.MonkeysAudio.installer.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: "9.20" -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -ReleaseDate: 2023-02-17 -Installers: -- Architecture: x64 - InstallerUrl: https://monkeysaudio.com/files/MAC_920_x64.exe - InstallerSha256: C7AD2603D8A747F60C2727AA2EE0B4ADF10B523F6B84A9F546343127546FBA7B - ProductCode: Monkey's Audio x64_is1 -- Architecture: x86 - InstallerUrl: https://monkeysaudio.com/files/MAC_920.exe - InstallerSha256: E23910D820B1571C955FDBD1FB3A920C83CFBEA334937A1C4D8AF48F328C01CC - ProductCode: Monkey's Audio_is1 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/9.20/MonkeysAudio.MonkeysAudio.locale.en-US.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/9.20/MonkeysAudio.MonkeysAudio.locale.en-US.yaml deleted file mode 100644 index d90c83582e6d9..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/9.20/MonkeysAudio.MonkeysAudio.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: "9.20" -PackageLocale: en-US -Publisher: Matthew Todd Ashland -# PublisherUrl: -# PublisherSupportUrl: -# PrivacyUrl: -Author: Matt Ashland -PackageName: Monkey's Audio -PackageUrl: https://monkeysaudio.com/ -License: Proprietary -LicenseUrl: https://monkeysaudio.com/license.html -Copyright: ©2000-2023 Matt Ashland -# CopyrightUrl: -ShortDescription: Fast, easy to use digital audio compressor -Description: Monkey’s Audio is a fast and easy way to compress digital music. Unlike traditional methods such as mp3, ogg, or wma that permanently discard quality to save space, Monkey’s Audio only makes perfect, bit-for-bit copies of your music. -# Moniker: -Tags: -- audio -- compressor -- digital-audio -- music -# Agreements: -ReleaseNotes: |- - Version 9.18 (February 17, 2023) - 1. Fixed: The new functions in MACDll were not being exported properly. - 2. NEW: Added a GetLibraryInterfaceVersion function to MACDll. - 3. Fixed: Build problems using MinGW. -ReleaseNotesUrl: https://monkeysaudio.com/versionhistory.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/m/MonkeysAudio/MonkeysAudio/9.20/MonkeysAudio.MonkeysAudio.yaml b/manifests/m/MonkeysAudio/MonkeysAudio/9.20/MonkeysAudio.MonkeysAudio.yaml deleted file mode 100644 index 568d1a7495911..0000000000000 --- a/manifests/m/MonkeysAudio/MonkeysAudio/9.20/MonkeysAudio.MonkeysAudio.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: MonkeysAudio.MonkeysAudio -PackageVersion: "9.20" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/m/monkeyWie/Gopeed/1.5.5/monkeyWie.Gopeed.installer.yaml b/manifests/m/monkeyWie/Gopeed/1.5.5/monkeyWie.Gopeed.installer.yaml new file mode 100644 index 0000000000000..dab2b75baf853 --- /dev/null +++ b/manifests/m/monkeyWie/Gopeed/1.5.5/monkeyWie.Gopeed.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: monkeyWie.Gopeed +PackageVersion: 1.5.5 +InstallerType: zip +Scope: user +UpgradeBehavior: install +ReleaseDate: 2024-01-30 +Installers: +- Architecture: x64 + NestedInstallerType: inno + NestedInstallerFiles: + - RelativeFilePath: Gopeed-v1.5.5-windows-amd64.exe + InstallerUrl: https://github.com/GopeedLab/gopeed/releases/download/v1.5.5/Gopeed-v1.5.5-windows-amd64.zip + InstallerSha256: EE4C24D00248899E40D328C1886725E1BB9233E3566D2880764979F5FCB23B8B + ProductCode: '{5960F34D-1E42-402C-8C85-DE2FF24CBAE4}_is1' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/monkeyWie/Gopeed/1.5.5/monkeyWie.Gopeed.locale.en-US.yaml b/manifests/m/monkeyWie/Gopeed/1.5.5/monkeyWie.Gopeed.locale.en-US.yaml new file mode 100644 index 0000000000000..505aca777cc78 --- /dev/null +++ b/manifests/m/monkeyWie/Gopeed/1.5.5/monkeyWie.Gopeed.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: monkeyWie.Gopeed +PackageVersion: 1.5.5 +PackageLocale: en-US +Publisher: monkeyWie +PublisherUrl: https://monkeywie.cn/ +PublisherSupportUrl: https://github.com/GopeedLab/gopeed/issues +# PrivacyUrl: +Author: monkeyWie +PackageName: Gopeed +PackageUrl: https://github.com/GopeedLab/gopeed +License: GPL-3.0 +LicenseUrl: https://github.com/GopeedLab/gopeed/blob/main/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: 支持所有平台的高速下载器。 +# Description: +# Moniker: +Tags: +- download +- downloader +ReleaseNotes: |- + 🐛 Bug Fixes + - fix: config init fail @monkeyWie (#365) + - fix: windows default install dir @monkeyWie (#366) +ReleaseNotesUrl: https://github.com/GopeedLab/gopeed/releases/tag/v1.5.5 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/monkeyWie/Gopeed/1.5.5/monkeyWie.Gopeed.locale.zh-CN.yaml b/manifests/m/monkeyWie/Gopeed/1.5.5/monkeyWie.Gopeed.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5f14a2a9a650b --- /dev/null +++ b/manifests/m/monkeyWie/Gopeed/1.5.5/monkeyWie.Gopeed.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: monkeyWie.Gopeed +PackageVersion: 1.5.5 +PackageLocale: zh-CN +Publisher: monkeyWie +PublisherUrl: https://monkeywie.cn/ +PublisherSupportUrl: https://github.com/GopeedLab/gopeed/issues +# PrivacyUrl: +Author: monkeyWie +PackageName: Gopeed +PackageUrl: https://github.com/GopeedLab/gopeed +License: GPL-3.0 +LicenseUrl: https://github.com/GopeedLab/gopeed/blob/main/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: High speed downloader that supports all platforms. +# Description: +# Moniker: +Tags: +- 下载 +- 下载器 +ReleaseNotes: |- + 🐛 Bug 修复 + - fix: 配置初始化错误 @monkeyWie (#365) + - fix: windows 默认安装目录 @monkeyWie (#366) +ReleaseNotesUrl: https://github.com/GopeedLab/gopeed/releases/tag/v1.5.5 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/m/monkeyWie/Gopeed/1.5.5/monkeyWie.Gopeed.yaml b/manifests/m/monkeyWie/Gopeed/1.5.5/monkeyWie.Gopeed.yaml new file mode 100644 index 0000000000000..83f9cb5f02b9b --- /dev/null +++ b/manifests/m/monkeyWie/Gopeed/1.5.5/monkeyWie.Gopeed.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: monkeyWie.Gopeed +PackageVersion: 1.5.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/n/NTKERNEL/WireSockVPNClient/1.2.37/NTKERNEL.WireSockVPNClient.installer.yaml b/manifests/n/NTKERNEL/WireSockVPNClient/1.2.37/NTKERNEL.WireSockVPNClient.installer.yaml new file mode 100644 index 0000000000000..c4aef9965b39c --- /dev/null +++ b/manifests/n/NTKERNEL/WireSockVPNClient/1.2.37/NTKERNEL.WireSockVPNClient.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: NTKERNEL.WireSockVPNClient +PackageVersion: 1.2.37 +InstallerLocale: en-US +InstallerType: wix +InstallModes: +- silent +- interactive +- silentWithProgress +Installers: +- Architecture: x86 + InstallerUrl: https://www.wiresock.net/sdc_download/911/?key=yt5r7yu8kxvah4lctq3477gtrlyk94 + InstallerSha256: 16A6FB157D4CEB2EA57892CBB1F3B635F61A6919A218148FD46AB6664D3EB3D9 + ProductCode: '{F95BABE2-C958-425F-8E82-A4A98BB4B763}' +- Architecture: x64 + InstallerUrl: https://www.wiresock.net/sdc_download/909/?key=800439ju4unkj0zn5o7y3ve469bvtg + InstallerSha256: 3E211302D0C9AAA36DC7AD584EBD1D955D7E9589D188DF737CDBB2AC36CFCF56 + ProductCode: '{17A06164-4108-4B34-A416-CAA94D30728F}' +- Architecture: arm64 + InstallerUrl: https://www.wiresock.net/sdc_download/912/?key=rjxd1vi7gdwgknwo342jq43mkrwlxq + InstallerSha256: 094971AEB54A664D70765B86CC0ADD17DD6BEE45E67BFF7565E015190B6B767E + ProductCode: '{260C15E9-8771-4118-A614-B700E2CF5AB1}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/n/NTKERNEL/WireSockVPNClient/1.2.37/NTKERNEL.WireSockVPNClient.locale.en-US.yaml b/manifests/n/NTKERNEL/WireSockVPNClient/1.2.37/NTKERNEL.WireSockVPNClient.locale.en-US.yaml new file mode 100644 index 0000000000000..9bde638218e9c --- /dev/null +++ b/manifests/n/NTKERNEL/WireSockVPNClient/1.2.37/NTKERNEL.WireSockVPNClient.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: NTKERNEL.WireSockVPNClient +PackageVersion: 1.2.37 +PackageLocale: en-US +Publisher: NT KERNEL +PackageName: WireSock VPN Client +License: Free for personal (non-commercial), or educational (including non-profit organization) use. +LicenseUrl: "https://www.wiresock.net/license/wiresock_eula.html" +ShortDescription: WireSock VPN Client is an advanced command-line WireGuard VPN client for Windows. It offers features beyond the official WireGuard app, including selective application tunneling and IP address exclusion. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/n/NTKERNEL/WireSockVPNClient/1.2.37/NTKERNEL.WireSockVPNClient.yaml b/manifests/n/NTKERNEL/WireSockVPNClient/1.2.37/NTKERNEL.WireSockVPNClient.yaml new file mode 100644 index 0000000000000..77ccbae820da2 --- /dev/null +++ b/manifests/n/NTKERNEL/WireSockVPNClient/1.2.37/NTKERNEL.WireSockVPNClient.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: NTKERNEL.WireSockVPNClient +PackageVersion: 1.2.37 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/n/NTKERNEL/WireSockVPNGateway/1.1.4/NTKERNEL.WireSockVPNGateway.installer.yaml b/manifests/n/NTKERNEL/WireSockVPNGateway/1.1.4/NTKERNEL.WireSockVPNGateway.installer.yaml new file mode 100644 index 0000000000000..9020b203c0954 --- /dev/null +++ b/manifests/n/NTKERNEL/WireSockVPNGateway/1.1.4/NTKERNEL.WireSockVPNGateway.installer.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: NTKERNEL.WireSockVPNGateway +PackageVersion: 1.1.4 +InstallerLocale: en-US +InstallerType: wix +InstallModes: +- interactive +- silent +- silentWithProgress +Dependencies: + PackageDependencies: + - PackageIdentifier: WireGuard.WireGuard + MinimumVersion: 0.5.3 +Installers: +- Architecture: x86 + InstallerUrl: https://www.wiresock.net/sdc_download/922/?key=hyilnmwdwh37yp3knckqrn5r53z081 + InstallerSha256: 1167006CD1650547801FAF1ABF3B0A8382B2EFF27B61BCA042E67B959AE2F9E6 + ProductCode: '{A9CF9DFA-F5E0-46E5-91B7-2DA78B91605B}' +- Architecture: x64 + InstallerUrl: https://www.wiresock.net/sdc_download/921/?key=bekfpuvidq5x8ofg2u74j2lqk8zy9y + InstallerSha256: CE9A67BDBA012EB9EDFBEB090BAF76DE29DF7680F14C9BF032757D642D9E8D1F + ProductCode: '{2D6A1E29-BFEE-4F11-B2D6-725994A83E21}' +- Architecture: arm64 + InstallerUrl: https://www.wiresock.net/sdc_download/923/?key=7m03u7cp7axlt2jhf62bc186gnx0s3 + InstallerSha256: B83CE6BBFA72898BF821309C5546F30F1583974AD5CA105CDCBF25C108576E37 + ProductCode: '{C45B9ACD-910E-473B-98CE-3F6C34BB5B27}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/n/NTKERNEL/WireSockVPNGateway/1.1.4/NTKERNEL.WireSockVPNGateway.locale.en-US.yaml b/manifests/n/NTKERNEL/WireSockVPNGateway/1.1.4/NTKERNEL.WireSockVPNGateway.locale.en-US.yaml new file mode 100644 index 0000000000000..7f1d108beb1da --- /dev/null +++ b/manifests/n/NTKERNEL/WireSockVPNGateway/1.1.4/NTKERNEL.WireSockVPNGateway.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: NTKERNEL.WireSockVPNGateway +PackageVersion: 1.1.4 +PackageLocale: en-US +Publisher: NT KERNEL +PackageName: WireSock VPN Gateway +License: Free for personal (non-commercial), or educational (including non-profit organization) use. +LicenseUrl: "https://www.wiresock.net/license/wiresock_server_eula.html" +ShortDescription: WireSock VPN Gateway converts the Windows WireGuard Client into a VPN server, allowing Windows to share Internet/LAN with WireGuard clients. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/n/NTKERNEL/WireSockVPNGateway/1.1.4/NTKERNEL.WireSockVPNGateway.yaml b/manifests/n/NTKERNEL/WireSockVPNGateway/1.1.4/NTKERNEL.WireSockVPNGateway.yaml new file mode 100644 index 0000000000000..ca18c906f7043 --- /dev/null +++ b/manifests/n/NTKERNEL/WireSockVPNGateway/1.1.4/NTKERNEL.WireSockVPNGateway.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: NTKERNEL.WireSockVPNGateway +PackageVersion: 1.1.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/n/Neemb/Distill/3.9.1-beta/Neemb.Distill.installer.yaml b/manifests/n/Neemb/Distill/3.9.1-beta/Neemb.Distill.installer.yaml new file mode 100644 index 0000000000000..3f42cf25bf95b --- /dev/null +++ b/manifests/n/Neemb/Distill/3.9.1-beta/Neemb.Distill.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Neemb.Distill +PackageVersion: 3.9.1-beta +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://dev-distill-releases.s3.us-east-2.amazonaws.com/web-monitor/beta/3.9.1/installer/Distill%20Web%20Monitor-win32-x64-3.9.1-beta.exe + InstallerSha256: F84B213249683DE7418EE41CF9E46CB8B6059DDEDD1F12878F827774DDF00A7F + ProductCode: distill_web_monitor +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/n/Neemb/Distill/3.9.1-beta/Neemb.Distill.locale.en-US.yaml b/manifests/n/Neemb/Distill/3.9.1-beta/Neemb.Distill.locale.en-US.yaml new file mode 100644 index 0000000000000..0d02036c655bd --- /dev/null +++ b/manifests/n/Neemb/Distill/3.9.1-beta/Neemb.Distill.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Neemb.Distill +PackageVersion: 3.9.1-beta +PackageLocale: en-US +Publisher: Distill +PublisherUrl: https://distill.io/ +PublisherSupportUrl: https://distill.io/docs/contact-us/ +PrivacyUrl: https://distill.io/privacy-policy/ +Author: Neemb LLC +PackageName: Distill Web Monitor +PackageUrl: https://distill.io/apps/web-monitor/ +License: Proprietary +LicenseUrl: https://distill.io/terms-of-service/ +Copyright: © All Rights Reserved Neemb LLC +# CopyrightUrl: +ShortDescription: Tracking website updates, automated and simplified +Description: Distill's desktop app offers unmatched power and easy of use right on your desktop. As a dedicated app, it is much more powerful and effective at monitoring web. +# Moniker: +Tags: +- monitor +- track +- web +# ReleaseNotes: +ReleaseNotesUrl: https://distill.io/changelog/ +PurchaseUrl: https://distill.io/pricing/ +# InstallationNotes: +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://distill.io/docs/web-monitor/what-is-distill/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/n/Neemb/Distill/3.9.1-beta/Neemb.Distill.locale.zh-CN.yaml b/manifests/n/Neemb/Distill/3.9.1-beta/Neemb.Distill.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f95057add875a --- /dev/null +++ b/manifests/n/Neemb/Distill/3.9.1-beta/Neemb.Distill.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Neemb.Distill +PackageVersion: 3.9.1-beta +PackageLocale: zh-CN +Publisher: Distill +PublisherUrl: https://distill.io/ +PublisherSupportUrl: https://distill.io/docs/contact-us/ +PrivacyUrl: https://distill.io/privacy-policy/ +Author: Neemb LLC +PackageName: Distill Web Monitor +PackageUrl: https://distill.io/apps/web-monitor/ +License: 专有软件 +LicenseUrl: https://distill.io/terms-of-service/ +Copyright: © All Rights Reserved Neemb LLC +# CopyrightUrl: +ShortDescription: 自动化和简化的网站更新追踪 +Description: Distill 的客户端在您的电脑提供了无与伦比的功能和易用性。作为一款专门的应用程序,它在监控网页方面更加强大和有效。 +# Moniker: +Tags: +- 监控 +- 网页 +- 追踪 +# ReleaseNotes: +ReleaseNotesUrl: https://distill.io/changelog/ +PurchaseUrl: https://distill.io/pricing/ +# InstallationNotes: +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://distill.io/docs/web-monitor/what-is-distill/ +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/n/Neemb/Distill/3.9.1-beta/Neemb.Distill.yaml b/manifests/n/Neemb/Distill/3.9.1-beta/Neemb.Distill.yaml new file mode 100644 index 0000000000000..2232b9b03d7a8 --- /dev/null +++ b/manifests/n/Neemb/Distill/3.9.1-beta/Neemb.Distill.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Neemb.Distill +PackageVersion: 3.9.1-beta +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/n/NetEase/MCLauncher/1.13.0.34938/NetEase.MCLauncher.installer.yaml b/manifests/n/NetEase/MCLauncher/1.13.0.34938/NetEase.MCLauncher.installer.yaml new file mode 100644 index 0000000000000..1ebab68ca6890 --- /dev/null +++ b/manifests/n/NetEase/MCLauncher/1.13.0.34938/NetEase.MCLauncher.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: NetEase.MCLauncher +PackageVersion: 1.13.0.34938 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://x19.gdl.netease.com/MCLauncher_1.13.0.34938.exe + InstallerSha256: F9795DD0F05ACD80667491BD2988B977421B691B3D37BE9C9F52411EAA5517E4 + ProductCode: '{ACF74202-DF20-4F8D-A810-B9502CCC603F}_is1' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/n/NetEase/MCLauncher/1.13.0.34938/NetEase.MCLauncher.locale.en-US.yaml b/manifests/n/NetEase/MCLauncher/1.13.0.34938/NetEase.MCLauncher.locale.en-US.yaml new file mode 100644 index 0000000000000..b05d8a17291bb --- /dev/null +++ b/manifests/n/NetEase/MCLauncher/1.13.0.34938/NetEase.MCLauncher.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: NetEase.MCLauncher +PackageVersion: 1.13.0.34938 +PackageLocale: en-US +Publisher: Netease +PublisherUrl: https://mc.163.com/ +PublisherSupportUrl: https://mc.163.com/shequ/ +PrivacyUrl: https://unisdk.update.netease.com/html/latest_v90.html +Author: |- + Mojang AB + Shanghai NetEase MineWorld Network Technology Co., Ltd. +PackageName: 我的世界启动器 +PackageUrl: https://mc.163.com/ +License: Proprietary +LicenseUrl: https://mc.163.com/news/update/20180619/29176_719812.html +Copyright: Copyright ©2024 Mojang AB. Operated by Shanghai NetEase MineWorld Network Technology Co., Ltd. +# CopyrightUrl: +ShortDescription: A 3D sandbox game developed by Mojang Studios and operated by NetEase in mainland China +Description: Minecraft is a game about placing blocks and going on adventures, where players can explore randomly-generated worlds and build amazing things alone or with friends. +# Moniker: +Tags: +- mc +- minecraft +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/n/NetEase/MCLauncher/1.13.0.34938/NetEase.MCLauncher.locale.zh-CN.yaml b/manifests/n/NetEase/MCLauncher/1.13.0.34938/NetEase.MCLauncher.locale.zh-CN.yaml new file mode 100644 index 0000000000000..afadbdbb5cd52 --- /dev/null +++ b/manifests/n/NetEase/MCLauncher/1.13.0.34938/NetEase.MCLauncher.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: NetEase.MCLauncher +PackageVersion: 1.13.0.34938 +PackageLocale: zh-CN +Publisher: Netease +PublisherUrl: https://mc.163.com/ +PublisherSupportUrl: https://mc.163.com/shequ/ +PrivacyUrl: https://unisdk.update.netease.com/html/latest_v90.html +Author: |- + Mojang AB + 上海网之易吾世界网络科技有限公司 +PackageName: 我的世界启动器 +PackageUrl: https://mc.163.com/ +License: 专有软件 +LicenseUrl: https://mc.163.com/news/update/20180619/29176_719812.html +Copyright: ©2024 Mojang公司版权所有 由上海网之易吾世界网络科技有限公司运营 +# CopyrightUrl: +ShortDescription: 由瑞典 Mojang 公司开发、由网易公司在中国代理运营的 3D 沙盒游戏 +Description: 我的世界是一个关于方块与冒险的游戏,玩家可以独自一人或与朋友们一起,探索随机生成的世界,创造令人惊叹的奇迹。 +# Moniker: +Tags: +- mc +- minecraft +- 我的世界 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/n/NetEase/MCLauncher/1.13.0.34938/NetEase.MCLauncher.yaml b/manifests/n/NetEase/MCLauncher/1.13.0.34938/NetEase.MCLauncher.yaml new file mode 100644 index 0000000000000..1ac40f0e1bf85 --- /dev/null +++ b/manifests/n/NetEase/MCLauncher/1.13.0.34938/NetEase.MCLauncher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: NetEase.MCLauncher +PackageVersion: 1.13.0.34938 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/n/NetEase/MailMaster/5.0.8.1017/NetEase.MailMaster.installer.yaml b/manifests/n/NetEase/MailMaster/5.0.8.1017/NetEase.MailMaster.installer.yaml new file mode 100644 index 0000000000000..c3c2fdb2b79cc --- /dev/null +++ b/manifests/n/NetEase/MailMaster/5.0.8.1017/NetEase.MailMaster.installer.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: NetEase.MailMaster +PackageVersion: 5.0.8.1017 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent-install + SilentWithProgress: --silent-install + Log: --log-file="" + Custom: --do-not-launch-master +ExpectedReturnCodes: +- InstallerReturnCode: -1 + ReturnResponse: installInProgress +UpgradeBehavior: install +Protocols: +- mailto +FileExtensions: +- eml +Installers: +- Architecture: x86 + InstallerUrl: http://fm.dl.126.net/mailmaster/update2/mail-5.0.8.1017.exe + InstallerSha256: FAFCC5D4C1A765295F41B6D131E4332D9039416EFC627527D0BE1DC57D9BFF2C + ProductCode: MailMaster +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/n/NetEase/MailMaster/5.0.8.1017/NetEase.MailMaster.locale.en-US.yaml b/manifests/n/NetEase/MailMaster/5.0.8.1017/NetEase.MailMaster.locale.en-US.yaml new file mode 100644 index 0000000000000..b583528f7ad63 --- /dev/null +++ b/manifests/n/NetEase/MailMaster/5.0.8.1017/NetEase.MailMaster.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: NetEase.MailMaster +PackageVersion: 5.0.8.1017 +PackageLocale: en-US +Publisher: NetEase(Hangzhou) Network Co. Ltd. +PublisherUrl: https://dashi.163.com/ +PublisherSupportUrl: https://dashi.163.com/help.html +PrivacyUrl: https://reg.163.com/agreement_mobile_ysbh_wap.shtml +Author: NetEase (Hangzhou) Network Co., Ltd. +PackageName: 网易邮箱大师 +PackageUrl: https://dashi.163.com/download.html +License: Proprietary +LicenseUrl: https://maas.mail.163.com/dashi-web-extend/html/mastermail.html +Copyright: ©1997-2024 Netease, Inc. All rights reserved. +# CopyrightUrl: +ShortDescription: Efficient, powerful and cross-platform email client +# Description: +# Moniker: +Tags: +- email +- mail +- mailbox +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://v.mail.163.com/ +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/n/NetEase/MailMaster/5.0.8.1017/NetEase.MailMaster.locale.zh-CN.yaml b/manifests/n/NetEase/MailMaster/5.0.8.1017/NetEase.MailMaster.locale.zh-CN.yaml new file mode 100644 index 0000000000000..eccf309e27838 --- /dev/null +++ b/manifests/n/NetEase/MailMaster/5.0.8.1017/NetEase.MailMaster.locale.zh-CN.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: NetEase.MailMaster +PackageVersion: 5.0.8.1017 +PackageLocale: zh-CN +Publisher: NetEase(Hangzhou) Network Co. Ltd. +PublisherUrl: https://dashi.163.com/ +PublisherSupportUrl: https://dashi.163.com/help.html +PrivacyUrl: https://reg.163.com/agreement_mobile_ysbh_wap.shtml +Author: 网易(杭州)网络有限公司 +PackageName: 网易邮箱大师 +PackageUrl: https://dashi.163.com/download.html +License: 专有软件 +LicenseUrl: https://maas.mail.163.com/dashi-web-extend/html/mastermail.html +Copyright: 网易公司版权所有 ©1997-2024 +# CopyrightUrl: +ShortDescription: 高效强大的全平台邮箱客户端 +# Description: +# Moniker: +Tags: +- 电子邮件 +- 邮件 +- 邮箱 +ReleaseNotes: |- + 重磅更新: + 1. 可将重要的邮件转化为待办事项,以确保不会忘记。支持与手机端邮箱大师同步管理。 + 2. 随时在边栏查看、记录自己的待办事项与想法。 + 3. 全新暗黑皮肤来了,让您在夜晚获得舒适的视觉体验。 + 4. 支持您按阅读习惯调整左右、上下分栏布局。 + 5. 邮件追踪支持全平台邮箱,还额外支持网易邮箱群发邮件时开启邮件追踪。 + 6. 打开邮件内链接的安全浏览模式,可在隔离的环境中加载第三方链接,保障设备安全。 + 其他更新内容: + 1. 写信页重构优化,提升写信效率 + 2. 大师空间附件下载支持断点续传 + 3. 升级多平台架构 + 使用问题可以点击主界面左下角的「常见问题」,查看解决方案。 + 邮箱添加及使用问题,可发送邮件至 dashiteam@163.com。 +# ReleaseNotesUrl: +PurchaseUrl: https://v.mail.163.com/ +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/n/NetEase/MailMaster/5.0.8.1017/NetEase.MailMaster.yaml b/manifests/n/NetEase/MailMaster/5.0.8.1017/NetEase.MailMaster.yaml new file mode 100644 index 0000000000000..82eb6242ab322 --- /dev/null +++ b/manifests/n/NetEase/MailMaster/5.0.8.1017/NetEase.MailMaster.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: NetEase.MailMaster +PackageVersion: 5.0.8.1017 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/n/Nostalgia-09/AeroChat/1.0.1-rc.7/Nostalgia-09.AeroChat.installer.yaml b/manifests/n/Nostalgia-09/AeroChat/1.0.1-rc.7/Nostalgia-09.AeroChat.installer.yaml new file mode 100644 index 0000000000000..c84d9ae1b02ab --- /dev/null +++ b/manifests/n/Nostalgia-09/AeroChat/1.0.1-rc.7/Nostalgia-09.AeroChat.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Nostalgia-09.AeroChat +PackageVersion: 1.0.1-rc.7 +InstallerType: nullsoft +InstallerSwitches: + Silent: /S --force-run + SilentWithProgress: /S --force-run +UpgradeBehavior: install +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Nostalgia-09/AeroChat/releases/download/1.0.1-rc.7/aerochat-1.0.1-rc.7-setup.exe + InstallerSha256: BE1F402EF6BC1FEA8FED4F97F5764D1C12D9F610478A3750119CE376409FEFE7 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/n/Nostalgia-09/AeroChat/1.0.1-rc.7/Nostalgia-09.AeroChat.locale.en-US.yaml b/manifests/n/Nostalgia-09/AeroChat/1.0.1-rc.7/Nostalgia-09.AeroChat.locale.en-US.yaml new file mode 100644 index 0000000000000..119ac938e9b24 --- /dev/null +++ b/manifests/n/Nostalgia-09/AeroChat/1.0.1-rc.7/Nostalgia-09.AeroChat.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Nostalgia-09.AeroChat +PackageVersion: 1.0.1-rc.7 +PackageLocale: en-US +Publisher: Madeline, with special thanks to luisl and the Nostalgia '09 team +PublisherUrl: https://discord.gg/3XfKgDMFBS +PublisherSupportUrl: https://github.com/Nostalgia-09/AeroChat/issues +PackageName: Windows Live Messenger +PackageUrl: https://github.com/Nostalgia-09/AeroChat +License: MIT +LicenseUrl: https://github.com/Nostalgia-09/AeroChat/blob/HEAD/LICENSE +ShortDescription: A Discord client themed to look like WLM 09, in React and Typescript. +ReleaseNotes: |- + Hey! New update dropped.The banner system in this update is incompatible with past ones. Users on 1.0.1-rc.6 will not be able to see 1.0.1-rc.7 banners, and vice versa.- Added extended GIF support for profile pictures + - Added tons of new banners + - Added in-app profile picture editing! Click on your profile picture on the homepage for more info. + - Fixed custom emoji (finally) +ReleaseNotesUrl: https://github.com/Nostalgia-09/AeroChat/releases/tag/1.0.1-rc.7 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/n/Nostalgia-09/AeroChat/1.0.1-rc.7/Nostalgia-09.AeroChat.yaml b/manifests/n/Nostalgia-09/AeroChat/1.0.1-rc.7/Nostalgia-09.AeroChat.yaml new file mode 100644 index 0000000000000..b065f5e23ef23 --- /dev/null +++ b/manifests/n/Nostalgia-09/AeroChat/1.0.1-rc.7/Nostalgia-09.AeroChat.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Nostalgia-09.AeroChat +PackageVersion: 1.0.1-rc.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/n/Nota/Gyazo/5.4.2/Nota.Gyazo.installer.yaml b/manifests/n/Nota/Gyazo/5.4.2/Nota.Gyazo.installer.yaml new file mode 100755 index 0000000000000..8120d755cb0df --- /dev/null +++ b/manifests/n/Nota/Gyazo/5.4.2/Nota.Gyazo.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-19041-3996.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Nota.Gyazo +PackageVersion: 5.4.2 +Platform: +- Windows.Desktop +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +AppsAndFeaturesEntries: +- DisplayName: Gyazo 5.4.2 +Installers: +- Architecture: x86 + InstallerUrl: https://files.gyazo.com/setup/Gyazo-5.4.2.exe + InstallerSha256: 7B87130E568B51F02B70F43D002C4BE0291589136AE055A38DEB34BA45F127D8 + ProductCode: '{6DB8C365-E719-4BA5-9594-10DFC244D3FD}_is1' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/n/Nota/Gyazo/5.4.2/Nota.Gyazo.locale.en-US.yaml b/manifests/n/Nota/Gyazo/5.4.2/Nota.Gyazo.locale.en-US.yaml new file mode 100755 index 0000000000000..2c2b9184b474e --- /dev/null +++ b/manifests/n/Nota/Gyazo/5.4.2/Nota.Gyazo.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-19041-3996.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Nota.Gyazo +PackageVersion: 5.4.2 +PackageLocale: en-US +Publisher: Nota Inc. +PublisherUrl: https://gyazo.com +PublisherSupportUrl: https://helpfeel.com/Gyazo +PrivacyUrl: https://gyazo.com/doc/privacy +Author: Nota Inc. +PackageName: Gyazo +PackageUrl: https://gyazo.com +License: Proprietary +LicenseUrl: https://gyazo.com/doc/terms +Copyright: (c) Nota Inc. All rights reserved. +CopyrightUrl: https://gyazo.com/doc/terms +ShortDescription: Take screenshots, GIFS, and replays that are ready to share. Save what's on your screen without missing a moment. +Description: |- + Take screenshots, GIFS, and replays that are ready to share. + Save what's on your screen without missing a moment. +Moniker: gyazo +Tags: +- capture +- screengrab +- screenshot +- share +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/n/Nota/Gyazo/5.4.2/Nota.Gyazo.yaml b/manifests/n/Nota/Gyazo/5.4.2/Nota.Gyazo.yaml new file mode 100755 index 0000000000000..96f9faf891ee9 --- /dev/null +++ b/manifests/n/Nota/Gyazo/5.4.2/Nota.Gyazo.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-19041-3996.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Nota.Gyazo +PackageVersion: 5.4.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/n/Nvidia/CUDA/12.3.2/Nvidia.CUDA.installer.yaml b/manifests/n/Nvidia/CUDA/12.3.2/Nvidia.CUDA.installer.yaml index 6cdc4e125af2d..15f86474c4496 100644 --- a/manifests/n/Nvidia/CUDA/12.3.2/Nvidia.CUDA.installer.yaml +++ b/manifests/n/Nvidia/CUDA/12.3.2/Nvidia.CUDA.installer.yaml @@ -4,13 +4,13 @@ PackageIdentifier: Nvidia.CUDA PackageVersion: 12.3.2 Platform: -- Windows.Desktop + - Windows.Desktop MinimumOSVersion: 10.0.0.0 InstallerType: exe Scope: machine InstallModes: -- interactive -- silent + - interactive + - silent InstallerSwitches: Silent: /s SilentWithProgress: /s @@ -19,8 +19,10 @@ Dependencies: PackageDependencies: - PackageIdentifier: Oracle.JavaRuntimeEnvironment Installers: -- Architecture: x64 - InstallerUrl: https://developer.download.nvidia.com/compute/cuda/12.3.2/local_installers/cuda_12.3.2_546.12_windows.exe - InstallerSha256: 3A4B476E1CD70EAABE42881B480F48557481D1EDE0AB5F33B2AF11B8903425B8 + - Architecture: x64 + InstallerUrl: https://developer.download.nvidia.com/compute/cuda/12.3.2/local_installers/cuda_12.3.2_546.12_windows.exe + InstallerSha256: 3A4B476E1CD70EAABE42881B480F48557481D1EDE0AB5F33B2AF11B8903425B8 +AppsAndFeaturesEntries: + - DisplayVersion: "12.3" ManifestType: installer ManifestVersion: 1.5.0 diff --git a/manifests/n/noborus/ov/0.33.2/noborus.ov.installer.yaml b/manifests/n/noborus/ov/0.33.2/noborus.ov.installer.yaml new file mode 100644 index 0000000000000..a1220bb6953b1 --- /dev/null +++ b/manifests/n/noborus/ov/0.33.2/noborus.ov.installer.yaml @@ -0,0 +1,34 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json +PackageIdentifier: noborus.ov +PackageVersion: 0.33.2 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-02-01" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ov.exe + PortableCommandAlias: ov + InstallerUrl: https://github.com/noborus/ov/releases/download/v0.33.2/ov_0.33.2_windows_386.zip + InstallerSha256: 3217051808fb3bdbc4bc57b04e36e8593bd1a5c85f45b72f874bb7dd4431d5b1 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ov.exe + PortableCommandAlias: ov + InstallerUrl: https://github.com/noborus/ov/releases/download/v0.33.2/ov_0.33.2_windows_arm64.zip + InstallerSha256: ae42be9222c5d15b11627e564c4bc416866f5f54353a3b188ce42ae313610119 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ov.exe + PortableCommandAlias: ov + InstallerUrl: https://github.com/noborus/ov/releases/download/v0.33.2/ov_0.33.2_windows_amd64.zip + InstallerSha256: bd0fd91589ed4a02e920552a631ef7bceac65c892645eaefdbd2a26745755101 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/n/noborus/ov/0.33.2/noborus.ov.locale.en-US.yaml b/manifests/n/noborus/ov/0.33.2/noborus.ov.locale.en-US.yaml new file mode 100644 index 0000000000000..cb47d4b1c1b92 --- /dev/null +++ b/manifests/n/noborus/ov/0.33.2/noborus.ov.locale.en-US.yaml @@ -0,0 +1,14 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json +PackageIdentifier: noborus.ov +PackageVersion: 0.33.2 +PackageLocale: en-US +Publisher: noborus +Author: Noboru Saito +PackageName: ov +PackageUrl: https://noborus.github.io/ov/ +License: MIT +ShortDescription: Feature rich terminal pager +Moniker: ov +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/n/noborus/ov/0.33.2/noborus.ov.yaml b/manifests/n/noborus/ov/0.33.2/noborus.ov.yaml new file mode 100644 index 0000000000000..183070f879e60 --- /dev/null +++ b/manifests/n/noborus/ov/0.33.2/noborus.ov.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.5.0.schema.json +PackageIdentifier: noborus.ov +PackageVersion: 0.33.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/OK1ZIA/Tucnak/4.55/OK1ZIA.Tucnak.installer.yaml b/manifests/o/OK1ZIA/Tucnak/4.55/OK1ZIA.Tucnak.installer.yaml new file mode 100644 index 0000000000000..3e249c66f1624 --- /dev/null +++ b/manifests/o/OK1ZIA/Tucnak/4.55/OK1ZIA.Tucnak.installer.yaml @@ -0,0 +1,13 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: OK1ZIA.Tucnak +PackageVersion: '4.55' +InstallerType: nullsoft +ReleaseDate: 2024-01-23 +Installers: +- Architecture: x86 + InstallerUrl: https://tucnak.nagano.cz/Tucnak-4.55.exe + InstallerSha256: EEF787618719C3979CFE3C28B8790F4FB639788E9E2D3C4884800C589257A970 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/OK1ZIA/Tucnak/4.55/OK1ZIA.Tucnak.locale.en-US.yaml b/manifests/o/OK1ZIA/Tucnak/4.55/OK1ZIA.Tucnak.locale.en-US.yaml new file mode 100644 index 0000000000000..c67cf80937fc7 --- /dev/null +++ b/manifests/o/OK1ZIA/Tucnak/4.55/OK1ZIA.Tucnak.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: OK1ZIA.Tucnak +PackageVersion: '4.55' +PackageLocale: en-US +Publisher: OK1ZIA +PublisherUrl: https://tucnak.nagano.cz/ +PublisherSupportUrl: http://tucnak.nagano.cz/wiki/ +Author: OK1ZIA +PackageName: Tucnak +PackageUrl: https://tucnak.nagano.cz/download.php +License: Freeware +Copyright: Copyright (C) 2023 OK1ZIA +ShortDescription: Multiplatform VHF/HF ham radio contest logbook. +Moniker: tucnak +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Edge/Beta/118.0.2088.41/Microsoft.Edge.Beta.yaml b/manifests/o/OK1ZIA/Tucnak/4.55/OK1ZIA.Tucnak.yaml similarity index 62% rename from manifests/m/Microsoft/Edge/Beta/118.0.2088.41/Microsoft.Edge.Beta.yaml rename to manifests/o/OK1ZIA/Tucnak/4.55/OK1ZIA.Tucnak.yaml index c8348e309e18c..85eb1f9a53d3c 100644 --- a/manifests/m/Microsoft/Edge/Beta/118.0.2088.41/Microsoft.Edge.Beta.yaml +++ b/manifests/o/OK1ZIA/Tucnak/4.55/OK1ZIA.Tucnak.yaml @@ -1,7 +1,8 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json -PackageIdentifier: Microsoft.Edge.Beta -PackageVersion: 118.0.2088.41 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 - +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: OK1ZIA.Tucnak +PackageVersion: '4.55' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/Odamex/Odamex/10.4.0/Odamex.Odamex.installer.yaml b/manifests/o/Odamex/Odamex/10.4.0/Odamex.Odamex.installer.yaml new file mode 100644 index 0000000000000..e07ed34a98439 --- /dev/null +++ b/manifests/o/Odamex/Odamex/10.4.0/Odamex.Odamex.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-19041-3930.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Odamex.Odamex +PackageVersion: 10.4.0 +InstallerType: inno +InstallerSwitches: + Custom: /SUPPRESSMSGBOXES +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/odamex/odamex/releases/download/10.4.0/odamex-win-10.4.0.exe + InstallerSha256: 83661C4540A9602F29897607B55D984EBEB670D87EB4459A5C35AAADF0E6551A +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/Odamex/Odamex/10.4.0/Odamex.Odamex.locale.en-US.yaml b/manifests/o/Odamex/Odamex/10.4.0/Odamex.Odamex.locale.en-US.yaml new file mode 100644 index 0000000000000..a267e1f148c21 --- /dev/null +++ b/manifests/o/Odamex/Odamex/10.4.0/Odamex.Odamex.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-19041-3930.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Odamex.Odamex +PackageVersion: 10.4.0 +PackageLocale: en-US +Publisher: Odamex +PublisherUrl: https://odamex.net/ +PublisherSupportUrl: https://github.com/odamex/odamex/issues +PrivacyUrl: https://odamex.net/privacy +# Author: +PackageName: Odamex +PackageUrl: https://odamex.net/ +License: GPL-2.0-or-later +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Multiplayer-oriented source port for Doom +# Description: +# Moniker: +Tags: +- doom +- multiplayer +- game +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/odamex/odamex/releases/tag/10.4.0 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/Odamex/Odamex/10.4.0/Odamex.Odamex.yaml b/manifests/o/Odamex/Odamex/10.4.0/Odamex.Odamex.yaml new file mode 100644 index 0000000000000..4c5c0518af755 --- /dev/null +++ b/manifests/o/Odamex/Odamex/10.4.0/Odamex.Odamex.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=QUSU.CRLF.5-1-19041-3930.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Odamex.Odamex +PackageVersion: 10.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/OnePartRain/Buckets/.validation b/manifests/o/OnePartRain/Buckets/.validation new file mode 100644 index 0000000000000..1129388d00bdd --- /dev/null +++ b/manifests/o/OnePartRain/Buckets/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"5fd437f8-c878-4bf9-b0b2-e6588c3f5a0e","TestPlan":"Policy-Test-1.8","PackagePath":"manifests/o/OnePartRain/Buckets/0.72.2","CommitId":"232b3f412195d02f534f90d1f09a4e53e3373bf3"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/o/OnePartRain/Buckets/0.72.2/OnePartRain.Buckets.installer.yaml b/manifests/o/OnePartRain/Buckets/0.72.2/OnePartRain.Buckets.installer.yaml new file mode 100644 index 0000000000000..33e1426d42c70 --- /dev/null +++ b/manifests/o/OnePartRain/Buckets/0.72.2/OnePartRain.Buckets.installer.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: OnePartRain.Buckets +PackageVersion: 0.72.2 +InstallerType: nullsoft +InstallModes: +- silent +InstallerSwitches: + Custom: /S +UpgradeBehavior: install +ReleaseDate: 2024-01-30 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/buckets/application/releases/download/v0.72.2/Buckets-Setup-0.72.2.exe + InstallerSha256: 946F4999850C0126C9D1377EFA056F87E750838BDA59826CA39BBDF7C71BED3A +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/OnePartRain/Buckets/0.72.2/OnePartRain.Buckets.locale.en-US.yaml b/manifests/o/OnePartRain/Buckets/0.72.2/OnePartRain.Buckets.locale.en-US.yaml new file mode 100644 index 0000000000000..c76bc8087443e --- /dev/null +++ b/manifests/o/OnePartRain/Buckets/0.72.2/OnePartRain.Buckets.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: OnePartRain.Buckets +PackageVersion: 0.72.2 +PackageLocale: en-US +Publisher: Buckets +PublisherUrl: https://onepartrain.com/ +Author: One Part Rain, LLC +PackageName: Buckets +PackageUrl: https://github.com/buckets/application +License: Proprietary +LicenseUrl: https://www.budgetwithbuckets.com/guide/eula/ +Copyright: Copyright © 2024 Buckets +CopyrightUrl: https://www.budgetwithbuckets.com/guide/eula/#copyright +ShortDescription: Make your budget quick, simple and private. +Description: Buckets is a simple family budgeting app based on the envelope method. It is built with privacy in mind - your financial data stays on your computer and under your control. Sharing the budget between multiple devices, including smartphones, is supported, and there are multiple advanced features like macros, bank import and Amazon reconciliation. +Moniker: buckets +Tags: +- budgeting +- finance +ReleaseNotesUrl: https://github.com/buckets/application/blob/master/CHANGELOG.md +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/OnePartRain/Buckets/0.72.2/OnePartRain.Buckets.yaml b/manifests/o/OnePartRain/Buckets/0.72.2/OnePartRain.Buckets.yaml new file mode 100644 index 0000000000000..a290210361073 --- /dev/null +++ b/manifests/o/OnePartRain/Buckets/0.72.2/OnePartRain.Buckets.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: OnePartRain.Buckets +PackageVersion: 0.72.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenMedia/4KStogram/4.7.0.4600/OpenMedia.4KStogram.installer.yaml b/manifests/o/OpenMedia/4KStogram/4.7.0.4600/OpenMedia.4KStogram.installer.yaml new file mode 100644 index 0000000000000..037e9a1239d94 --- /dev/null +++ b/manifests/o/OpenMedia/4KStogram/4.7.0.4600/OpenMedia.4KStogram.installer.yaml @@ -0,0 +1,38 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: OpenMedia.4KStogram +PackageVersion: 4.7.0.4600 +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://dl.4kdownload.com/app/4kstogram_4.7.0_online.exe + InstallerSha256: BA93945D69EA949EFC348B0537CD76F0BBA3A9BD238202C2D208CBAB0626D28C +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://dl.4kdownload.com/app/4kstogram_4.7.0_x64_online.exe + InstallerSha256: D931673ACE117F1C0BDA355359CEA686ACCDD07F2FFC463C531A3F36902EF983 +- InstallerLocale: en-US + Architecture: x86 + InstallerType: wix + InstallerUrl: https://dl.4kdownload.com/app/4kstogram_4.7.0.msi + InstallerSha256: 7950CC4854575DDEDF1085D1503F4B51A4A79C759F4FD7886DCB74682277BC50 + ProductCode: '{6592D30B-E1CA-4F2A-BD02-630CCEDE1248}' + AppsAndFeaturesEntries: + - UpgradeCode: '{71DFF14F-F7DC-49DD-96E3-42077C5137F0}' +- InstallerLocale: en-US + Architecture: x64 + InstallerType: wix + InstallerUrl: https://dl.4kdownload.com/app/4kstogram_4.7.0_x64.msi + InstallerSha256: FCDFD7BF07C1E82D49AA38266A101EB01D7C1F73A2ADEE62D0494D55D92D80ED + ProductCode: '{B83A955E-3A9F-4075-A8BC-2D7006F5A998}' + AppsAndFeaturesEntries: + - UpgradeCode: '{71DFF14F-F7DC-49DD-96E3-42077C5137F0}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenMedia/4KStogram/4.7.0.4600/OpenMedia.4KStogram.locale.en-US.yaml b/manifests/o/OpenMedia/4KStogram/4.7.0.4600/OpenMedia.4KStogram.locale.en-US.yaml new file mode 100644 index 0000000000000..1ef075e8690ee --- /dev/null +++ b/manifests/o/OpenMedia/4KStogram/4.7.0.4600/OpenMedia.4KStogram.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: OpenMedia.4KStogram +PackageVersion: 4.7.0.4600 +PackageLocale: en-US +Publisher: Open Media LLC +PublisherUrl: https://www.4kdownload.com +PublisherSupportUrl: https://www.4kdownload.com/help +PrivacyUrl: https://www.4kdownload.com/privacy +PackageName: 4K Stogram +PackageUrl: https://www.4kdownload.com/products/product-stogram +License: Freeware +LicenseUrl: https://www.4kdownload.com/agreement/freeware +Copyright: © 2023 Open Media +ShortDescription: Download Instagram photos and videos +Moniker: 4kstogram +Tags: +- downloader +- instagram +- instagram-downloader +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenMedia/4KStogram/4.7.0.4600/OpenMedia.4KStogram.yaml b/manifests/o/OpenMedia/4KStogram/4.7.0.4600/OpenMedia.4KStogram.yaml new file mode 100644 index 0000000000000..4ffcb39510f0e --- /dev/null +++ b/manifests/o/OpenMedia/4KStogram/4.7.0.4600/OpenMedia.4KStogram.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: OpenMedia.4KStogram +PackageVersion: 4.7.0.4600 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenWhisperSystems/Signal/6.46.0/OpenWhisperSystems.Signal.installer.yaml b/manifests/o/OpenWhisperSystems/Signal/6.46.0/OpenWhisperSystems.Signal.installer.yaml new file mode 100644 index 0000000000000..b9ebdd91a9c27 --- /dev/null +++ b/manifests/o/OpenWhisperSystems/Signal/6.46.0/OpenWhisperSystems.Signal.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: OpenWhisperSystems.Signal +PackageVersion: 6.46.0 +InstallerType: nullsoft +Scope: user +InstallModes: +- silent +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://updates.signal.org/desktop/signal-desktop-win-6.46.0.exe + InstallerSha256: E26DCDE7503C5DD4A86C66D133C06716AC74CD9E30BA45CB4BC7FA0C647B1596 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenWhisperSystems/Signal/6.46.0/OpenWhisperSystems.Signal.locale.en-US.yaml b/manifests/o/OpenWhisperSystems/Signal/6.46.0/OpenWhisperSystems.Signal.locale.en-US.yaml new file mode 100644 index 0000000000000..0ff0eedafb396 --- /dev/null +++ b/manifests/o/OpenWhisperSystems/Signal/6.46.0/OpenWhisperSystems.Signal.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: OpenWhisperSystems.Signal +PackageVersion: 6.46.0 +PackageLocale: en-US +Publisher: Signal Messenger, LLC +PublisherUrl: https://www.signal.org +PublisherSupportUrl: https://github.com/signalapp/Signal-Desktop/issues +PrivacyUrl: https://www.signal.org/legal/#privacy-policy +Author: Open Whisper Systems +PackageName: Signal +PackageUrl: https://www.signal.org +License: GPLv3 +LicenseUrl: https://www.gnu.org/licenses/gpl-3.0.en.html +Copyright: Copyright (c) Open Whisper Systems +CopyrightUrl: https://www.signal.org/legal/#terms-of-service +ShortDescription: Signal is an encrypted communications application. +Description: |- + Signal is an encrypted communications application. + It uses the Internet to send one-to-one and group messages, which can include files, voice notes, images and videos, and make one-to-one voice and video calls. +Moniker: signal +Tags: +- chat +- cross-platform +- encryption +- foss +- messaging +- open-source +- privacy +- security +- texting +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenWhisperSystems/Signal/6.46.0/OpenWhisperSystems.Signal.yaml b/manifests/o/OpenWhisperSystems/Signal/6.46.0/OpenWhisperSystems.Signal.yaml new file mode 100644 index 0000000000000..01bcadde1d26e --- /dev/null +++ b/manifests/o/OpenWhisperSystems/Signal/6.46.0/OpenWhisperSystems.Signal.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: OpenWhisperSystems.Signal +PackageVersion: 6.46.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/Opera/Opera/106.0.4998.70/Opera.Opera.installer.yaml b/manifests/o/Opera/Opera/106.0.4998.70/Opera.Opera.installer.yaml new file mode 100644 index 0000000000000..96af768d6d2d4 --- /dev/null +++ b/manifests/o/Opera/Opera/106.0.4998.70/Opera.Opera.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Opera.Opera +PackageVersion: 106.0.4998.70 +InstallerType: exe +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /silent + SilentWithProgress: /runimmediately +UpgradeBehavior: install +Commands: +- opera +Protocols: +- http +- https +- mailto +FileExtensions: +- htm +- html +- mhtml +- url +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://get.geo.opera.com/pub/opera/desktop/106.0.4998.70/win/Opera_106.0.4998.70_Setup.exe + InstallerSha256: 94911493FE7182EDAD1C67698536C9B1D2DE8592A1454F1E122722CB1EF7955C +- Architecture: x86 + Scope: machine + InstallerUrl: https://get.geo.opera.com/pub/opera/desktop/106.0.4998.70/win/Opera_106.0.4998.70_Setup.exe + InstallerSha256: 94911493FE7182EDAD1C67698536C9B1D2DE8592A1454F1E122722CB1EF7955C +- Architecture: x64 + Scope: user + InstallerUrl: https://get.geo.opera.com/pub/opera/desktop/106.0.4998.70/win/Opera_106.0.4998.70_Setup_x64.exe + InstallerSha256: EE4A8A9CBE842EBD1EDF6D7F7BF2B2C57FB5AFFF3D7F89A7923D925BD247A1F2 +- Architecture: x64 + Scope: machine + InstallerUrl: https://get.geo.opera.com/pub/opera/desktop/106.0.4998.70/win/Opera_106.0.4998.70_Setup_x64.exe + InstallerSha256: EE4A8A9CBE842EBD1EDF6D7F7BF2B2C57FB5AFFF3D7F89A7923D925BD247A1F2 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/Opera/Opera/106.0.4998.70/Opera.Opera.locale.en-US.yaml b/manifests/o/Opera/Opera/106.0.4998.70/Opera.Opera.locale.en-US.yaml new file mode 100644 index 0000000000000..4c910f40b9a41 --- /dev/null +++ b/manifests/o/Opera/Opera/106.0.4998.70/Opera.Opera.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Opera.Opera +PackageVersion: 106.0.4998.70 +PackageLocale: en-US +Publisher: Opera Software +PublisherUrl: https://www.opera.com +PublisherSupportUrl: https://www.opera.com/help +PrivacyUrl: https://legal.opera.com/privacy +Author: Opera Software +PackageName: Opera Stable +PackageUrl: https://www.opera.com/browsers/opera +License: Freeware +LicenseUrl: https://www.opera.com/eula/computers/row +Copyright: © Opera Software 1995-2023 +CopyrightUrl: https://legal.opera.com/terms +ShortDescription: The Opera browser includes everything you need for private, safe, and efficient browsing, along with a variety of unique features to enhance your capabilities online. +Description: |- + Opera is a multi-platform web browser developed by Opera Software. + Opera is a Chromium-based browser. + It distinguishes itself from other browsers through its user interface, functionality, and other features. +Moniker: opera +Tags: +- blink +- browser +- chromium +- cross-platform +- web +- web-browser +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://help.opera.com/en/faq +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/Opera/Opera/106.0.4998.70/Opera.Opera.locale.nb-NO.yaml b/manifests/o/Opera/Opera/106.0.4998.70/Opera.Opera.locale.nb-NO.yaml new file mode 100644 index 0000000000000..7cb4af8e561f0 --- /dev/null +++ b/manifests/o/Opera/Opera/106.0.4998.70/Opera.Opera.locale.nb-NO.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Opera.Opera +PackageVersion: 106.0.4998.70 +PackageLocale: nb-NO +Publisher: Opera Software +PublisherUrl: https://www.opera.com/no +PublisherSupportUrl: https://www.opera.com/no/help +PrivacyUrl: https://legal.opera.com/privacy +Author: Opera Software +PackageName: Opera Stable +PackageUrl: https://www.opera.com/no/browsers/opera +License: Freeware +LicenseUrl: https://www.opera.com/eula/computers/row +Copyright: © Opera Software 1995-2023 +CopyrightUrl: https://legal.opera.com/terms +ShortDescription: Opera nettleseren inneholder alt du trenger for privat, trygg og effektiv surfing, sammen med en rekke unike funksjoner for å forbedre mulighetene dine online. +Description: Opera er en nettleser med flere plattformer utviklet av Opera Software. Opera er en krombasert nettleser. Den skiller seg fra andre nettlesere gjennom brukergrensesnittet, funksjonaliteten og andre funksjoner. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/o/Opera/Opera/106.0.4998.70/Opera.Opera.yaml b/manifests/o/Opera/Opera/106.0.4998.70/Opera.Opera.yaml new file mode 100644 index 0000000000000..ca053729648a2 --- /dev/null +++ b/manifests/o/Opera/Opera/106.0.4998.70/Opera.Opera.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Opera.Opera +PackageVersion: 106.0.4998.70 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/OrpheusTechnologyLtd/ProWritingAid/OfficeAddIn/3.2.3649.1/OrpheusTechnologyLtd.ProWritingAid.OfficeAddIn.installer.yaml b/manifests/o/OrpheusTechnologyLtd/ProWritingAid/OfficeAddIn/3.2.3649.1/OrpheusTechnologyLtd.ProWritingAid.OfficeAddIn.installer.yaml new file mode 100644 index 0000000000000..2b5546a2bffbb --- /dev/null +++ b/manifests/o/OrpheusTechnologyLtd/ProWritingAid/OfficeAddIn/3.2.3649.1/OrpheusTechnologyLtd.ProWritingAid.OfficeAddIn.installer.yaml @@ -0,0 +1,12 @@ +# Automatically updated by the winget bot at 2024/Feb/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json + +PackageIdentifier: OrpheusTechnologyLtd.ProWritingAid.OfficeAddIn +PackageVersion: 3.2.3649.1 +InstallerType: burn +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.prowritingaid.com/officeaddon/releasev3/ProWritingAidSetup.exe + InstallerSha256: 8010BC87E6471705F7AEA655732A13583577AF13D4615C2AC37C85B0CBEF5FEC +ManifestType: installer +ManifestVersion: 1.2.0 diff --git a/manifests/o/OrpheusTechnologyLtd/ProWritingAid/OfficeAddIn/3.2.3649.1/OrpheusTechnologyLtd.ProWritingAid.OfficeAddIn.locale.en-US.yaml b/manifests/o/OrpheusTechnologyLtd/ProWritingAid/OfficeAddIn/3.2.3649.1/OrpheusTechnologyLtd.ProWritingAid.OfficeAddIn.locale.en-US.yaml new file mode 100644 index 0000000000000..4aeedf8bf1e75 --- /dev/null +++ b/manifests/o/OrpheusTechnologyLtd/ProWritingAid/OfficeAddIn/3.2.3649.1/OrpheusTechnologyLtd.ProWritingAid.OfficeAddIn.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2024/Feb/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json + +PackageIdentifier: OrpheusTechnologyLtd.ProWritingAid.OfficeAddIn +PackageVersion: 3.2.3649.1 +PackageLocale: en-US +Publisher: Orpheus Technology Ltd +PackageName: ProWritingAid Office Add-in +License: Proprietary +Copyright: Copyright © 2022, Orpheus Technology Ltd +ShortDescription: A desktop grammar and proofreading Add-in for Microsoft Office +ManifestType: defaultLocale +ManifestVersion: 1.2.0 diff --git a/manifests/o/OrpheusTechnologyLtd/ProWritingAid/OfficeAddIn/3.2.3649.1/OrpheusTechnologyLtd.ProWritingAid.OfficeAddIn.yaml b/manifests/o/OrpheusTechnologyLtd/ProWritingAid/OfficeAddIn/3.2.3649.1/OrpheusTechnologyLtd.ProWritingAid.OfficeAddIn.yaml new file mode 100644 index 0000000000000..e2d601f0466f8 --- /dev/null +++ b/manifests/o/OrpheusTechnologyLtd/ProWritingAid/OfficeAddIn/3.2.3649.1/OrpheusTechnologyLtd.ProWritingAid.OfficeAddIn.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2024/Feb/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json + +PackageIdentifier: OrpheusTechnologyLtd.ProWritingAid.OfficeAddIn +PackageVersion: 3.2.3649.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.2.0 diff --git a/manifests/o/okteto/okteto/2.24.0/okteto.okteto.installer.yaml b/manifests/o/okteto/okteto/2.24.0/okteto.okteto.installer.yaml new file mode 100644 index 0000000000000..e7f0a8e8eec34 --- /dev/null +++ b/manifests/o/okteto/okteto/2.24.0/okteto.okteto.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.24.0 +InstallerType: portable +Commands: +- okteto +ReleaseDate: 2024-01-09 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/okteto/okteto/releases/download/2.24.0/okteto.exe + InstallerSha256: E9E1A3B19CF81E3FB0C8E3C4F6E4786CE7AE9861AF167217813F4BCC5A0A24DC +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.24.0/okteto.okteto.locale.en-US.yaml b/manifests/o/okteto/okteto/2.24.0/okteto.okteto.locale.en-US.yaml new file mode 100644 index 0000000000000..e6215ce6e2c42 --- /dev/null +++ b/manifests/o/okteto/okteto/2.24.0/okteto.okteto.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.24.0 +PackageLocale: en-US +Publisher: okteto +PublisherUrl: https://okteto.com +PublisherSupportUrl: https://github.com/okteto/okteto/issues +# PrivacyUrl: +# Author: +PackageName: okteto +PackageUrl: https://github.com/okteto/okteto +License: Apache-2.0 license +LicenseUrl: https://github.com/okteto/okteto/blob/master/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: Okteto is a cloud-native development platform that bridges the gap between local development and production, enabling seamless development and deployment in Kubernetes clusters. +# Description: +# Moniker: +# Tags: +ReleaseNotes: |- + What's Changed + New Feature + - feat: add feature flag to enable context build by @jLopezbarb in #4051 + - feat: use git commit instead of git tree hash by @jLopezbarb in #4083 + - feat: use build context for isClean by @jLopezbarb in #4089 + - Add feature flag OKTETO_COMPOSE_VOLUME_AFFINITY_ENABLED env var to disable node affinity for volumes by @andreafalzetti in #4101 + Bug Fix + - Fix panic on okteto up with plain output by @jLopezbarb in #4069 + - Fix connection issues to dev containers using vscode remote ssh by @andreafalzetti in #4074 + - fix external resource markdown able to generate it dinamycally using … by @AdrianPedriza in #4076 + - Fix panic in okteto init --deploy by @andreafalzetti in #4078 + - Fix: detect top level git rep dir to set OKTETO_GIT_BRANCH and OKTETO_GIT_COMMIT properly when service is nested by @andreafalzetti in #4080 + - Fix panic when parsing empty service sections (dev & build) by @andreafalzetti in #4090 + - fix: do not fail if error retrieving envs from image by @AdrianPedriza in #4099 + - Fix preview URL to not use hash pathname by @viddo in #4102 + - [Backport release-2.24] fix: wrap error while creating secrets by @github-actions in #4109 + - [Backport release-2.24] fix: panic in okteto up caused by already closed readyChan by @github-actions in #4112 +ReleaseNotesUrl: https://github.com/okteto/okteto/releases/tag/2.24.0 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.24.0/okteto.okteto.yaml b/manifests/o/okteto/okteto/2.24.0/okteto.okteto.yaml new file mode 100644 index 0000000000000..2383d383da85c --- /dev/null +++ b/manifests/o/okteto/okteto/2.24.0/okteto.okteto.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.24.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.24.1/okteto.okteto.installer.yaml b/manifests/o/okteto/okteto/2.24.1/okteto.okteto.installer.yaml new file mode 100644 index 0000000000000..396cc0c4a6a2c --- /dev/null +++ b/manifests/o/okteto/okteto/2.24.1/okteto.okteto.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.24.1 +InstallerType: portable +Commands: +- okteto +ReleaseDate: 2024-01-23 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/okteto/okteto/releases/download/2.24.1/okteto.exe + InstallerSha256: FA0BFD9BF70CBFC96B936B679564546EB9BF9DBD351729D47EA02420E2584DE2 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.24.1/okteto.okteto.locale.en-US.yaml b/manifests/o/okteto/okteto/2.24.1/okteto.okteto.locale.en-US.yaml new file mode 100644 index 0000000000000..9c71fab988a35 --- /dev/null +++ b/manifests/o/okteto/okteto/2.24.1/okteto.okteto.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.24.1 +PackageLocale: en-US +Publisher: okteto +PublisherUrl: https://okteto.com +PublisherSupportUrl: https://github.com/okteto/okteto/issues +# PrivacyUrl: +# Author: +PackageName: okteto +PackageUrl: https://github.com/okteto/okteto +License: Apache-2.0 license +LicenseUrl: https://github.com/okteto/okteto/blob/master/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: Okteto is a cloud-native development platform that bridges the gap between local development and production, enabling seamless development and deployment in Kubernetes clusters. +# Description: +# Moniker: +# Tags: +ReleaseNotes: |- + What's Changed + Bug Fix + - [Backport release-2.24] fix okteto up double shutdown when interrupting with ctrl+c by @github-actions in #4136 + - [Backport release-2.24] fix: statefulset reconnection error by @github-actions in #4138 +ReleaseNotesUrl: https://github.com/okteto/okteto/releases/tag/2.24.1 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.24.1/okteto.okteto.yaml b/manifests/o/okteto/okteto/2.24.1/okteto.okteto.yaml new file mode 100644 index 0000000000000..ebc1ce13ab6bc --- /dev/null +++ b/manifests/o/okteto/okteto/2.24.1/okteto.okteto.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.24.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.24.2/okteto.okteto.installer.yaml b/manifests/o/okteto/okteto/2.24.2/okteto.okteto.installer.yaml new file mode 100644 index 0000000000000..6b5566ea7d503 --- /dev/null +++ b/manifests/o/okteto/okteto/2.24.2/okteto.okteto.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.24.2 +InstallerType: portable +Commands: +- okteto +ReleaseDate: 2024-01-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/okteto/okteto/releases/download/2.24.2/okteto.exe + InstallerSha256: 823DC707D2B224B62BA917489C2A83237C80954885FFCB6848302C58F631289F +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.24.2/okteto.okteto.locale.en-US.yaml b/manifests/o/okteto/okteto/2.24.2/okteto.okteto.locale.en-US.yaml new file mode 100644 index 0000000000000..7a4b6b1a27122 --- /dev/null +++ b/manifests/o/okteto/okteto/2.24.2/okteto.okteto.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.24.2 +PackageLocale: en-US +Publisher: okteto +PublisherUrl: https://okteto.com +PublisherSupportUrl: https://github.com/okteto/okteto/issues +# PrivacyUrl: +# Author: +PackageName: okteto +PackageUrl: https://github.com/okteto/okteto +License: Apache-2.0 license +LicenseUrl: https://github.com/okteto/okteto/blob/master/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: Okteto is a cloud-native development platform that bridges the gap between local development and production, enabling seamless development and deployment in Kubernetes clusters. +# Description: +# Moniker: +# Tags: +ReleaseNotes: |- + What's Changed + Bug Fix + - [Backport release-2.24] fix: panic on race condition by @github-actions in #4142 +ReleaseNotesUrl: https://github.com/okteto/okteto/releases/tag/2.24.2 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.24.2/okteto.okteto.yaml b/manifests/o/okteto/okteto/2.24.2/okteto.okteto.yaml new file mode 100644 index 0000000000000..714ed7bb348e6 --- /dev/null +++ b/manifests/o/okteto/okteto/2.24.2/okteto.okteto.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.24.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.25.0/okteto.okteto.installer.yaml b/manifests/o/okteto/okteto/2.25.0/okteto.okteto.installer.yaml new file mode 100644 index 0000000000000..fa6edeb6c9993 --- /dev/null +++ b/manifests/o/okteto/okteto/2.25.0/okteto.okteto.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.25.0 +InstallerType: portable +Commands: +- okteto +ReleaseDate: 2024-01-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/okteto/okteto/releases/download/2.25.0/okteto.exe + InstallerSha256: 1C88473E1D58E3463F362E3105F927B3D154569C6F5E250BEE908DD8B9BB92B8 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.25.0/okteto.okteto.locale.en-US.yaml b/manifests/o/okteto/okteto/2.25.0/okteto.okteto.locale.en-US.yaml new file mode 100644 index 0000000000000..239dc59ba6843 --- /dev/null +++ b/manifests/o/okteto/okteto/2.25.0/okteto.okteto.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.25.0 +PackageLocale: en-US +Publisher: okteto +PublisherUrl: https://okteto.com +PublisherSupportUrl: https://github.com/okteto/okteto/issues +# PrivacyUrl: +# Author: +PackageName: okteto +PackageUrl: https://github.com/okteto/okteto +License: Apache-2.0 license +LicenseUrl: https://github.com/okteto/okteto/blob/master/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: Okteto is a cloud-native development platform that bridges the gap between local development and production, enabling seamless development and deployment in Kubernetes clusters. +# Description: +# Moniker: +# Tags: +ReleaseNotes: |- + What's Changed + New Feature + - feat: expand build secrets by @andreafalzetti in #4119 + - docs: refactor helper usage by @jLopezbarb in #4122 + Bug Fix + - fix: wrap error while creating secrets by @jLopezbarb in #4107 + - fix: panic in okteto up caused by already closed readyChan by @andreafalzetti in #4111 + - fix: panic in okteto build caused by nil oc.Store by @andreafalzetti in #4113 + - fix: statefulset reconnection error by @jLopezbarb in #4127 + - fix: multi tag bullds by @jLopezbarb in #4124 + - fix okteto up double shutdown when interrupting with ctrl+c by @andreafalzetti in #4134 + - fix: panic on race condition by @jLopezbarb in #4140 + - fix: remote with parent folders by @jLopezbarb in #4128 + - [Backport release-2.25] fix: missing whitespace on spinner by @github-actions in #4145 + - [Backport release-2.25] fix: logger on different output formats by @github-actions in #4155 +ReleaseNotesUrl: https://github.com/okteto/okteto/releases/tag/2.25.0 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.25.0/okteto.okteto.yaml b/manifests/o/okteto/okteto/2.25.0/okteto.okteto.yaml new file mode 100644 index 0000000000000..de0cd5515f1c1 --- /dev/null +++ b/manifests/o/okteto/okteto/2.25.0/okteto.okteto.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.25.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.25.1/okteto.okteto.installer.yaml b/manifests/o/okteto/okteto/2.25.1/okteto.okteto.installer.yaml new file mode 100644 index 0000000000000..5d1504e7a5eda --- /dev/null +++ b/manifests/o/okteto/okteto/2.25.1/okteto.okteto.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.25.1 +InstallerType: portable +Commands: +- okteto +ReleaseDate: 2024-01-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/okteto/okteto/releases/download/2.25.1/okteto.exe + InstallerSha256: 2655E871FE1866A38A41AF484CE8E311D36B0C86B4A9194C3FDE05DA43511D05 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.25.1/okteto.okteto.locale.en-US.yaml b/manifests/o/okteto/okteto/2.25.1/okteto.okteto.locale.en-US.yaml new file mode 100644 index 0000000000000..bd1809bb8b362 --- /dev/null +++ b/manifests/o/okteto/okteto/2.25.1/okteto.okteto.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.25.1 +PackageLocale: en-US +Publisher: okteto +PublisherUrl: https://okteto.com +PublisherSupportUrl: https://github.com/okteto/okteto/issues +# PrivacyUrl: +# Author: +PackageName: okteto +PackageUrl: https://github.com/okteto/okteto +License: Apache-2.0 license +LicenseUrl: https://github.com/okteto/okteto/blob/master/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: Okteto is a cloud-native development platform that bridges the gap between local development and production, enabling seamless development and deployment in Kubernetes clusters. +# Description: +# Moniker: +# Tags: +ReleaseNotes: |- + What's Changed + New Feature + - add depot.dev as a valid builder (#4106) by @jLopezbarb in #4160 + Bug Fix + - [Backport release-2.25] fix: json build output by @github-actions in #4159 +ReleaseNotesUrl: https://github.com/okteto/okteto/releases/tag/2.25.1 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/okteto/okteto/2.25.1/okteto.okteto.yaml b/manifests/o/okteto/okteto/2.25.1/okteto.okteto.yaml new file mode 100644 index 0000000000000..0a51a595ce7e1 --- /dev/null +++ b/manifests/o/okteto/okteto/2.25.1/okteto.okteto.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.2 $debug=NVS1.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: okteto.okteto +PackageVersion: 2.25.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/opentrack/opentrack/2022.3.2/opentrack.opentrack.installer.yaml b/manifests/o/opentrack/opentrack/2022.3.2/opentrack.opentrack.installer.yaml index a31735d11e7c6..41ba012fcb73d 100644 --- a/manifests/o/opentrack/opentrack/2022.3.2/opentrack.opentrack.installer.yaml +++ b/manifests/o/opentrack/opentrack/2022.3.2/opentrack.opentrack.installer.yaml @@ -3,9 +3,6 @@ PackageIdentifier: opentrack.opentrack PackageVersion: 2022.3.2 -AppsAndFeaturesEntries: - - DisplayVersion: opentrack-2022.3.2 - ProductCode: '{63F53541-A29E-4B53-825A-9B6F876A2BD6}_is1' Installers: - Architecture: x86 InstallerType: inno diff --git a/manifests/p/Peppy/Osu!/2024.131.0/Peppy.Osu!.installer.yaml b/manifests/p/Peppy/Osu!/2024.131.0/Peppy.Osu!.installer.yaml new file mode 100644 index 0000000000000..06b27fe21dbc3 --- /dev/null +++ b/manifests/p/Peppy/Osu!/2024.131.0/Peppy.Osu!.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Peppy.Osu! +PackageVersion: 2024.131.0 +Platform: +- Windows.Desktop +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent +UpgradeBehavior: install +ProductCode: osulazer +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/ppy/osu/releases/download/2024.131.0/install.exe + InstallerSha256: 2C43B9B375C8631AF6E3E116946A69971B6F60E9C8DFF091E83E1FDC7CAE2157 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/p/Peppy/Osu!/2024.131.0/Peppy.Osu!.locale.en-US.yaml b/manifests/p/Peppy/Osu!/2024.131.0/Peppy.Osu!.locale.en-US.yaml new file mode 100644 index 0000000000000..a9982fd4d14ad --- /dev/null +++ b/manifests/p/Peppy/Osu!/2024.131.0/Peppy.Osu!.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Peppy.Osu! +PackageVersion: 2024.131.0 +PackageLocale: en-US +Publisher: ppy Pty Ltd +PublisherUrl: https://osu.ppy.sh/home +PublisherSupportUrl: https://github.com/ppy/osu/issues +PrivacyUrl: https://osu.ppy.sh/legal/en/Privacy +Author: Dean "peppy" Herbert +PackageName: osu! +PackageUrl: https://osu.ppy.sh/ +License: MIT +LicenseUrl: https://raw.githubusercontent.com/ppy/osu/master/LICENCE +Copyright: Copyright (c) 2022 ppy Pty Ltd . +CopyrightUrl: https://raw.githubusercontent.com/ppy/osu/master/LICENCE +ShortDescription: A free-to-win rhythm game. Rhythm is just a click away! +Description: A free-to-win rhythm game developed by peppy with four game modes:osu!standard, a circle clicking simulator; osu!taiko, a drumming emulator; osu!catch, a fruit salad catcher; and osu!mania, a key smashing synthesizer. +Tags: +- beatmap-parser +- game +- osu +- osu! +- rhythm +ReleaseNotes: |- + Code Quality + - Adjust default min result of SliderTailHit, remove override (ppy/osu#26870 by @smoogipoo) + Framework + - Fix android crashes (ppy/osu-framework#6162 by @bdach)- Android no like one optimisation we made, so said optimisation is reverted for now. + + Gameplay (osu!) + Fix judgements fading out too fast on classic skins (ppy/osu#26839 by @bdach) + Adjust slider tick / end misses to show slightly longer (ppy/osu#26876 by @peppy) + Just some fine-tuning based on feedback.Fix slider end judgements appearing at incorrect locations when mods that flip playfield are active (ppy/osu#26885 by @bdach) + Online + Fix crash when logging out during 2FA email verification (ppy/osu#26834 by @bdach) + Fix 2FA verification via link not working correctly (ppy/osu#26837 by @bdach) + Smaller changes + - Fix incorrect client version being sent to spectator server (ppy/osu-server-spectator#212 by @smoogipoo) + - Show a better message when score submission fails due to system clock being set wrong (ppy/osu#26871 by @peppy) + - Fix menu banner not updating as often as we want it to (ppy/osu#26889 by @peppy) + Full Changelog: +ReleaseNotesUrl: https://github.com/ppy/osu/releases/tag/2024.131.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/p/Peppy/Osu!/2024.131.0/Peppy.Osu!.yaml b/manifests/p/Peppy/Osu!/2024.131.0/Peppy.Osu!.yaml new file mode 100644 index 0000000000000..681acd9376bb1 --- /dev/null +++ b/manifests/p/Peppy/Osu!/2024.131.0/Peppy.Osu!.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Peppy.Osu! +PackageVersion: 2024.131.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020111/PerfectWorld.PerfectWorldArena.installer.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020111/PerfectWorld.PerfectWorldArena.installer.yaml new file mode 100644 index 0000000000000..13a8abbe2cdfb --- /dev/null +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020111/PerfectWorld.PerfectWorldArena.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.24020111 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +FileExtensions: +- wmpvp +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + InstallerUrl: https://client.wmpvp.com/download/perfectworldarena_win32_v1.0.24020111.exe + InstallerSha256: E463486B1B534EA50E8AE9375355BC763A4204A82134536A170527FCF442A26D + ProductCode: '{a9be7c93-59b5-5f11-bbb9-964db82cbf57}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020111/PerfectWorld.PerfectWorldArena.locale.en-US.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020111/PerfectWorld.PerfectWorldArena.locale.en-US.yaml new file mode 100644 index 0000000000000..192e68b79c883 --- /dev/null +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020111/PerfectWorld.PerfectWorldArena.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.24020111 +PackageLocale: en-US +Publisher: Perfect World +PublisherUrl: https://www.pwesports.cn/ +# PublisherSupportUrl: +# PrivacyUrl: +Author: Perfect World Zhengqi (Shanghai) Multimedia Technology Co., Ltd. +PackageName: 完美世界竞技平台 +PackageUrl: https://pvp.wanmei.com/ +License: Proprietary +# LicenseUrl: +Copyright: Copyright © 2024 Perfect World +# CopyrightUrl: +ShortDescription: Perfect World Arena is a comprehensive PvP platform developed by Perfect World for every player. It is low-threshold, easy to use, interaction aware, and professional yet fun. +# Description: +# Moniker: +Tags: +- csgo +- dota2 +- game +- gaming +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://pvp.wanmei.com/vip +# InstallationNotes: +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://pvp.wanmei.com/csgo/question/list +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020111/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020111/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml new file mode 100644 index 0000000000000..23d543c307c08 --- /dev/null +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020111/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.24020111 +PackageLocale: zh-CN +Publisher: Perfect World +PublisherUrl: https://www.pwesports.cn/ +# PublisherSupportUrl: +# PrivacyUrl: +Author: 完美世界征奇(上海)多媒体科技有限公司 +PackageName: 完美世界竞技平台 +PackageUrl: https://pvp.wanmei.com/ +License: 专有软件 +# LicenseUrl: +Copyright: Copyright © 2024 Perfect World +# CopyrightUrl: +ShortDescription: 完美世界竞技平台是一款由完美世界开发的适合每一位玩家的低门槛、易操作、重交互、兼具专业性与趣味性的集成式对战平台。 +# Description: +# Moniker: +Tags: +- csgo +- dota2 +- 游戏 +ReleaseNotes: |- + 【活动】龙年春节掉落活动将在 2 月 1 日开始至年初七,平台提前祝玩家新年快乐,诸事顺利!附赠的春节头像框将以站内信的方式发放给玩家。 + 【新增】Demo 语音回归!在天梯和官匹 Pro 的比赛中,玩家在赛后板下载 demo 后点击播放按钮,即可回顾当局玩家语音 + 【优化】修复部分玩家无法播放 S 段升星动画问题 + 【反作弊】加强对透视雷达类外挂的检测范围 + 【反作弊】部分技术迭代更新并优化稳定性和适配性 +# ReleaseNotesUrl: +PurchaseUrl: https://pvp.wanmei.com/vip +# InstallationNotes: +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://pvp.wanmei.com/csgo/question/list +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020111/PerfectWorld.PerfectWorldArena.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020111/PerfectWorld.PerfectWorldArena.yaml new file mode 100644 index 0000000000000..c915b6f1cd238 --- /dev/null +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020111/PerfectWorld.PerfectWorldArena.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.24020111 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020211/PerfectWorld.PerfectWorldArena.installer.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020211/PerfectWorld.PerfectWorldArena.installer.yaml new file mode 100644 index 0000000000000..4d8a95cc12a95 --- /dev/null +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020211/PerfectWorld.PerfectWorldArena.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.24020211 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +FileExtensions: +- wmpvp +ReleaseDate: 2024-02-01 +Installers: +- Architecture: x86 + InstallerUrl: https://client.wmpvp.com/download/perfectworldarena_win32_v1.0.24020211.exe + InstallerSha256: 310E0EACD3C01E9231E059CAEF309A8F013654DE737494CC1EB77DE74E69D076 + ProductCode: '{a9be7c93-59b5-5f11-bbb9-964db82cbf57}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020211/PerfectWorld.PerfectWorldArena.locale.en-US.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020211/PerfectWorld.PerfectWorldArena.locale.en-US.yaml new file mode 100644 index 0000000000000..40158c2c2927b --- /dev/null +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020211/PerfectWorld.PerfectWorldArena.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.24020211 +PackageLocale: en-US +Publisher: Perfect World +PublisherUrl: https://www.pwesports.cn/ +# PublisherSupportUrl: +# PrivacyUrl: +Author: Perfect World Zhengqi (Shanghai) Multimedia Technology Co., Ltd. +PackageName: 完美世界竞技平台 +PackageUrl: https://pvp.wanmei.com/ +License: Proprietary +# LicenseUrl: +Copyright: Copyright © 2024 Perfect World +# CopyrightUrl: +ShortDescription: Perfect World Arena is a comprehensive PvP platform developed by Perfect World for every player. It is low-threshold, easy to use, interaction aware, and professional yet fun. +# Description: +# Moniker: +Tags: +- csgo +- dota2 +- game +- gaming +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://pvp.wanmei.com/vip +# InstallationNotes: +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://pvp.wanmei.com/csgo/question/list +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020211/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020211/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c5db35fda5dd5 --- /dev/null +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020211/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.24020211 +PackageLocale: zh-CN +Publisher: Perfect World +PublisherUrl: https://www.pwesports.cn/ +# PublisherSupportUrl: +# PrivacyUrl: +Author: 完美世界征奇(上海)多媒体科技有限公司 +PackageName: 完美世界竞技平台 +PackageUrl: https://pvp.wanmei.com/ +License: 专有软件 +# LicenseUrl: +Copyright: Copyright © 2024 Perfect World +# CopyrightUrl: +ShortDescription: 完美世界竞技平台是一款由完美世界开发的适合每一位玩家的低门槛、易操作、重交互、兼具专业性与趣味性的集成式对战平台。 +# Description: +# Moniker: +Tags: +- csgo +- dota2 +- 游戏 +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://pvp.wanmei.com/vip +# InstallationNotes: +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://pvp.wanmei.com/csgo/question/list +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020211/PerfectWorld.PerfectWorldArena.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020211/PerfectWorld.PerfectWorldArena.yaml new file mode 100644 index 0000000000000..19bb88cf13bfa --- /dev/null +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.24020211/PerfectWorld.PerfectWorldArena.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.24020211 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/p/Pulumi/Pulumi/3.104.0/Pulumi.Pulumi.installer.yaml b/manifests/p/Pulumi/Pulumi/3.104.0/Pulumi.Pulumi.installer.yaml new file mode 100644 index 0000000000000..c4da7d6236a73 --- /dev/null +++ b/manifests/p/Pulumi/Pulumi/3.104.0/Pulumi.Pulumi.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Pulumi.Pulumi +PackageVersion: 3.104.0 +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +ProductCode: '{8DDD692D-51B0-4C5F-8379-E70820729BB2}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/pulumi/pulumi-winget/releases/download/v3.104.0/pulumi-3.104.0-windows-x64.msi + InstallerSha256: 60B6BCDBC951B2714222EDA3618B29DDF67372A4CD7E102948A6A830C08E171C +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/p/Pulumi/Pulumi/3.104.0/Pulumi.Pulumi.locale.en-US.yaml b/manifests/p/Pulumi/Pulumi/3.104.0/Pulumi.Pulumi.locale.en-US.yaml new file mode 100644 index 0000000000000..b80dea016e3f7 --- /dev/null +++ b/manifests/p/Pulumi/Pulumi/3.104.0/Pulumi.Pulumi.locale.en-US.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Pulumi.Pulumi +PackageVersion: 3.104.0 +PackageLocale: en-US +Publisher: Pulumi Corp +PackageName: Pulumi +PackageUrl: https://www.pulumi.com +License: Apache License 2.0 +LicenseUrl: https://github.com/pulumi/pulumi/blob/master/LICENSE +ShortDescription: Pulumi CLI for managing modern infrastructure as code +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/p/Pulumi/Pulumi/3.104.0/Pulumi.Pulumi.yaml b/manifests/p/Pulumi/Pulumi/3.104.0/Pulumi.Pulumi.yaml new file mode 100644 index 0000000000000..2ce1a753ffb13 --- /dev/null +++ b/manifests/p/Pulumi/Pulumi/3.104.0/Pulumi.Pulumi.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Pulumi.Pulumi +PackageVersion: 3.104.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/p/Pulumi/Pulumi/3.104.1/Pulumi.Pulumi.installer.yaml b/manifests/p/Pulumi/Pulumi/3.104.1/Pulumi.Pulumi.installer.yaml new file mode 100644 index 0000000000000..4ae5d543ec687 --- /dev/null +++ b/manifests/p/Pulumi/Pulumi/3.104.1/Pulumi.Pulumi.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Pulumi.Pulumi +PackageVersion: 3.104.1 +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +ProductCode: '{CCF4FE8A-D727-4CF1-B892-7D21B941B165}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/pulumi/pulumi-winget/releases/download/v3.104.1/pulumi-3.104.1-windows-x64.msi + InstallerSha256: 69D636FB5D5C725B318E7AE2E33E726207805FA33647203553E80CED5B98F441 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/p/Pulumi/Pulumi/3.104.1/Pulumi.Pulumi.locale.en-US.yaml b/manifests/p/Pulumi/Pulumi/3.104.1/Pulumi.Pulumi.locale.en-US.yaml new file mode 100644 index 0000000000000..afa7686775b03 --- /dev/null +++ b/manifests/p/Pulumi/Pulumi/3.104.1/Pulumi.Pulumi.locale.en-US.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Pulumi.Pulumi +PackageVersion: 3.104.1 +PackageLocale: en-US +Publisher: Pulumi Corp +PackageName: Pulumi +PackageUrl: https://www.pulumi.com +License: Apache License 2.0 +LicenseUrl: https://github.com/pulumi/pulumi/blob/master/LICENSE +ShortDescription: Pulumi CLI for managing modern infrastructure as code +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/p/Pulumi/Pulumi/3.104.1/Pulumi.Pulumi.yaml b/manifests/p/Pulumi/Pulumi/3.104.1/Pulumi.Pulumi.yaml new file mode 100644 index 0000000000000..817d9217ee914 --- /dev/null +++ b/manifests/p/Pulumi/Pulumi/3.104.1/Pulumi.Pulumi.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Pulumi.Pulumi +PackageVersion: 3.104.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/p/Pulumi/Pulumi/3.104.2/Pulumi.Pulumi.installer.yaml b/manifests/p/Pulumi/Pulumi/3.104.2/Pulumi.Pulumi.installer.yaml new file mode 100644 index 0000000000000..fcda2df6868fc --- /dev/null +++ b/manifests/p/Pulumi/Pulumi/3.104.2/Pulumi.Pulumi.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Pulumi.Pulumi +PackageVersion: 3.104.2 +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +ProductCode: '{D3928BE5-8D62-4E60-87D8-641199AD8924}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/pulumi/pulumi-winget/releases/download/v3.104.2/pulumi-3.104.2-windows-x64.msi + InstallerSha256: 8531796B91419AA9343DD5AE42A905C76071CFB89662BC0BFA83EF367D3D2FC5 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/p/Pulumi/Pulumi/3.104.2/Pulumi.Pulumi.locale.en-US.yaml b/manifests/p/Pulumi/Pulumi/3.104.2/Pulumi.Pulumi.locale.en-US.yaml new file mode 100644 index 0000000000000..c2f3d5ba6381b --- /dev/null +++ b/manifests/p/Pulumi/Pulumi/3.104.2/Pulumi.Pulumi.locale.en-US.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Pulumi.Pulumi +PackageVersion: 3.104.2 +PackageLocale: en-US +Publisher: Pulumi Corp +PackageName: Pulumi +PackageUrl: https://www.pulumi.com +License: Apache License 2.0 +LicenseUrl: https://github.com/pulumi/pulumi/blob/master/LICENSE +ShortDescription: Pulumi CLI for managing modern infrastructure as code +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/p/Pulumi/Pulumi/3.104.2/Pulumi.Pulumi.yaml b/manifests/p/Pulumi/Pulumi/3.104.2/Pulumi.Pulumi.yaml new file mode 100644 index 0000000000000..28fbb587702d8 --- /dev/null +++ b/manifests/p/Pulumi/Pulumi/3.104.2/Pulumi.Pulumi.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Pulumi.Pulumi +PackageVersion: 3.104.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Reqable/Reqable/2.6.1/Reqable.Reqable.installer.yaml b/manifests/r/Reqable/Reqable/2.6.1/Reqable.Reqable.installer.yaml new file mode 100644 index 0000000000000..89ef833347246 --- /dev/null +++ b/manifests/r/Reqable/Reqable/2.6.1/Reqable.Reqable.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 2.6.1 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- chls +- chlsj +- har +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/reqable/reqable-app/releases/download/2.6.1/reqable-app-windows-x86_64.exe + InstallerSha256: FC8E3D6750664759987A74BC5CEACDD06F18CDAC454A4406B7588D824CF1986C + ProductCode: '{64920BD9-D19F-4537-84AA-42BF46FEB27E}_is1' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Reqable/Reqable/2.6.1/Reqable.Reqable.locale.en-US.yaml b/manifests/r/Reqable/Reqable/2.6.1/Reqable.Reqable.locale.en-US.yaml new file mode 100644 index 0000000000000..88a39dfc1e370 --- /dev/null +++ b/manifests/r/Reqable/Reqable/2.6.1/Reqable.Reqable.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 2.6.1 +PackageLocale: en-US +Publisher: Reqqable Inc. +PublisherUrl: https://reqable.com/ +PublisherSupportUrl: https://github.com/reqable/reqable-app/issues +PrivacyUrl: https://reqable.com/policy +Author: Reqqable Inc. +PackageName: Reqable +PackageUrl: https://reqable.com/ +License: Proprietary +LicenseUrl: https://reqable.com/policy +Copyright: Copyright (C) 2024 Reqable All rights reserved. +# CopyrightUrl: +ShortDescription: Advanced API Debugging Proxy +Description: Reqable is a flutter-based, cross-platform app, which enables developers to capture, inspect, and manipulate HTTP(s) requests/responses with ease. Support Windows, macOS, linux, iOS and Android devices. +# Moniker: +Tags: +- capture +- debug +- network +- proxy +- request +- response +- traffic +- web +ReleaseNotes: |- + 🚀 [NEW] Code editor supports code auto-completion. + 🚀 [NEW] Console tab for traffic details. + 🚀 [NEW] Console tab for API testing response. + 🚀 [NEW] Supports win7 OS. + 🐞 [FIX] The bug that text syntax highlighting may be incorrect. + 🐞 [FIX] The bug that missing `\` at the end of URL. + 🐞 [FIX] The bug that `HexViewer` will get focus by default. + 🐞 [FIX] The bug that IP was displayed rather than host. +ReleaseNotesUrl: https://reqable.com/docs/changelogs/windows/ +PurchaseUrl: https://reqable.com/pricing/ +# InstallationNotes: +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://reqable.com/docs/introduction +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Reqable/Reqable/2.6.1/Reqable.Reqable.locale.zh-CN.yaml b/manifests/r/Reqable/Reqable/2.6.1/Reqable.Reqable.locale.zh-CN.yaml new file mode 100644 index 0000000000000..272abcc76c3f4 --- /dev/null +++ b/manifests/r/Reqable/Reqable/2.6.1/Reqable.Reqable.locale.zh-CN.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 2.6.1 +PackageLocale: zh-CN +Publisher: Reqqable Inc. +PublisherUrl: https://reqable.com/zh-CN/ +PublisherSupportUrl: https://github.com/reqable/reqable-app/issues +PrivacyUrl: https://reqable.com/zh-CN/policy +Author: 上海日夸宝信息技术有限公司 +PackageName: Reqable +PackageUrl: https://reqable.com/zh-CN/ +License: 专有软件 +LicenseUrl: https://reqable.com/zh-CN/policy +Copyright: Copyright (C) 2024 Reqable All rights reserved. +# CopyrightUrl: +ShortDescription: 先进 API 生产力工具 +Description: Reqable = Fiddler + Charles + Postman,网络抓包和 API 测试一站化国产解决方案,全平台支持 HTTP1、HTTP2 和 HTTP3(QUIC)。 +# Moniker: +Tags: +- 代理 +- 响应 +- 抓包 +- 流量 +- 网络 +- 网页 +- 请求 +- 调试 +ReleaseNotes: |- + 🚀【新功能】编辑器支持代码自动补全。 + 🚀【新功能】调试详情新增控制台 Tab。 + 🚀【新功能】API 测试响应新增控制台 Tab。 + 🚀【新功能】支持 windows7 系统。 + 🐞【修复】编辑器语法高亮可能不正确的 bug。 + 🐞【修复】URL 结尾`\`丢失的 bug。 + 🐞【修复】HexViewer 会默认获取焦点的 bug。 + 🐞【修复】调试流量显示 IP 而不是域名的 bug。 +ReleaseNotesUrl: https://reqable.com/zh-CN/docs/changelogs/windows/ +PurchaseUrl: https://reqable.com/zh-CN/pricing/ +# InstallationNotes: +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://reqable.com/zh-CN/docs/introduction +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Reqable/Reqable/2.6.1/Reqable.Reqable.yaml b/manifests/r/Reqable/Reqable/2.6.1/Reqable.Reqable.yaml new file mode 100644 index 0000000000000..f95e5dce21173 --- /dev/null +++ b/manifests/r/Reqable/Reqable/2.6.1/Reqable.Reqable.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 2.6.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Reqable/Reqable/2.6.2/Reqable.Reqable.installer.yaml b/manifests/r/Reqable/Reqable/2.6.2/Reqable.Reqable.installer.yaml new file mode 100644 index 0000000000000..e00359862a1b5 --- /dev/null +++ b/manifests/r/Reqable/Reqable/2.6.2/Reqable.Reqable.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 2.6.2 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- chls +- chlsj +- har +ReleaseDate: 2024-02-01 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/reqable/reqable-app/releases/download/2.6.2/reqable-app-windows-x86_64.exe + InstallerSha256: F15E1D12258031FFDFC612A9464540E08717A0010ED982F84CEE9919180382D0 + ProductCode: '{64920BD9-D19F-4537-84AA-42BF46FEB27E}_is1' +- InstallerLocale: zh-CN + Architecture: x64 + InstallerUrl: https://reqable-app-pkgs.oss-cn-beijing.aliyuncs.com/windows/x86_64/2.6.2/reqable-app-windows-x86_64.exe + InstallerSha256: F15E1D12258031FFDFC612A9464540E08717A0010ED982F84CEE9919180382D0 + ProductCode: '{64920BD9-D19F-4537-84AA-42BF46FEB27E}_is1' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Reqable/Reqable/2.6.2/Reqable.Reqable.locale.en-US.yaml b/manifests/r/Reqable/Reqable/2.6.2/Reqable.Reqable.locale.en-US.yaml new file mode 100644 index 0000000000000..671f0bf6af568 --- /dev/null +++ b/manifests/r/Reqable/Reqable/2.6.2/Reqable.Reqable.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 2.6.2 +PackageLocale: en-US +Publisher: Reqqable Inc. +PublisherUrl: https://reqable.com/ +PublisherSupportUrl: https://github.com/reqable/reqable-app/issues +PrivacyUrl: https://reqable.com/policy +Author: Reqqable Inc. +PackageName: Reqable +PackageUrl: https://reqable.com/ +License: Proprietary +LicenseUrl: https://reqable.com/policy +Copyright: Copyright (C) 2024 Reqable All rights reserved. +# CopyrightUrl: +ShortDescription: Advanced API Debugging Proxy +Description: Reqable is a flutter-based, cross-platform app, which enables developers to capture, inspect, and manipulate HTTP(s) requests/responses with ease. Support Windows, macOS, linux, iOS and Android devices. +# Moniker: +Tags: +- capture +- debug +- network +- proxy +- request +- response +- traffic +- web +ReleaseNotes: |- + 🐞 [FIX] A bug where some webSocket requests are not recognized. + 🐞 [FIX] A bug in the API request script caused the request path to be incorrectly encoded. +ReleaseNotesUrl: https://reqable.com/docs/changelogs/windows/ +PurchaseUrl: https://reqable.com/pricing/ +# InstallationNotes: +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://reqable.com/docs/introduction +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Reqable/Reqable/2.6.2/Reqable.Reqable.locale.zh-CN.yaml b/manifests/r/Reqable/Reqable/2.6.2/Reqable.Reqable.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1dab83ecf9da9 --- /dev/null +++ b/manifests/r/Reqable/Reqable/2.6.2/Reqable.Reqable.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 2.6.2 +PackageLocale: zh-CN +Publisher: Reqqable Inc. +PublisherUrl: https://reqable.com/zh-CN/ +PublisherSupportUrl: https://github.com/reqable/reqable-app/issues +PrivacyUrl: https://reqable.com/zh-CN/policy +Author: 上海日夸宝信息技术有限公司 +PackageName: Reqable +PackageUrl: https://reqable.com/zh-CN/ +License: 专有软件 +LicenseUrl: https://reqable.com/zh-CN/policy +Copyright: Copyright (C) 2024 Reqable All rights reserved. +# CopyrightUrl: +ShortDescription: 先进 API 生产力工具 +Description: Reqable = Fiddler + Charles + Postman,网络抓包和 API 测试一站化国产解决方案,全平台支持 HTTP1、HTTP2 和 HTTP3(QUIC)。 +# Moniker: +Tags: +- 代理 +- 响应 +- 抓包 +- 流量 +- 网络 +- 网页 +- 请求 +- 调试 +ReleaseNotes: |- + 🐞【修复】部分 WebSocket 请求无法识别的 bug。 + 🐞【修复】API 请求脚本功能导致请求路径不正确编码的 bug。 +ReleaseNotesUrl: https://reqable.com/zh-CN/docs/changelogs/windows/ +PurchaseUrl: https://reqable.com/zh-CN/pricing/ +# InstallationNotes: +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://reqable.com/zh-CN/docs/introduction +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Reqable/Reqable/2.6.2/Reqable.Reqable.yaml b/manifests/r/Reqable/Reqable/2.6.2/Reqable.Reqable.yaml new file mode 100644 index 0000000000000..dcf672abf3c3b --- /dev/null +++ b/manifests/r/Reqable/Reqable/2.6.2/Reqable.Reqable.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 2.6.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/RocketChat/RocketChat/3.9.12/RocketChat.RocketChat.installer.yaml b/manifests/r/RocketChat/RocketChat/3.9.12/RocketChat.RocketChat.installer.yaml new file mode 100644 index 0000000000000..2e57e0f04b84b --- /dev/null +++ b/manifests/r/RocketChat/RocketChat/3.9.12/RocketChat.RocketChat.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: RocketChat.RocketChat +PackageVersion: 3.9.12 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{2E15EA62-A027-4ABF-9955-0C8F15F548D1}' +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/3.9.12/rocketchat-3.9.12-win-x64.exe + InstallerSha256: 3E7C4A3630CC95F4535120120B1AC533316981AB8CE1B75D0BF4426A6D5C7B22 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/3.9.12/rocketchat-3.9.12-win-x64.exe + InstallerSha256: 3E7C4A3630CC95F4535120120B1AC533316981AB8CE1B75D0BF4426A6D5C7B22 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/RocketChat/RocketChat/3.9.12/RocketChat.RocketChat.locale.en-US.yaml b/manifests/r/RocketChat/RocketChat/3.9.12/RocketChat.RocketChat.locale.en-US.yaml new file mode 100644 index 0000000000000..febb42c762750 --- /dev/null +++ b/manifests/r/RocketChat/RocketChat/3.9.12/RocketChat.RocketChat.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: RocketChat.RocketChat +PackageVersion: 3.9.12 +PackageLocale: en-US +Publisher: Rocket.Chat Support +PublisherUrl: https://rocket.chat/ +PublisherSupportUrl: https://github.com/RocketChat/Rocket.Chat.Electron/issues +PrivacyUrl: https://docs.rocket.chat/legal/privacy +Author: Rocket.Chat +PackageName: Rocket.Chat +PackageUrl: https://rocket.chat/ +License: MIT +LicenseUrl: https://github.com/RocketChat/Rocket.Chat.Electron/blob/HEAD/LICENSE +Copyright: Copyright (c) 2015-2020 Rocket.Chat Technologies Corp. +CopyrightUrl: https://github.com/RocketChat/Rocket.Chat.Electron/blob/master/LICENSE +ShortDescription: Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. +Tags: +- chat +- file-uploads +- foss +- live-chat +- open-source +- rocket +- rocket-chat +- screensharing +- video-conference +ReleaseNotes: |- + What's Changed + - Language update from LingoHub 🤖 on 2023-12-04Z by @lingohub in #2789 + - refactor!(deps): Bump all critical dependencies by @tassoevan in #2803 + - refactor: Refresh supported versions whenever the app goes online by @tassoevan in #2820 + Full Changelog: +ReleaseNotesUrl: https://github.com/RocketChat/Rocket.Chat.Electron/releases/tag/3.9.12 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/RocketChat/RocketChat/3.9.12/RocketChat.RocketChat.yaml b/manifests/r/RocketChat/RocketChat/3.9.12/RocketChat.RocketChat.yaml new file mode 100644 index 0000000000000..0eea75c602b77 --- /dev/null +++ b/manifests/r/RocketChat/RocketChat/3.9.12/RocketChat.RocketChat.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: RocketChat.RocketChat +PackageVersion: 3.9.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Rohde&Schwarz/SDC/IETDViewAutarkBw/7.1.2/Rohde&Schwarz.SDC.IETDViewAutarkBw.installer.yaml b/manifests/r/Rohde&Schwarz/SDC/IETDViewAutarkBw/7.1.2/Rohde&Schwarz.SDC.IETDViewAutarkBw.installer.yaml new file mode 100644 index 0000000000000..8d8f8338dcf15 --- /dev/null +++ b/manifests/r/Rohde&Schwarz/SDC/IETDViewAutarkBw/7.1.2/Rohde&Schwarz.SDC.IETDViewAutarkBw.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Rohde&Schwarz.SDC.IETDViewAutarkBw +PackageVersion: 7.1.2 +InstallerType: exe +InstallerSwitches: + Silent: -q -nosplash + SilentWithProgress: -q +Installers: +- Architecture: x64 + InstallerUrl: https://ietdview-online.rohde-schwarz.com/downloads/7.1.2/R&S-IETDView-Autark-Bw-7.1.2-x64.exe + InstallerSha256: 3C86013914F01BAD737D74CD823663C38C41C5A0AD564C3C49C6A61ECA5E5288 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Rohde&Schwarz/SDC/IETDViewAutarkBw/7.1.2/Rohde&Schwarz.SDC.IETDViewAutarkBw.locale.de-DE.yaml b/manifests/r/Rohde&Schwarz/SDC/IETDViewAutarkBw/7.1.2/Rohde&Schwarz.SDC.IETDViewAutarkBw.locale.de-DE.yaml new file mode 100644 index 0000000000000..ffa9f67f4bb53 --- /dev/null +++ b/manifests/r/Rohde&Schwarz/SDC/IETDViewAutarkBw/7.1.2/Rohde&Schwarz.SDC.IETDViewAutarkBw.locale.de-DE.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Rohde&Schwarz.SDC.IETDViewAutarkBw +PackageVersion: 7.1.2 +PackageLocale: de-DE +Publisher: Rohde & Schwarz GmbH & Co. KG +PackageName: R&S® IETDView Autark Bw +License: Standard-Lizenz +ShortDescription: Anzeigeumgebung für S1000D-Dokumentationen (im Bw-Kontext) +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Rohde&Schwarz/SDC/IETDViewAutarkBw/7.1.2/Rohde&Schwarz.SDC.IETDViewAutarkBw.yaml b/manifests/r/Rohde&Schwarz/SDC/IETDViewAutarkBw/7.1.2/Rohde&Schwarz.SDC.IETDViewAutarkBw.yaml new file mode 100644 index 0000000000000..0d155746c7e8b --- /dev/null +++ b/manifests/r/Rohde&Schwarz/SDC/IETDViewAutarkBw/7.1.2/Rohde&Schwarz.SDC.IETDViewAutarkBw.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Rohde&Schwarz.SDC.IETDViewAutarkBw +PackageVersion: 7.1.2 +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ruben2776/PicView/2.2.1/Ruben2776.PicView.installer.yaml b/manifests/r/Ruben2776/PicView/2.2.1/Ruben2776.PicView.installer.yaml index d05797502da03..d83299a86c364 100644 --- a/manifests/r/Ruben2776/PicView/2.2.1/Ruben2776.PicView.installer.yaml +++ b/manifests/r/Ruben2776/PicView/2.2.1/Ruben2776.PicView.installer.yaml @@ -59,6 +59,7 @@ FileExtensions: - xcf - xpm ProductCode: '{F102E394-0FA6-4AEA-826D-9FE699115BAB}_is1' +ReleaseDate: 2024-01-27 Installers: - Architecture: x64 InstallerUrl: https://github.com/Ruben2776/PicView/releases/download/2.2.1/PicView-2.2.1.exe diff --git a/manifests/r/Ruben2776/PicView/2.2.1/Ruben2776.PicView.locale.en-US.yaml b/manifests/r/Ruben2776/PicView/2.2.1/Ruben2776.PicView.locale.en-US.yaml index 630f9fb1703b4..80f680a00901c 100644 --- a/manifests/r/Ruben2776/PicView/2.2.1/Ruben2776.PicView.locale.en-US.yaml +++ b/manifests/r/Ruben2776/PicView/2.2.1/Ruben2776.PicView.locale.en-US.yaml @@ -26,5 +26,17 @@ Tags: - picture - reader - viewer +ReleaseNotes: |- + Changelog + - Performance improvements for image loading + - Fix an issue causing a crash when using drag and drop to load unsupported files #135 + - Updated German translation + - Set language from operating system, if the user settings have not been configured + - Better handling when loading images that are corrupt/invalid + - Minor UI improvements + - PicView now focuses when opening images in the same window + - Updated logic for saving settings #137 + - Add support for Nanazip #134 +ReleaseNotesUrl: https://github.com/Ruben2776/PicView/releases/tag/2.2.1 ManifestType: defaultLocale ManifestVersion: 1.5.0 diff --git a/manifests/r/Ruben2776/PicView/2.2.1/Ruben2776.PicView.locale.zh-CN.yaml b/manifests/r/Ruben2776/PicView/2.2.1/Ruben2776.PicView.locale.zh-CN.yaml index d9f49db066c8f..c5150030fc816 100644 --- a/manifests/r/Ruben2776/PicView/2.2.1/Ruben2776.PicView.locale.zh-CN.yaml +++ b/manifests/r/Ruben2776/PicView/2.2.1/Ruben2776.PicView.locale.zh-CN.yaml @@ -24,5 +24,6 @@ Tags: - 漫画 - 照片 - 阅读器 +ReleaseNotesUrl: https://github.com/Ruben2776/PicView/releases/tag/2.2.1 ManifestType: locale ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1154/Ryujinx.Ryujinx.installer.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1154/Ryujinx.Ryujinx.installer.yaml new file mode 100644 index 0000000000000..59fa27b202192 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1154/Ryujinx.Ryujinx.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1154 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.exe +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1154/ryujinx-1.1.1154-win_x64.zip + InstallerSha256: 5190367A3562C97D22822A96DD0F5B3D2A003248021EA62A9970E9BEBF993122 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1154/Ryujinx.Ryujinx.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1154/Ryujinx.Ryujinx.locale.en-US.yaml new file mode 100644 index 0000000000000..072c40fe8b685 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1154/Ryujinx.Ryujinx.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1154 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT license +ShortDescription: Experimental Nintendo Switch Emulator written in C# +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1154 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1154/Ryujinx.Ryujinx.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1154/Ryujinx.Ryujinx.yaml new file mode 100644 index 0000000000000..42f75876a7b3d --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1154/Ryujinx.Ryujinx.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1154 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1154/Ryujinx.Ryujinx.Ava.installer.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1154/Ryujinx.Ryujinx.Ava.installer.yaml new file mode 100644 index 0000000000000..67a0f3562b3b6 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1154/Ryujinx.Ryujinx.Ava.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1154 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.Ava.exe + PortableCommandAlias: Ryujinx.Ava +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1154/test-ava-ryujinx-1.1.1154-win_x64.zip + InstallerSha256: E611FB7207FB6DC799CF5C98CA45243AE76F2AFDF27DD221265806D2D0950423 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1154/Ryujinx.Ryujinx.Ava.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1154/Ryujinx.Ryujinx.Ava.locale.en-US.yaml new file mode 100644 index 0000000000000..112df71f43d5b --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1154/Ryujinx.Ryujinx.Ava.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1154 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx Emulator +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT License +LicenseUrl: https://github.com/Ryujinx/Ryujinx/blob/master/LICENSE.txt +ShortDescription: Experimental Nintendo Switch Emulator written in C# +Tags: +- switch +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1154 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1154/Ryujinx.Ryujinx.Ava.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1154/Ryujinx.Ryujinx.Ava.yaml new file mode 100644 index 0000000000000..37e4a650ab69a --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1154/Ryujinx.Ryujinx.Ava.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1154 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/rsteube/Carapace/0.28.3/rsteube.Carapace.locale.en-US.yaml b/manifests/r/rsteube/Carapace/0.28.3/rsteube.Carapace.locale.en-US.yaml deleted file mode 100644 index e54e8cf27a4f8..0000000000000 --- a/manifests/r/rsteube/Carapace/0.28.3/rsteube.Carapace.locale.en-US.yaml +++ /dev/null @@ -1,211 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: rsteube.Carapace -PackageVersion: 0.28.3 -PackageLocale: en-US -Publisher: rsteube -PublisherUrl: https://rsteube.github.io/carapace-bin -PublisherSupportUrl: https://github.com/rsteube/carapace-bin/issues -PackageName: Carapace -PackageUrl: https://github.com/rsteube/carapace-bin -License: MIT -LicenseUrl: https://github.com/rsteube/carapace-bin/blob/master/LICENSE -ShortDescription: multi-shell, multi-command, argument completer -Tags: -- bash -- elvish -- fish -- powershell -- zsh -- oil -- xonsh -- ion -- nushell -- tcsh -- xontrib -- carapace -- completion -ReleaseNotes: |- - Changelog - - 8e92cf03 Merge pull request #1918 from rsteube/add-eza - - 2e545ae8 Merge pull request #1919 from rsteube/helix-working-dir - - a81f4403 Merge pull request #1920 from rsteube/git-clean-ignored - - e5765e6b Merge pull request #1921 from rsteube/git-checkattr - - ca87c8a9 Merge pull request #1922 from rsteube/git-filter-branch - - c1619585 Merge pull request #1923 from rsteube/git-fastexport - - 7d264ace Merge pull request #1924 from rsteube/git-fastimport - - 01f4be76 Merge pull request #1925 from rsteube/git-packrefs - - 9ddb51dc Merge pull request #1926 from rsteube/git-reflog - - ea8463d2 Merge pull request #1927 from rsteube/git-repack - - 918bca2c Merge pull request #1929 from rsteube/add-mkcert - - 313fa85b Merge pull request #1930 from rsteube/git-checkignore - - 01f4ff89 Merge pull request #1931 from rsteube/git-checkmailmap - - 1587c86f Merge pull request #1932 from rsteube/git-checkrefformat - - 5e703b07 Merge pull request #1933 from rsteube/git-column - - b4cc6945 Merge pull request #1934 from rsteube/git-credential - - 0e58e9cb Merge pull request #1935 from rsteube/git-credentialcache - - ac613d5c Merge pull request #1936 from rsteube/git-credentialstore - - 1f05a76c Merge pull request #1937 from rsteube/git-checkoutindex - - 427d0b81 Merge pull request #1938 from rsteube/git-help - - 99bf8618 Merge pull request #1939 from rsteube/git-fmtmergemsg - - be7b68d2 Merge pull request #1940 from rsteube/git-stripspace - - 5335c15c Merge pull request #1941 from rsteube/git-pathid - - 3c1864c0 Merge pull request #1942 from rsteube/git-mergeonefile - - fbd092e2 Merge pull request #1943 from rsteube/git-mailsplit - - 2796eff9 Merge pull request #1944 from rsteube/git-mailinfo - - f67da5fe Merge pull request #1945 from rsteube/git-interprettrailers - - 458b796d Merge pull request #1946 from rsteube/git-daemon - - 2eddafeb Merge pull request #1947 from rsteube/git-replace - - 86050491 Merge pull request #1948 from rsteube/git-bugreport - - f35c5de3 Merge pull request #1949 from rsteube/git-countobjects - - 01a53217 Merge pull request #1950 from rsteube/git-fsck - - ed1ec571 Merge pull request #1951 from rsteube/git-instaweb - - e456ac9a Merge pull request #1952 from VaibhavWakde52/master - - a5e3321e Merge pull request #1953 from rsteube/git-mergetree - - a6a26753 Merge pull request #1954 from rsteube/git-rerere - - 39fbb4d2 Merge pull request #1955 from rsteube/git-verifycommit - - a2d90ea0 Merge pull request #1956 from rsteube/git-verifytag - - 2f12732f Merge pull request #1957 from rsteube/git-cvsexportcommit - - ff097143 Merge pull request #1958 from rsteube/git-cvsimport - - 93bc4ea8 Merge pull request #1959 from rsteube/git-cvsserver - - 8ec9f40a Merge pull request #1960 from rsteube/git-imapsend - - 88b50c1a Merge pull request #1961 from rsteube/git-quiltimport - - c718cbdc Merge pull request #1962 from rsteube/git-requestpull - - 3a6b6d42 Merge pull request #1963 from rsteube/git-sendemail - - dbd33d15 Merge pull request #1964 from rsteube/git-fetchpack - - 10c4a8da Merge pull request #1965 from rsteube/git-httpbackend - - 50ed2f97 Merge pull request #1966 from rsteube/git-updateserverinfo - - cfad84fc Merge pull request #1969 from rsteube/add-jj - - 0688a0f2 Merge pull request #1971 from rsteube/jj-git-clone - - 6b43a04d Merge pull request #1972 from rsteube/jj-help - - e5339f62 Merge pull request #1973 from rsteube/jj-env - - c16efc26 Merge pull request #1974 from rsteube/jj-ref - - f08cc211 Merge pull request #1975 from rsteube/jj-files - - b71647cb Merge pull request #1976 from rsteube/jj-commits - - 686176e6 Merge pull request #1977 from rsteube/jj-headcommits - - 2706bc4b Merge pull request #1978 from rsteube/jj-split - - 2cd6d740 Merge pull request #1979 from rsteube/jj-show - - d515f8fe Merge pull request #1980 from rsteube/jj-cat - - ba7198b8 Merge pull request #1981 from rsteube/jj-tags - - f23bf818 Merge pull request #1982 from rsteube/jj-revdiffs - - d1a21d06 Merge pull request #1983 from rsteube/jj-prev - - 172f6817 Merge pull request #1984 from rsteube/jj-chmod - - 65c4bd3a Merge pull request #1985 from rsteube/jj-branch - - e9e9d4a5 Merge pull request #1986 from rsteube/jj-log - - 364bd4a8 Merge pull request #1987 from rsteube/jj-abandon - - e68dc79a Merge pull request #1988 from rsteube/jj-checkout - - 23209570 Merge pull request #1989 from rsteube/jj-commit - - fa238676 Merge pull request #1990 from rsteube/jj-describe - - d858cc38 Merge pull request #1991 from rsteube/jj-init - - 418c5fc8 Merge pull request #1992 from rsteube/jj-merge - - 68bf44d1 Merge pull request #1993 from rsteube/jj-new - - 0b0db747 Merge pull request #1994 from rsteube/jj-next - - 50b3cda1 Merge pull request #1995 from rsteube/jj-rebase - - c27b8235 Merge pull request #1996 from rsteube/jj-restore - - fa16d8ac Merge pull request #1997 from rsteube/jj-squash - - 2a3501d0 Merge pull request #1998 from rsteube/jj-remote - - fbf4e6da Merge pull request #1999 from rsteube/jj-diffedit - - 15e4d7fa Merge pull request #2000 from rsteube/jj-duplicate - - 191cb4ae Merge pull request #2001 from rsteube/jj-gitfetch - - 49396511 Merge pull request #2002 from rsteube/jj-gitpush - - 59f38778 Merge pull request #2003 from rsteube/jj-obslog - - 8bfe21aa Merge pull request #2004 from rsteube/jj-operation - - 33cec92a Merge pull request #2005 from rsteube/jj-undo - - 0f599265 Merge pull request #2006 from rsteube/jj-unsquash - - 70073877 Merge pull request #2007 from rsteube/jj-workspaceadd - - 76803c60 Merge pull request #2008 from rsteube/jj-resolve - - b6862ca8 Merge pull request #2009 from rsteube/jj-config - - b5b9a841 Merge pull request #2010 from rsteube/jj-interdiff - - f01c0156 Update style.md - - 969eefd0 added eza - - d8890b14 added jj - - ae945dd9 added mkcert - - 0d11e9d4 git: bugreport - - d7de4310 git: check-attr - - ee86c8d8 git: check-ignore - - c72db22f git: check-mailmap - - ff4fa025 git: check-ref-format - - 1c0f414e git: checkout-index - - 93eaec6b git: clean - support ignored files - - 88dff723 git: column - - 8a6dd6c1 git: count-objects - - db9cde6e git: credential - - d55806a3 git: credential-cache - - 74dad65e git: credential-store - - ec8b832b git: cvsexportcommit - - 45a5243b git: cvsimport - - 0188805e git: cvsserver - - 1a639a45 git: daemon - - b43753e9 git: fast-export - - 2421f9a3 git: fast-import - - 4e2f7018 git: fetch-pack - - 5f28062a git: filter-branch - filter completion - - bcd904d2 git: fmt-merge-msg - - b53dcaeb git: fsck - - 404342d8 git: help - - f874aa77 git: http-backend - - 6431778c git: imap-send - - 24a697c5 git: instaweb - - b08c89e8 git: interpret-trailers - - c042eb72 git: mailinfo - - 470e1298 git: mailsplit - - e960e12c git: merge-one-file - - 05217563 git: merge-tree - - fc515a7b git: pack-refs - - 350f5a42 git: patch-id - - af7a229b git: quiltimport - - aab95e8a git: reflog - - 6cca3300 git: repack - - be6aa804 git: replace - - e616b048 git: request-pull - - 8ab1794f git: rerere - - 16188454 git: send-email - - 11fd37c7 git: stripspace - - 20caac01 git: update-server-info - - 0f6ec2ae git: verify-commit - - 3abe08b9 git: verify-tag - - 3462477f helix: add working-dir flag - - 5908a326 jj: abandon and backout - - 860c234a jj: branch - - 149d81cf jj: cat - - 874120bc jj: checkout - - 0d290504 jj: chmod - - 0aaa1264 jj: commit - - b5e44f9b jj: config - - 2a823b70 jj: describe and diff - - 7d6e33e2 jj: diffedit - - 86f0c68f jj: duplicate and edit - - 1e5e6f27 jj: environment variables - - 940997aa jj: files - - 7c756562 jj: git clone - - 29dd9bda jj: git fetch - - bcae014b jj: git push - - 4c7d9014 jj: head commits - - bcced9ac jj: help - - 13bc67c0 jj: init - - 94d7d6e2 jj: interdiff - - 824dd077 jj: log - - 4f903fa5 jj: merge and move - - a7e18216 jj: new - - 27261818 jj: next - - f2229542 jj: obslog - - 4c5ae441 jj: operation - - f975f6a5 jj: prev - - a507b35a jj: rebase - - a3411735 jj: recent commits - - 3560f72f jj: ref actions - - 7483ea9d jj: remote - - 6f36a3ef jj: resolve - - 507b5b71 jj: restore - - 44518fdc jj: revision changes - - 2d493558 jj: show - - a751598f jj: split - - d5c54f84 jj: squash - - 9e026e9b jj: tags - - 54516c86 jj: undo - - db7caf46 jj: unsquash and untrack - - 0ffd8a2b jj: workspace add and forget -ReleaseNotesUrl: https://github.com/rsteube/carapace-bin/releases/tag/v0.28.3 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/r/rsteube/Carapace/0.28.3/rsteube.Carapace.installer.yaml b/manifests/r/rsteube/Carapace/0.30.1/rsteube.Carapace.installer.yaml similarity index 69% rename from manifests/r/rsteube/Carapace/0.28.3/rsteube.Carapace.installer.yaml rename to manifests/r/rsteube/Carapace/0.30.1/rsteube.Carapace.installer.yaml index 268d4643927e6..536a17ff6afd6 100644 --- a/manifests/r/rsteube/Carapace/0.28.3/rsteube.Carapace.installer.yaml +++ b/manifests/r/rsteube/Carapace/0.30.1/rsteube.Carapace.installer.yaml @@ -2,16 +2,16 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: rsteube.Carapace -PackageVersion: 0.28.3 +PackageVersion: 0.30.1 InstallerType: zip NestedInstallerType: portable NestedInstallerFiles: - RelativeFilePath: carapace.exe UpgradeBehavior: install -ReleaseDate: 2023-11-03 +ReleaseDate: 2024-01-31 Installers: - Architecture: x64 - InstallerUrl: https://github.com/rsteube/carapace-bin/releases/download/v0.28.3/carapace-bin_windows_amd64.zip - InstallerSha256: B8A696FE6954965833668FCD4B1F3DF32D31E367D572C4FB97DCDDE6717E05A8 + InstallerUrl: https://github.com/rsteube/carapace-bin/releases/download/v0.30.1/carapace-bin_windows_amd64.zip + InstallerSha256: E74537EB4863057A36C1AF06C9F2233D8D681EC59B7F96CC9F3357F166F798CC ManifestType: installer ManifestVersion: 1.5.0 diff --git a/manifests/r/rsteube/Carapace/0.30.1/rsteube.Carapace.locale.en-US.yaml b/manifests/r/rsteube/Carapace/0.30.1/rsteube.Carapace.locale.en-US.yaml new file mode 100644 index 0000000000000..210ee8f898ce6 --- /dev/null +++ b/manifests/r/rsteube/Carapace/0.30.1/rsteube.Carapace.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: rsteube.Carapace +PackageVersion: 0.30.1 +PackageLocale: en-US +Publisher: rsteube +PublisherUrl: https://rsteube.github.io/carapace-bin +PublisherSupportUrl: https://github.com/rsteube/carapace-bin/issues +PackageName: Carapace +PackageUrl: https://github.com/rsteube/carapace-bin +License: MIT +LicenseUrl: https://github.com/rsteube/carapace-bin/blob/master/LICENSE +ShortDescription: multi-shell, multi-command, argument completer +Tags: +- bash +- elvish +- fish +- powershell +- zsh +- oil +- xonsh +- ion +- nushell +- tcsh +- xontrib +- carapace +- completion +ReleaseNotes: |- + Changelog + - e859207f Merge pull request #2209 from rsteube/bridge-check + - ac2a2a05 Merge pull request #2210 from rsteube/git-dir-and-worktree + - 5b0b9729 bridges: check if command is known + - 3905d620 git: support git-dir and work-tree +ReleaseNotesUrl: https://github.com/rsteube/carapace-bin/releases/tag/v0.30.1 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/rsteube/Carapace/0.28.3/rsteube.Carapace.yaml b/manifests/r/rsteube/Carapace/0.30.1/rsteube.Carapace.yaml similarity index 88% rename from manifests/r/rsteube/Carapace/0.28.3/rsteube.Carapace.yaml rename to manifests/r/rsteube/Carapace/0.30.1/rsteube.Carapace.yaml index 9b5a74fbbcf7f..a46c16c84e443 100644 --- a/manifests/r/rsteube/Carapace/0.28.3/rsteube.Carapace.yaml +++ b/manifests/r/rsteube/Carapace/0.30.1/rsteube.Carapace.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: rsteube.Carapace -PackageVersion: 0.28.3 +PackageVersion: 0.30.1 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.5.0 diff --git a/manifests/s/SWI-Prolog/SWI-Prolog/9.2.0/SWI-Prolog.SWI-Prolog.installer.yaml b/manifests/s/SWI-Prolog/SWI-Prolog/9.2.0/SWI-Prolog.SWI-Prolog.installer.yaml new file mode 100644 index 0000000000000..a74178301f970 --- /dev/null +++ b/manifests/s/SWI-Prolog/SWI-Prolog/9.2.0/SWI-Prolog.SWI-Prolog.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: SWI-Prolog.SWI-Prolog +PackageVersion: 9.2.0 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Commands: +- swipl +- swipl-ld +FileExtensions: +- pl +- prolog +- qlf +Installers: +- Architecture: x86 + InstallerUrl: https://www.swi-prolog.org/download/stable/bin/swipl-9.2.0-1.x86.exe + InstallerSha256: FEC3F19B58D6EDCBBA5C9547135F82F1479FDE1E30D4FC786379CFFB1B787860 + ProductCode: swipl +- Architecture: x64 + InstallerUrl: https://www.swi-prolog.org/download/stable/bin/swipl-9.2.0-1.x64.exe + InstallerSha256: B7F41031E28A8C3D442A5F63C1D32250C263EA116B5ECA655E54122627A7408E + ProductCode: swipl +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/SWI-Prolog/SWI-Prolog/9.2.0/SWI-Prolog.SWI-Prolog.locale.en-US.yaml b/manifests/s/SWI-Prolog/SWI-Prolog/9.2.0/SWI-Prolog.SWI-Prolog.locale.en-US.yaml new file mode 100644 index 0000000000000..4505aaf66515e --- /dev/null +++ b/manifests/s/SWI-Prolog/SWI-Prolog/9.2.0/SWI-Prolog.SWI-Prolog.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: SWI-Prolog.SWI-Prolog +PackageVersion: 9.2.0 +PackageLocale: en-US +Publisher: SWI-Prolog +PublisherUrl: https://www.swi-prolog.org +PublisherSupportUrl: https://www.swi-prolog.org/community.html +# PrivacyUrl: +Author: Jan Wielemaker +PackageName: SWI-Prolog +PackageUrl: https://www.swi-prolog.org +License: BSD-2-Clause +LicenseUrl: https://www.swi-prolog.org/license.html +Copyright: Copyright (c) 2024, SWI-Prolog Solutions b.v. All rights reserved. +# CopyrightUrl: +ShortDescription: A versatile implementation of the Prolog language +Description: |- + SWI-Prolog offers a comprehensive free Prolog environment. + Since its start in 1987, SWI-Prolog development has been driven by the needs of real world applications. + SWI-Prolog is widely used in research and education as well as commercial applications. +Moniker: swipl +Tags: +- language +- logic +- programming +- prolog +# ReleaseNotes: +ReleaseNotesUrl: https://www.swi-prolog.org/ChangeLog?branch=stable&from=9.0.4&to=9.2.0 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Reference Manual + DocumentUrl: https://www.swi-prolog.org/pldoc/doc_for?object=manual +- DocumentLabel: FAQ + DocumentUrl: https://www.swi-prolog.org/FAQ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/SWI-Prolog/SWI-Prolog/9.2.0/SWI-Prolog.SWI-Prolog.locale.zh-CN.yaml b/manifests/s/SWI-Prolog/SWI-Prolog/9.2.0/SWI-Prolog.SWI-Prolog.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9e0224ce32794 --- /dev/null +++ b/manifests/s/SWI-Prolog/SWI-Prolog/9.2.0/SWI-Prolog.SWI-Prolog.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: SWI-Prolog.SWI-Prolog +PackageVersion: 9.2.0 +PackageLocale: zh-CN +Publisher: SWI-Prolog +PublisherUrl: https://www.swi-prolog.org +PublisherSupportUrl: https://www.swi-prolog.org/community.html +# PrivacyUrl: +Author: Jan Wielemaker +PackageName: SWI-Prolog +PackageUrl: https://www.swi-prolog.org +License: BSD-2-Clause +LicenseUrl: https://www.swi-prolog.org/license.html +Copyright: Copyright (c) 2024, SWI-Prolog Solutions b.v. All rights reserved. +# CopyrightUrl: +ShortDescription: Prolog 语言的通用实现 +Description: SWI-Prolog 提供了一个全面、自由的 Prolog 环境。自 1987 年诞生以来,对现实世界应用的需求不断驱动着 SWI-Prolog 的开发。SWI-Prolog 被广泛用于研究、教育、商业应用中。 +# Moniker: +Tags: +- prolog +- 编程 +- 语言 +- 逻辑 +# ReleaseNotes: +ReleaseNotesUrl: https://www.swi-prolog.org/ChangeLog?branch=stable&from=9.0.4&to=9.2.0 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 参考手册 + DocumentUrl: https://www.swi-prolog.org/pldoc/doc_for?object=manual +- DocumentLabel: 常见问题 + DocumentUrl: https://www.swi-prolog.org/FAQ +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/s/SWI-Prolog/SWI-Prolog/9.2.0/SWI-Prolog.SWI-Prolog.yaml b/manifests/s/SWI-Prolog/SWI-Prolog/9.2.0/SWI-Prolog.SWI-Prolog.yaml new file mode 100644 index 0000000000000..40ac56123d32c --- /dev/null +++ b/manifests/s/SWI-Prolog/SWI-Prolog/9.2.0/SWI-Prolog.SWI-Prolog.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: SWI-Prolog.SWI-Prolog +PackageVersion: 9.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/Sandboxie/Plus/1.12.8/Sandboxie.Plus.installer.yaml b/manifests/s/Sandboxie/Plus/1.12.8/Sandboxie.Plus.installer.yaml new file mode 100644 index 0000000000000..07820a0ebe45a --- /dev/null +++ b/manifests/s/Sandboxie/Plus/1.12.8/Sandboxie.Plus.installer.yaml @@ -0,0 +1,25 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Sandboxie.Plus +PackageVersion: 1.12.8 +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/sandboxie-plus/Sandboxie/releases/download/v1.12.8/Sandboxie-Plus-x86-v1.12.8.exe + InstallerSha256: 9EEA0A9A6A6F475A172D6DE851BB39CE653ACF46097604A0D5E5BA7DDA0C8D33 +- Architecture: x64 + InstallerUrl: https://github.com/sandboxie-plus/Sandboxie/releases/download/v1.12.8/Sandboxie-Plus-x64-v1.12.8.exe + InstallerSha256: ABA68A50C1A42429C9BCB20784798129ED940E4F8B6735608FB2141AB1261838 +- Architecture: arm64 + InstallerUrl: https://github.com/sandboxie-plus/Sandboxie/releases/download/v1.12.8/Sandboxie-Plus-ARM64-v1.12.8.exe + InstallerSha256: 449A9EFE91E6721AA7C1DDA2377F221EC558204E504DD7A92CA02F6CAE54B5B8 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/Sandboxie/Plus/1.12.8/Sandboxie.Plus.locale.en-US.yaml b/manifests/s/Sandboxie/Plus/1.12.8/Sandboxie.Plus.locale.en-US.yaml new file mode 100644 index 0000000000000..0788a0eb037af --- /dev/null +++ b/manifests/s/Sandboxie/Plus/1.12.8/Sandboxie.Plus.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Sandboxie.Plus +PackageVersion: 1.12.8 +PackageLocale: en-US +Publisher: http://xanasoft.com/ +PublisherUrl: https://xanasoft.com +PublisherSupportUrl: https://github.com/sandboxie-plus/Sandboxie/issues +Author: https://xanasoft.com +PackageName: Sandboxie-Plus +PackageUrl: https://github.com/sandboxie-plus/Sandboxie +License: Custom +LicenseUrl: https://raw.githubusercontent.com/sandboxie-plus/Sandboxie/master/LICENSE.Plus +CopyrightUrl: https://raw.githubusercontent.com/sandboxie-plus/Sandboxie/master/LICENSE.Plus +ShortDescription: Sandboxie is a sandbox-based isolation software for 32- and 64-bit Windows NT-based operating systems. +Description: |- + Sandboxie is a sandbox-based isolation software for 32- and 64-bit Windows NT-based operating systems. + It is developed by David Xanatos since it became open source, before that it was developed by Sophos (which acquired it from Invincea, which acquired it earlier from the original author Ronen Tzur). + It creates a sandbox-like isolated operating environment in which applications can be run or installed without permanently modifying the local or mapped drive. + Such an isolated virtual environment allows controlled testing of untrusted programs and web surfing. +Moniker: sandboxie-plus +Tags: +- sandbox +ReleaseNotesUrl: https://github.com/sandboxie-plus/Sandboxie/releases/tag/v1.12.8 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/Sandboxie/Plus/1.12.8/Sandboxie.Plus.yaml b/manifests/s/Sandboxie/Plus/1.12.8/Sandboxie.Plus.yaml new file mode 100644 index 0000000000000..a4e18250cf792 --- /dev/null +++ b/manifests/s/Sandboxie/Plus/1.12.8/Sandboxie.Plus.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Sandboxie.Plus +PackageVersion: 1.12.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/Sidero/talosctl/1.6.4/Sidero.talosctl.installer.yaml b/manifests/s/Sidero/talosctl/1.6.4/Sidero.talosctl.installer.yaml new file mode 100644 index 0000000000000..d8bbc3d354745 --- /dev/null +++ b/manifests/s/Sidero/talosctl/1.6.4/Sidero.talosctl.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Sidero.talosctl +PackageVersion: 1.6.4 +InstallerLocale: en-US +InstallerType: portable +Commands: +- talosctl +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/siderolabs/talos/releases/download/v1.6.4/talosctl-windows-amd64.exe + InstallerSha256: FB21CC6C39B80E68B67A36427DAD1E9DF74F19166E1F0765EC6B528B54D49BCB +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/Sidero/talosctl/1.6.4/Sidero.talosctl.locale.en-US.yaml b/manifests/s/Sidero/talosctl/1.6.4/Sidero.talosctl.locale.en-US.yaml new file mode 100644 index 0000000000000..7c40d474dd451 --- /dev/null +++ b/manifests/s/Sidero/talosctl/1.6.4/Sidero.talosctl.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Sidero.talosctl +PackageVersion: 1.6.4 +PackageLocale: en-US +Publisher: Sidero Labs +PublisherUrl: https://www.talos.dev +PublisherSupportUrl: https://github.com/siderolabs/talos/issues +PrivacyUrl: https://www.siderolabs.com/privacy-policy/ +Author: Sidero Labs +PackageName: talosctl +PackageUrl: https://www.talos.dev/ +License: Mozilla Public License 2.0 +LicenseUrl: https://github.com/siderolabs/talos/blob/main/LICENSE +ShortDescription: A command line tool for communicating with a Talos cluster +Tags: +- k8s +- kubernetes +- talos +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/Sidero/talosctl/1.6.4/Sidero.talosctl.yaml b/manifests/s/Sidero/talosctl/1.6.4/Sidero.talosctl.yaml new file mode 100644 index 0000000000000..670d8e0286482 --- /dev/null +++ b/manifests/s/Sidero/talosctl/1.6.4/Sidero.talosctl.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Sidero.talosctl +PackageVersion: 1.6.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/SimonG4ELI/SDR-Radio/Beta/.validation b/manifests/s/SimonG4ELI/SDR-Radio/Beta/.validation new file mode 100644 index 0000000000000..771e6a0d593a0 --- /dev/null +++ b/manifests/s/SimonG4ELI/SDR-Radio/Beta/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"79c36f62-9624-425e-9912-6dafc4241a06","TestPlan":"Validation-Domain","PackagePath":"manifests/s/SimonG4ELI/SDR-Radio/Beta/3.3-b3195","CommitId":"7c48051532f02508f3f384dc663d1d61960977d8"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/s/SimonG4ELI/SDR-Radio/Beta/3.3-b3195/SimonG4ELI.SDR-Radio.Beta.installer.yaml b/manifests/s/SimonG4ELI/SDR-Radio/Beta/3.3-b3195/SimonG4ELI.SDR-Radio.Beta.installer.yaml new file mode 100644 index 0000000000000..6655e91efdbe1 --- /dev/null +++ b/manifests/s/SimonG4ELI/SDR-Radio/Beta/3.3-b3195/SimonG4ELI.SDR-Radio.Beta.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: SimonG4ELI.SDR-Radio.Beta +PackageVersion: 3.3-b3195 +Installers: +- InstallerUrl: https://www.dropbox.com/scl/fi/4nvrsguweoxignatwbc17/SDR-Radio-V3.3-32-bit-2023-12-26_0702.exe?rlkey=07066i24shqxq7kiadk86b9ez&dl=1 + Architecture: x86 + InstallerType: nullsoft + InstallerSha256: DA1E0A861924D4DF37CAE4A582FCA819AC7E9E88650F8D5465CF3AAFD80D9CC0 +- InstallerUrl: https://www.dropbox.com/scl/fi/hm2umr6g25dlq1aihvt0e/SDR-Radio-V3.3-64-bit-2023-12-26_0652.exe?rlkey=adf7scg0thme92vmd2m6x5fso&dl=1 + Architecture: x64 + InstallerType: nullsoft + InstallerSha256: BA004D8AB493D0144D4E1C0321A6D61485A96B4D31F25FB7CF2CD0A40153D320 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/SimonG4ELI/SDR-Radio/Beta/3.3-b3195/SimonG4ELI.SDR-Radio.Beta.locale.en-US.yaml b/manifests/s/SimonG4ELI/SDR-Radio/Beta/3.3-b3195/SimonG4ELI.SDR-Radio.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..8da40988fd7c0 --- /dev/null +++ b/manifests/s/SimonG4ELI/SDR-Radio/Beta/3.3-b3195/SimonG4ELI.SDR-Radio.Beta.locale.en-US.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: SimonG4ELI.SDR-Radio.Beta +PackageVersion: 3.3-b3195 +PackageLocale: en-US +Publisher: Simon G4ELI +PublisherUrl: https://www.dit-dit-dit.com +PackageName: SDR-Radio +PackageUrl: https://www.sdr-radio.com/download#Release +License: Proprietary +ShortDescription: Windows solution for Software Defined Radio (SDR) receivers and transceivers. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/SimonG4ELI/SDR-Radio/Beta/3.3-b3195/SimonG4ELI.SDR-Radio.Beta.yaml b/manifests/s/SimonG4ELI/SDR-Radio/Beta/3.3-b3195/SimonG4ELI.SDR-Radio.Beta.yaml new file mode 100644 index 0000000000000..36c5c5455adb5 --- /dev/null +++ b/manifests/s/SimonG4ELI/SDR-Radio/Beta/3.3-b3195/SimonG4ELI.SDR-Radio.Beta.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: SimonG4ELI.SDR-Radio.Beta +PackageVersion: 3.3-b3195 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/SmartSoft/SmartFTP/10.0.3201.0/SmartSoft.SmartFTP.installer.yaml b/manifests/s/SmartSoft/SmartFTP/10.0.3201.0/SmartSoft.SmartFTP.installer.yaml new file mode 100644 index 0000000000000..7589dad8670e0 --- /dev/null +++ b/manifests/s/SmartSoft/SmartFTP/10.0.3201.0/SmartSoft.SmartFTP.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: SmartSoft.SmartFTP +PackageVersion: 10.0.3201.0 +MinimumOSVersion: 10.0.17763.0 +Installers: +- InstallerLocale: en-US + Platform: + - Windows.Desktop + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://static.smartftp.com/static/Products/Client/10.0.3201.0/x64/SmartFTP.msi + InstallerSha256: BA01E028F4283CAD2AAD0CE39E656DD6B71A5AC0E5ABD500F5C034CBAB27451E + ProductCode: '{7E91773E-1BC1-4341-866F-442178539655}' + AppsAndFeaturesEntries: + - UpgradeCode: '{2119EFC7-B9BF-445D-9DB9-A9052E8391C5}' +ManifestType: installer +ManifestVersion: 1.5.0 +ReleaseDate: 2024-01-31 diff --git a/manifests/s/SmartSoft/SmartFTP/10.0.3201.0/SmartSoft.SmartFTP.locale.en-US.yaml b/manifests/s/SmartSoft/SmartFTP/10.0.3201.0/SmartSoft.SmartFTP.locale.en-US.yaml new file mode 100644 index 0000000000000..70a52a74c6cf8 --- /dev/null +++ b/manifests/s/SmartSoft/SmartFTP/10.0.3201.0/SmartSoft.SmartFTP.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: SmartSoft.SmartFTP +PackageVersion: 10.0.3201.0 +PackageLocale: en-US +Publisher: SmartSoft Ltd. +PublisherUrl: https://www.smartftp.com +PublisherSupportUrl: https://www.smartftp.com/support +Author: SmartSoft Ltd. +PackageName: SmartFTP Client +PackageUrl: https://www.smartftp.com +License: Commercial +LicenseUrl: https://www.smartftp.com/static/Products/Client/License.txt +ShortDescription: SmartFTP is a fast and reliable FTP, FTPS, SFTP, HTTP, Amazon S3, WebDAV, Google Drive, Google Cloud Storage, Microsoft OneDrive, Backblaze B2, Telnet, Terminal client with lots of features and a modern user interface. +Moniker: smartftp +Tags: +- ftp +- sftp +- webdav +- onedrive +- gdrive +- ssh +ReleaseNotesUrl: https://www.smartftp.com/en-us/changelog/1 +PurchaseUrl: https://www.smartftp.com/client/purchase/buy +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/SmartSoft/SmartFTP/10.0.3201.0/SmartSoft.SmartFTP.yaml b/manifests/s/SmartSoft/SmartFTP/10.0.3201.0/SmartSoft.SmartFTP.yaml new file mode 100644 index 0000000000000..84428db33f831 --- /dev/null +++ b/manifests/s/SmartSoft/SmartFTP/10.0.3201.0/SmartSoft.SmartFTP.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: SmartSoft.SmartFTP +PackageVersion: 10.0.3201.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/Spotify/Spotify/1.2.30.1135.g02fef27a/Spotify.Spotify.installer.yaml b/manifests/s/Spotify/Spotify/1.2.30.1135.g02fef27a/Spotify.Spotify.installer.yaml new file mode 100644 index 0000000000000..0fb999dc0a331 --- /dev/null +++ b/manifests/s/Spotify/Spotify/1.2.30.1135.g02fef27a/Spotify.Spotify.installer.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Spotify.Spotify +PackageVersion: 1.2.30.1135.g02fef27a +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent + Log: /log-file "" +UpgradeBehavior: install +ElevationRequirement: elevationProhibited +Installers: +- Architecture: x86 + InstallerUrl: https://upgrade.scdn.co/upgrade/client/win32-x86/spotify_installer-1.2.30.1135.g02fef27a-399.exe + InstallerSha256: 7BCAEA5E8BA772988C0F499D78628058F6FF9F6F394673F20242274107EAC53D + ProductCode: Spotify +- Architecture: x64 + InstallerUrl: https://upgrade.scdn.co/upgrade/client/win32-x86_64/spotify_installer-1.2.30.1135.g02fef27a-399.exe + InstallerSha256: 44CD771AC67A49C432EB20F57D5EDF504A88F6C0DAAC0692C5E464899924906A + ProductCode: Spotify +- Architecture: arm64 + InstallerUrl: https://upgrade.scdn.co/upgrade/client/win32-arm64/spotify_installer-1.2.30.1135.g02fef27a-386.exe + InstallerSha256: 1F1C78B4229AE0FA22AA02152E2D3686A1C639B7665245518508743458022739 + ProductCode: Spotify +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/Spotify/Spotify/1.2.30.1135.g02fef27a/Spotify.Spotify.locale.en-US.yaml b/manifests/s/Spotify/Spotify/1.2.30.1135.g02fef27a/Spotify.Spotify.locale.en-US.yaml new file mode 100644 index 0000000000000..3a4c80637affe --- /dev/null +++ b/manifests/s/Spotify/Spotify/1.2.30.1135.g02fef27a/Spotify.Spotify.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Spotify.Spotify +PackageVersion: 1.2.30.1135.g02fef27a +PackageLocale: en-US +Publisher: Spotify AB +PublisherUrl: https://www.spotify.com/ +PublisherSupportUrl: https://support.spotify.com/ +PrivacyUrl: https://www.spotify.com/legal/privacy-policy/ +Author: Spotify AB +PackageName: Spotify +PackageUrl: https://www.spotify.com/download/windows/ +License: Proprietary +LicenseUrl: https://www.spotify.com/legal/end-user-agreement/ +Copyright: Copyright © 2024 Spotify AB. +# CopyrightUrl: +ShortDescription: Spotify is all the music you’ll ever need. +Description: |- + With Spotify, it’s easy to find the right music or podcast for every moment – on your phone, your computer, your tablet and more. + There are millions of tracks and episodes on Spotify. So whether you’re behind the wheel, working out, partying or relaxing, the right music or podcast is always at your fingertips. Choose what you want to listen to, or let Spotify surprise you. + You can also browse through the collections of friends, artists, and celebrities, or create a radio station and just sit back. +# Moniker: +Tags: +- album +- artist +- audio +- episode +- music +- playlist +- podcast +- radio +- song +- sound +- streaming +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://www.spotify.com/premium/ +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/Spotify/Spotify/1.2.30.1135.g02fef27a/Spotify.Spotify.locale.zh-CN.yaml b/manifests/s/Spotify/Spotify/1.2.30.1135.g02fef27a/Spotify.Spotify.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3832de5860bba --- /dev/null +++ b/manifests/s/Spotify/Spotify/1.2.30.1135.g02fef27a/Spotify.Spotify.locale.zh-CN.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Spotify.Spotify +PackageVersion: 1.2.30.1135.g02fef27a +PackageLocale: zh-CN +Publisher: Spotify AB +PublisherUrl: https://www.spotify.com/ +PublisherSupportUrl: https://support.spotify.com/ +PrivacyUrl: https://www.spotify.com/legal/privacy-policy/ +Author: Spotify AB +PackageName: Spotify +PackageUrl: https://www.spotify.com/download/windows/ +License: 专有软件 +LicenseUrl: https://www.spotify.com/legal/end-user-agreement/ +Copyright: 版权所有 © 2024 Spotify AB。 +# CopyrightUrl: +ShortDescription: 你喜欢的音乐都在 Spotify。 +Description: |- + 无论你是使用手机、电脑、平板电脑还是其他设备,Spotify 都可助你轻松找到各种应景的音乐或播客。 + Spotify 汇集数百万曲目和单集。因此,无论你是开车、锻炼、聚会还是放松,合你口味的音乐或播客始终触手可及。你可以选择中意的音乐,也可以让 Spotify 为你播放精选内容。 + 你还可以浏览好友、艺人和明星的收藏,或创建广播电台,然后轻松惬意地聆听。 +# Moniker: +Tags: +- 专辑 +- 广播 +- 播客 +- 歌单 +- 歌手 +- 歌曲 +- 流媒体 +- 艺人 +- 节目 +- 音乐 +- 音频 +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://www.spotify.com/premium/ +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/s/Spotify/Spotify/1.2.30.1135.g02fef27a/Spotify.Spotify.yaml b/manifests/s/Spotify/Spotify/1.2.30.1135.g02fef27a/Spotify.Spotify.yaml new file mode 100644 index 0000000000000..261a675cfba3a --- /dev/null +++ b/manifests/s/Spotify/Spotify/1.2.30.1135.g02fef27a/Spotify.Spotify.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Spotify.Spotify +PackageVersion: 1.2.30.1135.g02fef27a +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/StandardNotes/StandardNotes/3.187.3/StandardNotes.StandardNotes.installer.yaml b/manifests/s/StandardNotes/StandardNotes/3.187.3/StandardNotes.StandardNotes.installer.yaml new file mode 100644 index 0000000000000..aa9c5b28d783b --- /dev/null +++ b/manifests/s/StandardNotes/StandardNotes/3.187.3/StandardNotes.StandardNotes.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: StandardNotes.StandardNotes +PackageVersion: 3.187.3 +InstallerType: nullsoft +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/standardnotes/app/releases/download/@standardnotes/desktop@3.187.3/standard-notes-3.187.3-win-ia32.exe + InstallerSha256: ACF23D020B96CE7413ED889E474FAD02B0B2CD2F9FFC217BAFA16CB35505F5F6 +- Architecture: x64 + InstallerUrl: https://github.com/standardnotes/app/releases/download/@standardnotes/desktop@3.187.3/standard-notes-3.187.3-win-x64.exe + InstallerSha256: 223B4CFA6EB52335E802F53E4B838C0E0797CF9085E95955C66FB4F13FF738A5 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/StandardNotes/StandardNotes/3.187.3/StandardNotes.StandardNotes.locale.en-US.yaml b/manifests/s/StandardNotes/StandardNotes/3.187.3/StandardNotes.StandardNotes.locale.en-US.yaml new file mode 100644 index 0000000000000..379ab391c99b4 --- /dev/null +++ b/manifests/s/StandardNotes/StandardNotes/3.187.3/StandardNotes.StandardNotes.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: StandardNotes.StandardNotes +PackageVersion: 3.187.3 +PackageLocale: en-US +Publisher: Standard Notes +PublisherUrl: https://standardnotes.com/ +PublisherSupportUrl: https://standardnotes.com/help +PrivacyUrl: https://standardnotes.com/privacy +Author: Standard Notes +PackageName: Standard Notes +PackageUrl: https://standardnotes.com/ +License: AGPL-3.0 +LicenseUrl: https://github.com/standardnotes/app/blob/HEAD/LICENSE +Copyright: Copyright (c) Standard Notes +CopyrightUrl: https://github.com/standardnotes/app/blob/main/LICENSE +ShortDescription: An end-to-end encrypted notes app for digitalists and professionals. +Description: |- + Standard Notes is an end-to-end encrypted note-taking app for digitalists and professionals. + Capture your notes, files, and life’s work all in one secure place. +Moniker: standardnotes +Tags: +- encrypted +- evernote +- markdown +- note-taking +- notes +- privacy +- secure +- snippets +- standardnotes +ReleaseNotes: |- + Web Changes + - Version bump only for package @standardnotes/web + Desktop Changes + - Version bump only for package @standardnotes/desktop +ReleaseNotesUrl: https://github.com/standardnotes/app/releases/tag/@standardnotes/desktop@3.187.3 +PurchaseUrl: https://standardnotes.com/plans +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/StandardNotes/StandardNotes/3.187.3/StandardNotes.StandardNotes.yaml b/manifests/s/StandardNotes/StandardNotes/3.187.3/StandardNotes.StandardNotes.yaml new file mode 100644 index 0000000000000..f2c69a68c7aaa --- /dev/null +++ b/manifests/s/StandardNotes/StandardNotes/3.187.3/StandardNotes.StandardNotes.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: StandardNotes.StandardNotes +PackageVersion: 3.187.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/StefansTools/grepWin/2.0.15/StefansTools.grepWin.installer.yaml b/manifests/s/StefansTools/grepWin/2.0.15/StefansTools.grepWin.installer.yaml index 02247341aaa03..d239fee9ea25c 100644 --- a/manifests/s/StefansTools/grepWin/2.0.15/StefansTools.grepWin.installer.yaml +++ b/manifests/s/StefansTools/grepWin/2.0.15/StefansTools.grepWin.installer.yaml @@ -11,6 +11,8 @@ InstallModes: - silentWithProgress UpgradeBehavior: install ReleaseDate: 2023-06-10 +AppsAndFeaturesEntries: +- DisplayVersion: 2.0.1232 Installers: - Architecture: x86 InstallerUrl: https://github.com/stefankueng/grepWin/releases/download/2.0.15/grepWin-2.0.15.msi diff --git a/manifests/s/shirowanisan/COEIROINK/2.3.3/shirowanisan.COEIROINK.installer.yaml b/manifests/s/shirowanisan/COEIROINK/2.3.3/shirowanisan.COEIROINK.installer.yaml new file mode 100644 index 0000000000000..4715bd664b4eb --- /dev/null +++ b/manifests/s/shirowanisan/COEIROINK/2.3.3/shirowanisan.COEIROINK.installer.yaml @@ -0,0 +1,16 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: shirowanisan.COEIROINK +PackageVersion: 2.3.3 +InstallerType: zip +NestedInstallerType: exe +NestedInstallerFiles: +- RelativeFilePath: COEIROINK_WIN_CPU_v.2.3.3.exe +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://www.dropbox.com/scl/fi/go73ds2ynspuqfnzcd5oo/COEIROINK_WIN_CPU_v.2.3.3.zip?rlkey=wqmacsf56wf6nvwu8a7sl0a6j&dl=1 + InstallerSha256: b8ca74bc2a47377cf01f35199debe23cc843ef0cfe17e1cfa8faf6ee36caf274 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/shirowanisan/COEIROINK/2.3.3/shirowanisan.COEIROINK.locale.en-US.yaml b/manifests/s/shirowanisan/COEIROINK/2.3.3/shirowanisan.COEIROINK.locale.en-US.yaml new file mode 100644 index 0000000000000..dd6201d6f52d9 --- /dev/null +++ b/manifests/s/shirowanisan/COEIROINK/2.3.3/shirowanisan.COEIROINK.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: shirowanisan.COEIROINK +PackageVersion: 2.3.3 +PackageLocale: en-US +Publisher: Shirowanisan +PublisherSupportUrl: https://help.dropbox.com +PrivacyUrl: https://dropbox.com/terms?rlkey=6o4545ej06vwemas26ythl0o7&dl=1 +PackageName: COEIROINK +PackageUrl: https://coeiroink.com/download +License: Proprietary +LicenseUrl: https://coeiroink.com/terms +ShortDescription: 無料で使える中品質なテキスト読み上げソフトウェア、COEIROINKのエディター +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/shirowanisan/COEIROINK/2.3.3/shirowanisan.COEIROINK.yaml b/manifests/s/shirowanisan/COEIROINK/2.3.3/shirowanisan.COEIROINK.yaml new file mode 100644 index 0000000000000..7023691897c2e --- /dev/null +++ b/manifests/s/shirowanisan/COEIROINK/2.3.3/shirowanisan.COEIROINK.yaml @@ -0,0 +1,8 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: shirowanisan.COEIROINK +PackageVersion: 2.3.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/shirowanisan/COEIROINK/GPU/2.3.3/shirowanisan.COEIROINK.GPU.installer.yaml b/manifests/s/shirowanisan/COEIROINK/GPU/2.3.3/shirowanisan.COEIROINK.GPU.installer.yaml new file mode 100644 index 0000000000000..bcac6eea06eb5 --- /dev/null +++ b/manifests/s/shirowanisan/COEIROINK/GPU/2.3.3/shirowanisan.COEIROINK.GPU.installer.yaml @@ -0,0 +1,15 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: shirowanisan.COEIROINK.GPU +PackageVersion: 2.3.3 +InstallerType: zip +NestedInstallerType: exe +NestedInstallerFiles: +- RelativeFilePath: COEIROINK_WIN_GPU_v.2.3.3.exe +Installers: +- Architecture: x64 + InstallerUrl: https://www.dropbox.com/scl/fi/nz452r3agyytwpkqkkyxg/COEIROINK_WIN_GPU_v.2.3.3.zip?rlkey=628ohlm2tjtwl7ilwhyt5m32i&dl=1 + InstallerSha256: BDB88789628481331BE10D0822DD80BFD3B555E26B9A509D4B4C9581A58CC0F5 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/shirowanisan/COEIROINK/GPU/2.3.3/shirowanisan.COEIROINK.GPU.locale.en-US.yaml b/manifests/s/shirowanisan/COEIROINK/GPU/2.3.3/shirowanisan.COEIROINK.GPU.locale.en-US.yaml new file mode 100644 index 0000000000000..c1c8bc01d5dbc --- /dev/null +++ b/manifests/s/shirowanisan/COEIROINK/GPU/2.3.3/shirowanisan.COEIROINK.GPU.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: shirowanisan.COEIROINK.GPU +PackageVersion: 2.3.3 +PackageLocale: en-US +Publisher: Shirowanisan +PublisherSupportUrl: https://help.dropbox.com +PrivacyUrl: https://dropbox.com/terms?rlkey=6o4545ej06vwemas26ythl0o7&dl=1 +PackageName: COEIROINK +PackageUrl: https://coeiroink.com +License: Proprietary +LicenseUrl: https://coeiroink.com/terms +ShortDescription: 無料で使える中品質なテキスト読み上げソフトウェア、COEIROINKのエディター +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/shirowanisan/COEIROINK/GPU/2.3.3/shirowanisan.COEIROINK.GPU.yaml b/manifests/s/shirowanisan/COEIROINK/GPU/2.3.3/shirowanisan.COEIROINK.GPU.yaml new file mode 100644 index 0000000000000..35f9d84b4594c --- /dev/null +++ b/manifests/s/shirowanisan/COEIROINK/GPU/2.3.3/shirowanisan.COEIROINK.GPU.yaml @@ -0,0 +1,8 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: shirowanisan.COEIROINK.GPU +PackageVersion: 2.3.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/stacklok/frizbee/0.0.13/stacklok.frizbee.installer.yaml b/manifests/s/stacklok/frizbee/0.0.13/stacklok.frizbee.installer.yaml new file mode 100644 index 0000000000000..70b499da1253a --- /dev/null +++ b/manifests/s/stacklok/frizbee/0.0.13/stacklok.frizbee.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.5.0.schema.json +PackageIdentifier: stacklok.frizbee +PackageVersion: 0.0.13 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-01-31" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: frizbee.exe + PortableCommandAlias: frizbee + InstallerUrl: https://github.com/stacklok/frizbee/releases/download/v0.0.13/frizbee_0.0.13_windows_arm64.zip + InstallerSha256: 599c6fc66fc74dadf11fc17a36273b6ed24df46189aa43ebbb94dab48f7e5a7d + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: frizbee.exe + PortableCommandAlias: frizbee + InstallerUrl: https://github.com/stacklok/frizbee/releases/download/v0.0.13/frizbee_0.0.13_windows_amd64.zip + InstallerSha256: b96cb97356190bf1d2664cf77c878bc69330914345f31df59f1a3872fcdb19ff + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/stacklok/frizbee/0.0.13/stacklok.frizbee.locale.en-US.yaml b/manifests/s/stacklok/frizbee/0.0.13/stacklok.frizbee.locale.en-US.yaml new file mode 100644 index 0000000000000..d0a99243f81b6 --- /dev/null +++ b/manifests/s/stacklok/frizbee/0.0.13/stacklok.frizbee.locale.en-US.yaml @@ -0,0 +1,65 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json +PackageIdentifier: stacklok.frizbee +PackageVersion: 0.0.13 +PackageLocale: en-US +Publisher: stacklok +PublisherSupportUrl: https://github.com/stacklok/frizbee/issues/new/choose +PackageName: frizbee +PackageUrl: https://stacklok.com +License: Apache-2.0 +LicenseUrl: https://github.com/stacklok/frizbee/blob/main/LICENSE +Copyright: Stacklok, Inc. +ShortDescription: frizbee is a tool you may throw a tag at and it comes back with a checksum. +Moniker: frizbee +Tags: + - golang + - cli +ReleaseNotes: | + ## Changelog + * 0209140420eb6f3fae0feebc2668230dff61ae17: Adding issue templates to project (@dussab) + * 9d89ad18ca6412b809a7ac8540e49ba90b8f7ac0: Bump actions/download-artifact from 4.1.0 to 4.1.1 (@dependabot[bot]) + * 9817e2080f5caef67562f94833751b498b345157: Bump actions/upload-artifact from 4.0.0 to 4.2.0 (@dependabot[bot]) + * a832add47eecfd35ab364e286e1d6ab7ca5a5e26: Bump actions/upload-artifact from 4.2.0 to 4.3.0 (@dependabot[bot]) + * 71a67841f19177cfcbd5a41c3d6eb70c74f88e6b: Bump anchore/sbom-action from 0.15.1 to 0.15.2 (@dependabot[bot]) + * eeb98a31d916c2409bb2c1aae4e5f5dd3a30e333: Bump anchore/sbom-action from 0.15.2 to 0.15.3 (@dependabot[bot]) + * 69e78c60d7626de2942599b9e9886df443c0e030: Bump anchore/sbom-action from 0.15.3 to 0.15.4 (@dependabot[bot]) + * 2b51221ad53673949dccb5477ab7fb589d3ecb97: Bump anchore/sbom-action from 0.15.4 to 0.15.5 (@dependabot[bot]) + * 29d091528ed9046d34f7b1c09ccf3f0edd13c9f7: Bump anchore/sbom-action from 0.15.5 to 0.15.6 (@dependabot[bot]) + * e55455c6d2758c17fb3577bfb9c642f7a39519c4: Bump anchore/sbom-action from 0.15.6 to 0.15.7 (@dependabot[bot]) + * 90ae8acd013450906ac1fee2f2dbf321dbe4ccba: Bump github.com/deckarep/golang-set/v2 from 2.5.0 to 2.6.0 (@dependabot[bot]) + * 00c7c214af588d1534f2ea1c941a61ac46001f4b: Bump github.com/google/go-containerregistry from 0.17.0 to 0.18.0 (@dependabot[bot]) + * 42c9720aa0c142b675d0491a7fd3e128af923e88: Bump github.com/google/go-containerregistry from 0.18.0 to 0.19.0 (@dependabot[bot]) + * aa65d5bdcad623da8201d673c0dc01882f64f4e0: Bump golang.org/x/sync from 0.5.0 to 0.6.0 (@dependabot[bot]) + * b38eb009f91caf205c981044bce259ba3f1fad6e: Fix change in buf setup action checksum (@JAORMX) + * cdcae14b4cc2f5e6431846a7105d0487bb65ee94: Merge pull request #56 from kranurag7/kr/add-version (@evankanderson) + * 0c8be2f04becfc5684ec5bce116b61a8430fbcc5: Merge pull request #58 from kranurag7/kr/add-ldflags-to-goreleaser (@JAORMX) + * 2f8ac5678fbdd8b9e404f19e03793023177f446e: Merge pull request #60 from kranurag7/kr/add-table-view (@JAORMX) + * c16d3d8bf2806eb145a9ec88cc3c7f6573f22406: Merge pull request #62 from stacklok/dependabot/go_modules/github.com/deckarep/golang-set/v2-2.6.0 (@JAORMX) + * 267f06efb7eb11ae805a6dbb231b19d68ec26c13: Merge pull request #63 from stacklok/Add-Issue-Templates (@JAORMX) + * 752763c1eb2e90413bf3a6140127dfca98923006: Merge pull request #64 from stacklok/dussab-patch-1 (@JAORMX) + * 601cd2a5eb0e7c88f9a4a4adc43acd7236c18fa7: Merge pull request #65 from stacklok/dependabot/github_actions/anchore/sbom-action-0.15.2 (@JAORMX) + * dcc8597eedf73cc48311bedc4c37e3618462452e: Merge pull request #66 from stacklok/dependabot/go_modules/golang.org/x/sync-0.6.0 (@JAORMX) + * bb5f5ca1f5b8018a1a88bee5dc1c27051a880de7: Merge pull request #68 from stacklok/dependabot/github_actions/anchore/sbom-action-0.15.3 (@JAORMX) + * 658aefee0c3222143daeedcbb15754094f8cef99: Merge pull request #69 from stacklok/dependabot/github_actions/actions/download-artifact-4.1.1 (@jhrozek) + * ad431ef9ca6f0756e8832b72969ba4176491594d: Merge pull request #71 from stacklok/dependabot/go_modules/github.com/google/go-containerregistry-0.18.0 (@JAORMX) + * deb14796dcd1952c8551d14d7ac71155e45d7e5f: Merge pull request #72 from stacklok/fix-tests (@JAORMX) + * 53e1131222d4fab8c04865510735c6838f5d1941: Merge pull request #73 from stacklok/dependabot/github_actions/actions/upload-artifact-4.2.0 (@JAORMX) + * 0e7ebea00a7498afb3e532c8fdeccf595f4365eb: Merge pull request #74 from stacklok/dependabot/github_actions/anchore/sbom-action-0.15.4 (@JAORMX) + * 5139f46d3ed06fe6afc35fdd39f9bbd9d90826bb: Merge pull request #75 from stacklok/dependabot/github_actions/anchore/sbom-action-0.15.5 (@JAORMX) + * 638935ee4a68d45957fd082d241ba4cf9a6e39d0: Merge pull request #76 from stacklok/dependabot/github_actions/actions/upload-artifact-4.3.0 (@JAORMX) + * b4a38b51ba5df674d06d271ab10173c90d51edb4: Merge pull request #78 from stacklok/ghactions-list-globals (@JAORMX) + * ba2ad40fcf45f53d775ca79160d17539ebba0f7a: Merge pull request #79 from stacklok/version-func (@JAORMX) + * f26584499f400caaa5cfa7e44e864e86358d28fe: Merge pull request #80 from stacklok/fix-tests-buf (@JAORMX) + * e2484ad7592c06c3d80704ceb7fef3b3a3819633: Merge pull request #81 from stacklok/dependabot/github_actions/anchore/sbom-action-0.15.6 (@JAORMX) + * 9f45214d28a481b3239ee93b2cd11638bc59ce98: Merge pull request #82 from stacklok/dependabot/go_modules/github.com/google/go-containerregistry-0.19.0 (@JAORMX) + * 4e1b94b64f53d7c5059267d0b8712a62f9b6beaa: Merge pull request #83 from stacklok/dependabot/github_actions/anchore/sbom-action-0.15.7 (@JAORMX) + * 96de37b700661f2934734490326f8fa0ab2a59f8: Remove globals from `ghactions list` subcommand (@JAORMX) + * af4a67dc73807fb17c7f8629b37766e6f863554b: Replace test container image references (@JAORMX) + * f5ac2c04ddae6297f8b770c6f2eb622a07f837bc: Update CONTRIBUTING.md (@dussab) + * 896ab714fdc3a1f14f2ca4bd52ac8c884841a3dc: Use version to return `version` sub-command (@JAORMX) + * 47e3a6f15b928fb9c4035c934de09b25054a9a41: add ldflags to goreleaser and releaser workflow (@kranurag7) + * 96e15d6a504762c9906172f166123a985b8e3b29: add table output for ghactions list subcommand (@kranurag7) + * 458173b0d0f1b6d565b395d8bc2a5dfa84ec6b1f: add version subcommand for frizbee (@kranurag7) +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/stacklok/frizbee/0.0.13/stacklok.frizbee.yaml b/manifests/s/stacklok/frizbee/0.0.13/stacklok.frizbee.yaml new file mode 100644 index 0000000000000..fc7f9b0ba905e --- /dev/null +++ b/manifests/s/stacklok/frizbee/0.0.13/stacklok.frizbee.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.5.0.schema.json +PackageIdentifier: stacklok.frizbee +PackageVersion: 0.0.13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/sylikc/JPEGView/1.1.41/sylikc.JPEGView.installer.yaml b/manifests/s/sylikc/JPEGView/1.1.41.0/sylikc.JPEGView.installer.yaml similarity index 89% rename from manifests/s/sylikc/JPEGView/1.1.41/sylikc.JPEGView.installer.yaml rename to manifests/s/sylikc/JPEGView/1.1.41.0/sylikc.JPEGView.installer.yaml index bc2be06597bec..2d50d07b5ca5b 100644 --- a/manifests/s/sylikc/JPEGView/1.1.41/sylikc.JPEGView.installer.yaml +++ b/manifests/s/sylikc/JPEGView/1.1.41.0/sylikc.JPEGView.installer.yaml @@ -2,11 +2,9 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json PackageIdentifier: sylikc.JPEGView -PackageVersion: 1.1.41 +PackageVersion: 1.1.41.0 InstallerLocale: en-US MinimumOSVersion: 10.0.0.0 -AppsAndFeaturesEntries: - - DisplayVersion: 1.1.41.0 Installers: - Architecture: x64 InstallerType: wix diff --git a/manifests/s/sylikc/JPEGView/1.1.41/sylikc.JPEGView.locale.en-US.yaml b/manifests/s/sylikc/JPEGView/1.1.41.0/sylikc.JPEGView.locale.en-US.yaml similarity index 95% rename from manifests/s/sylikc/JPEGView/1.1.41/sylikc.JPEGView.locale.en-US.yaml rename to manifests/s/sylikc/JPEGView/1.1.41.0/sylikc.JPEGView.locale.en-US.yaml index ebf389475e7ee..bb0be26141fa9 100644 --- a/manifests/s/sylikc/JPEGView/1.1.41/sylikc.JPEGView.locale.en-US.yaml +++ b/manifests/s/sylikc/JPEGView/1.1.41.0/sylikc.JPEGView.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json PackageIdentifier: sylikc.JPEGView -PackageVersion: 1.1.41 +PackageVersion: 1.1.41.0 PackageLocale: en-US Publisher: Kevin M (sylikc) PublisherUrl: https://github.com/sylikc/jpegview diff --git a/manifests/s/sylikc/JPEGView/1.1.43/sylikc.JPEGView.yaml b/manifests/s/sylikc/JPEGView/1.1.41.0/sylikc.JPEGView.yaml similarity index 87% rename from manifests/s/sylikc/JPEGView/1.1.43/sylikc.JPEGView.yaml rename to manifests/s/sylikc/JPEGView/1.1.41.0/sylikc.JPEGView.yaml index 5721c134b2ad5..25f5e41fd6a8a 100644 --- a/manifests/s/sylikc/JPEGView/1.1.43/sylikc.JPEGView.yaml +++ b/manifests/s/sylikc/JPEGView/1.1.41.0/sylikc.JPEGView.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json PackageIdentifier: sylikc.JPEGView -PackageVersion: 1.1.43 +PackageVersion: 1.1.41.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.2.0 diff --git a/manifests/s/sylikc/JPEGView/1.1.43/sylikc.JPEGView.installer.yaml b/manifests/s/sylikc/JPEGView/1.1.43.0/sylikc.JPEGView.installer.yaml similarity index 89% rename from manifests/s/sylikc/JPEGView/1.1.43/sylikc.JPEGView.installer.yaml rename to manifests/s/sylikc/JPEGView/1.1.43.0/sylikc.JPEGView.installer.yaml index 8cca37b4dc4a6..a02dc6852f67d 100644 --- a/manifests/s/sylikc/JPEGView/1.1.43/sylikc.JPEGView.installer.yaml +++ b/manifests/s/sylikc/JPEGView/1.1.43.0/sylikc.JPEGView.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json PackageIdentifier: sylikc.JPEGView -PackageVersion: 1.1.43 +PackageVersion: 1.1.43.0 InstallerLocale: en-US MinimumOSVersion: 10.0.0.0 FileExtensions: @@ -40,8 +40,6 @@ FileExtensions: - mrw - kdc - dcr -AppsAndFeaturesEntries: -- DisplayVersion: 1.1.43 Installers: - Architecture: x64 InstallerType: wix diff --git a/manifests/s/sylikc/JPEGView/1.1.43/sylikc.JPEGView.locale.en-US.yaml b/manifests/s/sylikc/JPEGView/1.1.43.0/sylikc.JPEGView.locale.en-US.yaml similarity index 95% rename from manifests/s/sylikc/JPEGView/1.1.43/sylikc.JPEGView.locale.en-US.yaml rename to manifests/s/sylikc/JPEGView/1.1.43.0/sylikc.JPEGView.locale.en-US.yaml index 25d61f904d564..971e552b35200 100644 --- a/manifests/s/sylikc/JPEGView/1.1.43/sylikc.JPEGView.locale.en-US.yaml +++ b/manifests/s/sylikc/JPEGView/1.1.43.0/sylikc.JPEGView.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json PackageIdentifier: sylikc.JPEGView -PackageVersion: 1.1.43 +PackageVersion: 1.1.43.0 PackageLocale: en-US Publisher: Kevin M (sylikc) PublisherUrl: https://github.com/sylikc/ diff --git a/manifests/s/sylikc/JPEGView/1.1.41/sylikc.JPEGView.yaml b/manifests/s/sylikc/JPEGView/1.1.43.0/sylikc.JPEGView.yaml similarity index 87% rename from manifests/s/sylikc/JPEGView/1.1.41/sylikc.JPEGView.yaml rename to manifests/s/sylikc/JPEGView/1.1.43.0/sylikc.JPEGView.yaml index a7b813989c4e9..c58dc6b24c04b 100644 --- a/manifests/s/sylikc/JPEGView/1.1.41/sylikc.JPEGView.yaml +++ b/manifests/s/sylikc/JPEGView/1.1.43.0/sylikc.JPEGView.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json PackageIdentifier: sylikc.JPEGView -PackageVersion: 1.1.41 +PackageVersion: 1.1.43.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.2.0 diff --git a/manifests/s/sylikc/JPEGView/1.2.45/sylikc.JPEGView.installer.yaml b/manifests/s/sylikc/JPEGView/1.2.45.0/sylikc.JPEGView.installer.yaml similarity index 89% rename from manifests/s/sylikc/JPEGView/1.2.45/sylikc.JPEGView.installer.yaml rename to manifests/s/sylikc/JPEGView/1.2.45.0/sylikc.JPEGView.installer.yaml index 0da619f4d125e..5b510a828f489 100644 --- a/manifests/s/sylikc/JPEGView/1.2.45/sylikc.JPEGView.installer.yaml +++ b/manifests/s/sylikc/JPEGView/1.2.45.0/sylikc.JPEGView.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json PackageIdentifier: sylikc.JPEGView -PackageVersion: 1.2.45 +PackageVersion: 1.2.45.0 InstallerLocale: en-US MinimumOSVersion: 10.0.0.0 FileExtensions: @@ -40,8 +40,6 @@ FileExtensions: - mrw - kdc - dcr -AppsAndFeaturesEntries: -- DisplayVersion: 1.2.45 Installers: - Architecture: x64 InstallerType: wix diff --git a/manifests/s/sylikc/JPEGView/1.2.45/sylikc.JPEGView.locale.en-US.yaml b/manifests/s/sylikc/JPEGView/1.2.45.0/sylikc.JPEGView.locale.en-US.yaml similarity index 95% rename from manifests/s/sylikc/JPEGView/1.2.45/sylikc.JPEGView.locale.en-US.yaml rename to manifests/s/sylikc/JPEGView/1.2.45.0/sylikc.JPEGView.locale.en-US.yaml index 6ed567eafa6c7..d7beb567599b8 100644 --- a/manifests/s/sylikc/JPEGView/1.2.45/sylikc.JPEGView.locale.en-US.yaml +++ b/manifests/s/sylikc/JPEGView/1.2.45.0/sylikc.JPEGView.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json PackageIdentifier: sylikc.JPEGView -PackageVersion: 1.2.45 +PackageVersion: 1.2.45.0 PackageLocale: en-US Publisher: Kevin M (sylikc) PublisherUrl: https://github.com/sylikc/ diff --git a/manifests/s/sylikc/JPEGView/1.2.45/sylikc.JPEGView.yaml b/manifests/s/sylikc/JPEGView/1.2.45.0/sylikc.JPEGView.yaml similarity index 87% rename from manifests/s/sylikc/JPEGView/1.2.45/sylikc.JPEGView.yaml rename to manifests/s/sylikc/JPEGView/1.2.45.0/sylikc.JPEGView.yaml index 583fc4d99cbfa..5910beeea40d5 100644 --- a/manifests/s/sylikc/JPEGView/1.2.45/sylikc.JPEGView.yaml +++ b/manifests/s/sylikc/JPEGView/1.2.45.0/sylikc.JPEGView.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json PackageIdentifier: sylikc.JPEGView -PackageVersion: 1.2.45 +PackageVersion: 1.2.45.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.4.0 diff --git a/manifests/s/sylikc/JPEGView/1.3.46.0/sylikc.JPEGView.installer.yaml b/manifests/s/sylikc/JPEGView/1.3.46.0/sylikc.JPEGView.installer.yaml new file mode 100644 index 0000000000000..dcf6909fcf8cc --- /dev/null +++ b/manifests/s/sylikc/JPEGView/1.3.46.0/sylikc.JPEGView.installer.yaml @@ -0,0 +1,54 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: sylikc.JPEGView +PackageVersion: 1.3.46.0 +InstallerLocale: en-US +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +FileExtensions: +- jpeg +- jpg +- gif +- bmp +- png +- tif +- tiff +- webp +- jxl +- heif +- heic +- avif +- tga +- wdp +- hdp +- jxr +- raw +- ico +- wic +- dng +- crw +- cr2 +- nef +- nrw +- arw +- sr2 +- orf +- rw2 +- raf +- x3f +- pef +- mrw +- kdc +- dcr +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/sylikc/jpegview/releases/download/v1.3.46/JPEGView64_en-us_1.3.46.msi + InstallerSha256: 3108A85B5D408FA17027B25454F0EE7E7B450E680DBC1DAB68D26D9099E18BF2 + ProductCode: '{9B512822-E3B5-4D72-8CE2-61544D75463C}' +- Architecture: x86 + InstallerUrl: https://github.com/sylikc/jpegview/releases/download/v1.3.46/JPEGView32_en-us_1.3.46.msi + InstallerSha256: 842A864AD7F26054AA86AED556A56EEA129A1F9D958E6F96E983DF899A2D1A9A + ProductCode: '{8C6FBD31-4EF3-44E7-B3C7-5069A74E144D}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/sylikc/JPEGView/1.3.46.0/sylikc.JPEGView.locale.en-US.yaml b/manifests/s/sylikc/JPEGView/1.3.46.0/sylikc.JPEGView.locale.en-US.yaml new file mode 100644 index 0000000000000..f34e904090062 --- /dev/null +++ b/manifests/s/sylikc/JPEGView/1.3.46.0/sylikc.JPEGView.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: sylikc.JPEGView +PackageVersion: 1.3.46.0 +PackageLocale: en-US +Publisher: Kevin M (sylikc) +PublisherUrl: https://github.com/sylikc/ +PublisherSupportUrl: https://github.com/sylikc/jpegview/issues +Author: Kevin M (sylikc) +PackageName: JPEGView +PackageUrl: https://github.com/sylikc/jpegview +License: GPLv2 +LicenseUrl: https://github.com/sylikc/jpegview/blob/master/LICENSE.txt +Copyright: |- + Copyright (C) 2020-2023 Kevin M (sylikc) + Copyright (C) 2006-2018 David Kleiner (dkleiner) +CopyrightUrl: https://github.com/sylikc/jpegview/blob/master/LICENSE.txt +ShortDescription: JPEGView is a lean, fast and highly configurable viewer/editor for JPEG, BMP, PNG, WEBP, TGA, GIF, JXL, HEIC, HEIF, AVIF and TIFF images with a minimal GUI. Basic on-the-fly image processing is provided. +Moniker: jpegview +Tags: +- editor +- foss +- image +- images +- image-editor +- image-processing +- image-viewer +- image-viewers +- open-source +- photo +- photos +- photo-editor +- picture +- viewer +- viewers +ReleaseNotesUrl: https://github.com/sylikc/jpegview/releases/tag/v1.3.46 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/sylikc/JPEGView/1.3.46.0/sylikc.JPEGView.yaml b/manifests/s/sylikc/JPEGView/1.3.46.0/sylikc.JPEGView.yaml new file mode 100644 index 0000000000000..212ff32b747f6 --- /dev/null +++ b/manifests/s/sylikc/JPEGView/1.3.46.0/sylikc.JPEGView.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: sylikc.JPEGView +PackageVersion: 1.3.46.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/Taiko2k/TauonMusicBox/7.7.0/Taiko2k.TauonMusicBox.installer.yaml b/manifests/t/Taiko2k/TauonMusicBox/7.7.0/Taiko2k.TauonMusicBox.installer.yaml new file mode 100644 index 0000000000000..f5b07ee15e641 --- /dev/null +++ b/manifests/t/Taiko2k/TauonMusicBox/7.7.0/Taiko2k.TauonMusicBox.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Taiko2k.TauonMusicBox +PackageVersion: 7.7.0 +InstallerLocale: en-US +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: uninstallPrevious +FileExtensions: +- flac +- mp3 +- ogg +- wav +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Taiko2k/TauonMusicBox/releases/download/v7.7.0/TauonMusicBox.v7.7.0-1.x64.exe + InstallerSha256: 78D3EB7D319582DD48DAA5388608DECF46F4D714C5BD688F5E65C97EC0BF4C8E +ManifestType: installer +ManifestVersion: 1.5.0 +ReleaseDate: 2023-11-16 diff --git a/manifests/t/Taiko2k/TauonMusicBox/7.7.0/Taiko2k.TauonMusicBox.locale.en-US.yaml b/manifests/t/Taiko2k/TauonMusicBox/7.7.0/Taiko2k.TauonMusicBox.locale.en-US.yaml new file mode 100644 index 0000000000000..7ee91eed3ddad --- /dev/null +++ b/manifests/t/Taiko2k/TauonMusicBox/7.7.0/Taiko2k.TauonMusicBox.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Taiko2k.TauonMusicBox +PackageVersion: 7.7.0 +PackageLocale: en-US +Publisher: Taiko2k +PublisherUrl: https://github.com/Taiko2k +Author: Taiko2k +PackageName: Tauon Music Box +PackageUrl: https://tauonmusicbox.rocks/ +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/Taiko2k/TauonMusicBox/master/LICENSE +ShortDescription: The desktop music player from the future! +Moniker: tauon-music-box +Tags: +- audio +- audio-player +- cross-platform +- music +- music-player +- open-source +ReleaseNotesUrl: https://github.com/Taiko2k/TauonMusicBox/releases/tag/v7.7.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/Taiko2k/TauonMusicBox/7.7.0/Taiko2k.TauonMusicBox.yaml b/manifests/t/Taiko2k/TauonMusicBox/7.7.0/Taiko2k.TauonMusicBox.yaml new file mode 100644 index 0000000000000..32da2af336b96 --- /dev/null +++ b/manifests/t/Taiko2k/TauonMusicBox/7.7.0/Taiko2k.TauonMusicBox.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Taiko2k.TauonMusicBox +PackageVersion: 7.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/Telegram/TelegramDesktop/4.14.12/Telegram.TelegramDesktop.installer.yaml b/manifests/t/Telegram/TelegramDesktop/4.14.12/Telegram.TelegramDesktop.installer.yaml new file mode 100644 index 0000000000000..6ebd973aa0598 --- /dev/null +++ b/manifests/t/Telegram/TelegramDesktop/4.14.12/Telegram.TelegramDesktop.installer.yaml @@ -0,0 +1,44 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Telegram.TelegramDesktop +PackageVersion: 4.14.12 +Platform: +- Windows.Desktop +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Protocols: +- tg +ReleaseDate: 2024-02-01 +Installers: +- Architecture: x64 + InstallerType: inno + Scope: user + InstallerUrl: https://github.com/telegramdesktop/tdesktop/releases/download/v4.14.12/tsetup-x64.4.14.12.exe + InstallerSha256: 8976BEBA2E0CF306F3E7107D431118C5D0E74689AA38A4E3884BFBC19C43DC4B +- Architecture: x86 + InstallerType: inno + Scope: user + InstallerUrl: https://github.com/telegramdesktop/tdesktop/releases/download/v4.14.12/tsetup.4.14.12.exe + InstallerSha256: 7EB767B81AB6E00979D463BD37061A2D1BF840BDC597AA303C587F28104CCB33 +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Telegram\Telegram.exe + PortableCommandAlias: telegram + InstallerUrl: https://github.com/telegramdesktop/tdesktop/releases/download/v4.14.12/tportable-x64.4.14.12.zip + InstallerSha256: 26DACB90A936F9A7F6697590072605E18C7D185B43F89E68BBEDF7700ADAA69F +- Architecture: x86 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Telegram\Telegram.exe + PortableCommandAlias: telegram + InstallerUrl: https://github.com/telegramdesktop/tdesktop/releases/download/v4.14.12/tportable.4.14.12.zip + InstallerSha256: 79C29C817223A1B51D34C1093C4A6F4A88282467779FAECD635F7EEBCC8D7DEF +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/Telegram/TelegramDesktop/4.14.12/Telegram.TelegramDesktop.locale.en-US.yaml b/manifests/t/Telegram/TelegramDesktop/4.14.12/Telegram.TelegramDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..a016f2d4cd6d7 --- /dev/null +++ b/manifests/t/Telegram/TelegramDesktop/4.14.12/Telegram.TelegramDesktop.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Telegram.TelegramDesktop +PackageVersion: 4.14.12 +PackageLocale: en-US +Publisher: Telegram FZ-LLC +PublisherUrl: https://telegram.org +PublisherSupportUrl: https://telegram.org/support +PrivacyUrl: https://telegram.org/privacy +Author: Telegram FZ-LLC +PackageName: Telegram Desktop +PackageUrl: https://desktop.telegram.org +License: GNU-3.0-only +LicenseUrl: https://raw.githubusercontent.com/telegramdesktop/tdesktop/master/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/telegramdesktop/tdesktop/master/LICENSE +ShortDescription: Telegram is a cloud-based mobile and desktop messaging app with a focus on security and speed. +Tags: +- chat +- messaging +- messenger +ReleaseNotes: |- + - Tags in Saved Messages. + - Audio output device selection for music and videos. + - Audio input device selection for voice messages recording. + - Default device changes should be applied instantly. (Windows / macOS) +ReleaseNotesUrl: https://github.com/telegramdesktop/tdesktop/releases/tag/v4.14.12 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/Telegram/TelegramDesktop/4.14.12/Telegram.TelegramDesktop.yaml b/manifests/t/Telegram/TelegramDesktop/4.14.12/Telegram.TelegramDesktop.yaml new file mode 100644 index 0000000000000..9ace34da00a69 --- /dev/null +++ b/manifests/t/Telegram/TelegramDesktop/4.14.12/Telegram.TelegramDesktop.yaml @@ -0,0 +1,8 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Telegram.TelegramDesktop +PackageVersion: 4.14.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.installer.yaml b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.installer.yaml index bebdf34921ba4..6e3666b317bde 100644 --- a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.installer.yaml +++ b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Feb/01 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json PackageIdentifier: Tencent.ArtHub diff --git a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.en-US.yaml b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.en-US.yaml index 9fe5395284905..6ddc162eeb368 100644 --- a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.en-US.yaml +++ b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Feb/01 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json PackageIdentifier: Tencent.ArtHub diff --git a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.zh-CN.yaml b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.zh-CN.yaml index 047f6549169ce..2506ecbffebc9 100644 --- a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.zh-CN.yaml +++ b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Feb/01 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json PackageIdentifier: Tencent.ArtHub diff --git a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.yaml b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.yaml index 7a158ae28a974..2e6d4490c9f23 100644 --- a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.yaml +++ b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/30 +# Automatically updated by the winget bot at 2024/Feb/01 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json PackageIdentifier: Tencent.ArtHub diff --git a/manifests/t/Tencent/QQ/NT/9.9.7.21217/Tencent.QQ.NT.installer.yaml b/manifests/t/Tencent/QQ/NT/9.9.7.21217/Tencent.QQ.NT.installer.yaml new file mode 100644 index 0000000000000..2f4398ac6cfe7 --- /dev/null +++ b/manifests/t/Tencent/QQ/NT/9.9.7.21217/Tencent.QQ.NT.installer.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Tencent.QQ.NT +PackageVersion: 9.9.7.21217 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /s + SilentWithProgress: /s +UpgradeBehavior: install +Protocols: +- ntqq-notification +- tencent +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + InstallerUrl: https://dldir1v6.qq.com/qqfile/qq/QQNT/bc30fb5d/QQ9.9.7.21217_x86.exe + InstallerSha256: 1BD65181E0693FF4029F2B0192EF5B9103454C3198CEC21F53FB9FE248D1EB98 + ProductCode: QQ +- Architecture: x64 + InstallerUrl: https://dldir1v6.qq.com/qqfile/qq/QQNT/6bc644ae/QQ9.9.7.21217_x64.exe + InstallerSha256: C80601350F7582FC759494AD6755B65A1A87A5DBCAA7D53AD308FFABE408D542 + ProductCode: QQ +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tencent/QQ/NT/9.9.7.21217/Tencent.QQ.NT.locale.en-US.yaml b/manifests/t/Tencent/QQ/NT/9.9.7.21217/Tencent.QQ.NT.locale.en-US.yaml new file mode 100644 index 0000000000000..9dcc8b2d475ba --- /dev/null +++ b/manifests/t/Tencent/QQ/NT/9.9.7.21217/Tencent.QQ.NT.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Tencent.QQ.NT +PackageVersion: 9.9.7.21217 +PackageLocale: en-US +Publisher: Tencent +PublisherUrl: https://im.qq.com/ +PublisherSupportUrl: https://support.qq.com/products/36086 +PrivacyUrl: https://docs.qq.com/doc/p/74d994d528f8255e6c8e39d10932aaa7cf7cb467?dver=2.1.27262305 +Author: Shenzhen Tencent Computer Systems Company Limited +PackageName: QQ +PackageUrl: https://im.qq.com/pcqq/index.shtml +License: Proprietary +LicenseUrl: https://rule.tencent.com/rule/46a15f24-e42c-4cb6-a308-2347139b1201 +Copyright: Copyright © 1999-2024 Tencent. All Rights Reserved. +CopyrightUrl: https://www.tencent.com/en-us/statement.html +ShortDescription: An instant messaging tool that gives you the best way to keep in touch with your friends and family +Description: Tencent QQ is an instant messaging software used by 800 million people. You can not only chat and make friends through QQ on various devices, but also make free video and voice calls, and send and receive important files anytime, anywhere. +Moniker: qqnt +Tags: +- call +- chat +- friends +- im +- instant-messaging +- message +- send +- share +- talk +- voice +# ReleaseNotes: +ReleaseNotesUrl: https://im.qq.com/pcqq/support.html +PurchaseUrl: https://vip.qq.com/ +# InstallationNotes: +Documentations: +- DocumentLabel: Help + DocumentUrl: https://kf.qq.com/product/QQ.html +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tencent/QQ/NT/9.9.7.21217/Tencent.QQ.NT.locale.zh-CN.yaml b/manifests/t/Tencent/QQ/NT/9.9.7.21217/Tencent.QQ.NT.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c629be1c6d30d --- /dev/null +++ b/manifests/t/Tencent/QQ/NT/9.9.7.21217/Tencent.QQ.NT.locale.zh-CN.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Tencent.QQ.NT +PackageVersion: 9.9.7.21217 +PackageLocale: zh-CN +Publisher: Tencent +PublisherUrl: https://im.qq.com/ +PublisherSupportUrl: https://support.qq.com/products/36086 +PrivacyUrl: https://docs.qq.com/doc/p/74d994d528f8255e6c8e39d10932aaa7cf7cb467?dver=2.1.27262305 +Author: 深圳市腾讯计算机系统有限公司 +PackageName: QQ +PackageUrl: https://im.qq.com/pcqq/index.shtml +License: 专有软件 +LicenseUrl: https://rule.tencent.com/rule/46a15f24-e42c-4cb6-a308-2347139b1201 +Copyright: Copyright © 1999-2024 Tencent. All Rights Reserved. +CopyrightUrl: https://www.tencent.com/zh-cn/statement.html +ShortDescription: 一款能让你与你的朋友和家人保持联系的即时通讯工具 +Description: 腾讯 QQ,8 亿人在用的即时通讯软件。你不仅可以在各类通讯终端上通过 QQ 聊天交友,还能进行免费的视频、语音通话,或者随时随地收发重要文件。 +# Moniker: +Tags: +- 信息 +- 共享 +- 分享 +- 发送 +- 好友 +- 朋友 +- 消息 +- 电话 +- 聊天 +- 语音 +- 通话 +# ReleaseNotes: +ReleaseNotesUrl: https://im.qq.com/pcqq/support.html +PurchaseUrl: https://vip.qq.com +# InstallationNotes: +Documentations: +- DocumentLabel: 使用帮助 + DocumentUrl: https://kf.qq.com/product/QQ.html +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tencent/QQ/NT/9.9.7.21217/Tencent.QQ.NT.yaml b/manifests/t/Tencent/QQ/NT/9.9.7.21217/Tencent.QQ.NT.yaml new file mode 100644 index 0000000000000..9526cb4a06e65 --- /dev/null +++ b/manifests/t/Tencent/QQ/NT/9.9.7.21217/Tencent.QQ.NT.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Tencent.QQ.NT +PackageVersion: 9.9.7.21217 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tencent/TencentVideo/11.87.4624.0/Tencent.TencentVideo.installer.yaml b/manifests/t/Tencent/TencentVideo/11.87.4624.0/Tencent.TencentVideo.installer.yaml new file mode 100644 index 0000000000000..fbc000cad3f9f --- /dev/null +++ b/manifests/t/Tencent/TencentVideo/11.87.4624.0/Tencent.TencentVideo.installer.yaml @@ -0,0 +1,70 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Tencent.TencentVideo +PackageVersion: 11.87.4624.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Custom: /RQ=0 +UpgradeBehavior: install +Protocols: +- qqlive +- qqtv +FileExtensions: +- 3g2 +- 3gp +- aac +- ac3 +- amr +- ape +- asf +- avi +- cpk +- dat +- dirac +- div +- divx +- dv +- f4v +- flc +- fli +- flv +- lac +- lavf +- m2t +- m4a +- m4r +- m4v +- mkv +- mmf +- mod +- mov +- mp2 +- mp3 +- mp4 +- mpe +- mpeg +- mpg +- ogg +- qlv +- qt +- ram +- rm +- rmvb +- swf +- ts +- vob +- wav +- webm +- wma +- wmv +- wv +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + InstallerUrl: https://dldir1v6.qq.com/qqtv/TencentVideo11.87.4624.0.exe + InstallerSha256: FDCF92023B2D28AA27BA172F0C46B33B216942ABF9F871DCA73B7DBD5CCC9762 + ProductCode: qqlive +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tencent/TencentVideo/11.87.4624.0/Tencent.TencentVideo.locale.en-US.yaml b/manifests/t/Tencent/TencentVideo/11.87.4624.0/Tencent.TencentVideo.locale.en-US.yaml new file mode 100644 index 0000000000000..aaaefe096b514 --- /dev/null +++ b/manifests/t/Tencent/TencentVideo/11.87.4624.0/Tencent.TencentVideo.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Tencent.TencentVideo +PackageVersion: 11.87.4624.0 +PackageLocale: en-US +Publisher: 腾讯科技(深圳)有限公司 +PublisherUrl: https://v.qq.com/ +PublisherSupportUrl: https://support.qq.com/products/4216/ +PrivacyUrl: https://privacy.qq.com/document/preview/3fab9c7fc1424ebda42c3ce488322c8a +Author: Shenzhen Tencent Computer Systems Company Limited +PackageName: 腾讯视频 +PackageUrl: https://v.qq.com/biu/download +License: Proprietary +LicenseUrl: https://m.v.qq.com/about/privacy.html +Copyright: Copyright © 2005 - 2024 Tencent. All Rights Reserved +CopyrightUrl: https://www.tencent.com/en-us/statement.html +ShortDescription: China's leading online streaming platform that offers unlimited HD videos for watching online +Description: Tencent Video is committed to building China's leading online streaming platform that primarily meets users' needs for watching video online through product features including rich content library, ultimate watching experience, convenient login method, seamless all-day multi-platform experience and quick sharing. +Moniker: qqlive +Tags: +- animation +- anime +- cartoon +- documentary +- donghua +- film +- media +- movie +- multimedia +- player +- serial +- series +- show +- video +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://film.qq.com/ +# InstallationNotes: +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://support.qq.com/products/4216/faqs-more/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tencent/TencentVideo/11.87.4624.0/Tencent.TencentVideo.locale.zh-CN.yaml b/manifests/t/Tencent/TencentVideo/11.87.4624.0/Tencent.TencentVideo.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a58062829be2e --- /dev/null +++ b/manifests/t/Tencent/TencentVideo/11.87.4624.0/Tencent.TencentVideo.locale.zh-CN.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Tencent.TencentVideo +PackageVersion: 11.87.4624.0 +PackageLocale: zh-CN +Publisher: 腾讯科技(深圳)有限公司 +PublisherUrl: https://v.qq.com/ +PublisherSupportUrl: https://support.qq.com/products/4216/ +PrivacyUrl: https://privacy.qq.com/document/preview/3fab9c7fc1424ebda42c3ce488322c8a +Author: 深圳市腾讯计算机系统有限公司 +PackageName: 腾讯视频 +PackageUrl: https://v.qq.com/biu/download +License: 专有软件 +LicenseUrl: https://m.v.qq.com/about/privacy.html +Copyright: Copyright © 2005 - 2024 Tencent. All Rights Reserved 腾讯公司 版权所有 +CopyrightUrl: https://www.tencent.com/zh-cn/statement.html +ShortDescription: 中国领先的在线视频媒体平台,海量高清视频在线观看 +Description: 腾讯视频致力于打造中国领先的在线视频媒体平台,以丰富的内容、极致的观看体验、便捷的登录方式、24 小时多平台无缝应用体验以及快捷分享的产品特性,主要满足用户在线观看视频的需求。 +# Moniker: +Tags: +- 动漫 +- 动画 +- 卡通 +- 多媒体 +- 媒体 +- 少儿 +- 影音 +- 播放器 +- 电影 +- 电视剧 +- 视频 +- 纪录片 +- 综艺 +- 连续剧 +ReleaseNotes: '- 桌面迷你模式,让追剧触手可及;新版导航样式,频道切换更方便;频道页面全新改版,沉浸式找片更高效;首页增加我的在追,常看影片续看更方便;近期热播好剧,升级观看体验更佳' +# ReleaseNotesUrl: +PurchaseUrl: https://film.qq.com/ +# InstallationNotes: +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://support.qq.com/products/4216/faqs-more/ +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tencent/TencentVideo/11.87.4624.0/Tencent.TencentVideo.yaml b/manifests/t/Tencent/TencentVideo/11.87.4624.0/Tencent.TencentVideo.yaml new file mode 100644 index 0000000000000..3d205abb2f82a --- /dev/null +++ b/manifests/t/Tencent/TencentVideo/11.87.4624.0/Tencent.TencentVideo.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Tencent.TencentVideo +PackageVersion: 11.87.4624.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/24.2.0.3/TheDocumentFoundation.LibreOffice.installer.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/24.2.0.3/TheDocumentFoundation.LibreOffice.installer.yaml new file mode 100644 index 0000000000000..7b05702cfcded --- /dev/null +++ b/manifests/t/TheDocumentFoundation/LibreOffice/24.2.0.3/TheDocumentFoundation.LibreOffice.installer.yaml @@ -0,0 +1,58 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: TheDocumentFoundation.LibreOffice +PackageVersion: 24.2.0.3 +InstallerLocale: en-US +InstallerType: msi +Scope: machine +InstallerSwitches: + Custom: /norestart +UpgradeBehavior: install +FileExtensions: +- csv +- doc +- docx +- htm +- html +- mml +- odb +- odg +- odp +- ods +- odt +- otg +- oth +- otp +- ots +- ott +- pps +- ppsx +- ppt +- pptx +- svg +- sxm +- wps +- xhtml +- xls +- xlsb +- xlsx +ReleaseDate: 2024-01-29 +AppsAndFeaturesEntries: +- DisplayName: LibreOffice 24.2.0.3 + UpgradeCode: '{4B17E523-5D91-4E69-BD96-7FD81CFA81BB}' +Installers: +- Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/24.2.0.3/win/x86/LibreOffice_24.2.0.3_Win_x86.msi + InstallerSha256: 2D5F64647BB67BBE0393F774C29F83EFF65241C4F89719057075097F30FF76CE + ProductCode: '{18A8D4E2-C6ED-4F1D-92A4-115AA9DEA86C}' +- Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/24.2.0.3/win/x86_64/LibreOffice_24.2.0.3_Win_x86-64.msi + InstallerSha256: 58DCF13D87EF1279F7229B69949B836B73CE5F039DDB54CDF091F8FEA28CC9F2 + ProductCode: '{5A433714-C509-4707-BF0C-410D3FBCE8B3}' +- Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/24.2.0.3/win/aarch64/LibreOffice_24.2.0.3_Win_aarch64.msi + InstallerSha256: 0EB0CFA8183DB4003FE361075D707C246CCB1E1D9EA0B5302DEABD3DF26E27B4 + ProductCode: '{9CD47972-BA9D-4B71-9459-AD30FCADDD05}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/24.2.0.3/TheDocumentFoundation.LibreOffice.locale.en-US.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/24.2.0.3/TheDocumentFoundation.LibreOffice.locale.en-US.yaml new file mode 100644 index 0000000000000..2c80e78218c6c --- /dev/null +++ b/manifests/t/TheDocumentFoundation/LibreOffice/24.2.0.3/TheDocumentFoundation.LibreOffice.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: TheDocumentFoundation.LibreOffice +PackageVersion: 24.2.0.3 +PackageLocale: en-US +Publisher: The Document Foundation +PublisherUrl: https://www.documentfoundation.org/ +PublisherSupportUrl: https://www.documentfoundation.org/gethelp/support/ +PrivacyUrl: https://www.libreoffice.org/about-us/privacy/privacy-policy-en/ +Author: The Document Foundation +PackageName: LibreOffice +PackageUrl: https://www.libreoffice.org/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.libreoffice.org/about-us/licenses +ShortDescription: LibreOffice is a free and powerful office suite, and a successor to OpenOffice.org (commonly known as OpenOffice). Its clean interface and feature-rich tools help you unleash your creativity and enhance your productivity. +Moniker: libreoffice +Tags: +- access +- excel +- libreoffice +- odf +- openoffice +- powerpoint +- ppt +- word +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/24.2.0.3/TheDocumentFoundation.LibreOffice.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/24.2.0.3/TheDocumentFoundation.LibreOffice.yaml new file mode 100644 index 0000000000000..54bf116d1ac06 --- /dev/null +++ b/manifests/t/TheDocumentFoundation/LibreOffice/24.2.0.3/TheDocumentFoundation.LibreOffice.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: TheDocumentFoundation.LibreOffice +PackageVersion: 24.2.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/TheZDaemonTeam/ZDaemon/1.10.24/TheZDaemonTeam.ZDaemon.installer.yaml b/manifests/t/TheZDaemonTeam/ZDaemon/1.10.24/TheZDaemonTeam.ZDaemon.installer.yaml new file mode 100644 index 0000000000000..0594677b1ea66 --- /dev/null +++ b/manifests/t/TheZDaemonTeam/ZDaemon/1.10.24/TheZDaemonTeam.ZDaemon.installer.yaml @@ -0,0 +1,14 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: TheZDaemonTeam.ZDaemon +PackageVersion: 1.10.24 +InstallerType: nullsoft +UpgradeBehavior: install +ReleaseDate: 2023-12-05 +Installers: +- Architecture: x86 + InstallerUrl: https://downloads.zdaemon.org/zdaemon11024-setup.exe + InstallerSha256: 9446EC854F5CFB088E74B875F5B5A902CF1343112DDEF8E1624A134B217EC76C +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/TheZDaemonTeam/ZDaemon/1.10.24/TheZDaemonTeam.ZDaemon.locale.en-US.yaml b/manifests/t/TheZDaemonTeam/ZDaemon/1.10.24/TheZDaemonTeam.ZDaemon.locale.en-US.yaml new file mode 100644 index 0000000000000..acd852066f536 --- /dev/null +++ b/manifests/t/TheZDaemonTeam/ZDaemon/1.10.24/TheZDaemonTeam.ZDaemon.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: TheZDaemonTeam.ZDaemon +PackageVersion: 1.10.24 +PackageLocale: en-US +Publisher: The ZDaemon Team +PackageName: ZDaemon +License: Doom Source License +ShortDescription: ZDaemon is a multiplayer-focused source port based on ZDoom for both Windows. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/TheZDaemonTeam/ZDaemon/1.10.24/TheZDaemonTeam.ZDaemon.yaml b/manifests/t/TheZDaemonTeam/ZDaemon/1.10.24/TheZDaemonTeam.ZDaemon.yaml new file mode 100644 index 0000000000000..4daba7ddc7566 --- /dev/null +++ b/manifests/t/TheZDaemonTeam/ZDaemon/1.10.24/TheZDaemonTeam.ZDaemon.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: TheZDaemonTeam.ZDaemon +PackageVersion: 1.10.24 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/1.4.0/TravisLane.SteamArtManager.installer.yaml b/manifests/t/TravisLane/SteamArtManager/1.4.0/TravisLane.SteamArtManager.installer.yaml new file mode 100644 index 0000000000000..4b7644434fb26 --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/1.4.0/TravisLane.SteamArtManager.installer.yaml @@ -0,0 +1,21 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 1.4.0 +InstallerLocale: en-US +InstallerType: wix +UpgradeBehavior: install +ProductCode: '{C2FC4993-2AFE-466E-A4CA-6628925B507E}' +ReleaseDate: 2023-04-04 +AppsAndFeaturesEntries: +- UpgradeCode: '{728C60C1-38C9-5878-A895-495AD8F0727F}' +Dependencies: + PackageDependencies: + - PackageIdentifier: Valve.Steam +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Tormak9970/Steam-Art-Manager/releases/download/v1.4.0/Steam.Art.Manager_1.4.0_x64_en-US.msi + InstallerSha256: 4D6F6CD0EE5C80D057718AA8648B71FAFEEC76B1764867DCCEFF16EE5D0356BC +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/1.4.0/TravisLane.SteamArtManager.locale.en-US.yaml b/manifests/t/TravisLane/SteamArtManager/1.4.0/TravisLane.SteamArtManager.locale.en-US.yaml new file mode 100644 index 0000000000000..d065761ad8454 --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/1.4.0/TravisLane.SteamArtManager.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 1.4.0 +PackageLocale: en-US +Publisher: tormak +PublisherUrl: https://github.com/Tormak9970 +PublisherSupportUrl: https://github.com/Tormak9970/Steam-Art-Manager/issues +Author: Travis Lane +PackageName: Steam Art Manager +PackageUrl: https://github.com/Tormak9970/Steam-Art-Manager +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/Tormak9970/Steam-Art-Manager/main/LICENSE +Copyright: Copyright Travis Lane (Tormak) +CopyrightUrl: https://github.com/Tormak9970/Steam-Art-Manager/blob/main/README.md#licensing +ShortDescription: A tool for setting the artwork of your Steam library. +ReleaseNotes: |- + - fix: log_to_file was getting called before clean (0f60341) + - fix: no longer logging before log is cleared (2bad2c5) + - fix: removed broad scope for assets and fs (9c8ad7f) + - fix: worked on linux logging issues (63c1117) +ReleaseNotesUrl: https://github.com/Tormak9970/Steam-Art-Manager/releases/tag/v1.4.0 +Documentations: +- DocumentUrl: https://github.com/Tormak9970/Steam-Art-Manager/blob/main/README.md +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/1.4.0/TravisLane.SteamArtManager.yaml b/manifests/t/TravisLane/SteamArtManager/1.4.0/TravisLane.SteamArtManager.yaml new file mode 100644 index 0000000000000..9bf290be81970 --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/1.4.0/TravisLane.SteamArtManager.yaml @@ -0,0 +1,8 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 1.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/1.4.3/TravisLane.SteamArtManager.installer.yaml b/manifests/t/TravisLane/SteamArtManager/1.4.3/TravisLane.SteamArtManager.installer.yaml new file mode 100644 index 0000000000000..4f4f38427d82f --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/1.4.3/TravisLane.SteamArtManager.installer.yaml @@ -0,0 +1,21 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 1.4.3 +InstallerLocale: en-US +InstallerType: wix +UpgradeBehavior: install +ProductCode: '{9B972328-7F67-4233-9C76-72D1C78F3A12}' +ReleaseDate: 2023-04-06 +AppsAndFeaturesEntries: +- UpgradeCode: '{728C60C1-38C9-5878-A895-495AD8F0727F}' +Dependencies: + PackageDependencies: + - PackageIdentifier: Valve.Steam +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Tormak9970/Steam-Art-Manager/releases/download/v1.4.3/Steam.Art.Manager_1.4.3_x64_en-US.msi + InstallerSha256: 29852A6FBBF38B3C6AB64AB8369A216E5ED62ABD96DCFEFF1631287A4B7F0600 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/1.4.3/TravisLane.SteamArtManager.locale.en-US.yaml b/manifests/t/TravisLane/SteamArtManager/1.4.3/TravisLane.SteamArtManager.locale.en-US.yaml new file mode 100644 index 0000000000000..b66f37009e6d2 --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/1.4.3/TravisLane.SteamArtManager.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 1.4.3 +PackageLocale: en-US +Publisher: tormak +PublisherUrl: https://github.com/Tormak9970 +PublisherSupportUrl: https://github.com/Tormak9970/Steam-Art-Manager/issues +Author: Travis Lane +PackageName: Steam Art Manager +PackageUrl: https://github.com/Tormak9970/Steam-Art-Manager +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/Tormak9970/Steam-Art-Manager/main/LICENSE +Copyright: Copyright Travis Lane (Tormak) +CopyrightUrl: https://github.com/Tormak9970/Steam-Art-Manager/blob/main/README.md#licensing +ShortDescription: A tool for setting the artwork of your Steam library. +ReleaseNotes: |- + - fix: misunderstanding vdf_serde resolved (21ad742) + - fix: removed caching that caused stale builds (fe57505) +ReleaseNotesUrl: https://github.com/Tormak9970/Steam-Art-Manager/releases/tag/v1.4.3 +Documentations: +- DocumentUrl: https://github.com/Tormak9970/Steam-Art-Manager/blob/main/README.md +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/1.4.3/TravisLane.SteamArtManager.yaml b/manifests/t/TravisLane/SteamArtManager/1.4.3/TravisLane.SteamArtManager.yaml new file mode 100644 index 0000000000000..8d66818ec9e3b --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/1.4.3/TravisLane.SteamArtManager.yaml @@ -0,0 +1,8 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 1.4.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/1.4.4/TravisLane.SteamArtManager.installer.yaml b/manifests/t/TravisLane/SteamArtManager/1.4.4/TravisLane.SteamArtManager.installer.yaml new file mode 100644 index 0000000000000..32eb771e99ca3 --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/1.4.4/TravisLane.SteamArtManager.installer.yaml @@ -0,0 +1,21 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 1.4.4 +InstallerLocale: en-US +InstallerType: wix +UpgradeBehavior: install +ProductCode: '{171C36DB-25A1-4F82-BBA6-EDFD4A3F3E77}' +ReleaseDate: 2023-04-06 +AppsAndFeaturesEntries: +- UpgradeCode: '{728C60C1-38C9-5878-A895-495AD8F0727F}' +Dependencies: + PackageDependencies: + - PackageIdentifier: Valve.Steam +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Tormak9970/Steam-Art-Manager/releases/download/v1.4.4/Steam.Art.Manager_1.4.4_x64_en-US.msi + InstallerSha256: 5F6F72FED3F207C57DD39CDF5DCB749E762D1B95BAC1B6541238E773A4532DEC +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/1.4.4/TravisLane.SteamArtManager.locale.en-US.yaml b/manifests/t/TravisLane/SteamArtManager/1.4.4/TravisLane.SteamArtManager.locale.en-US.yaml new file mode 100644 index 0000000000000..b5e5d06e35b5e --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/1.4.4/TravisLane.SteamArtManager.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 1.4.4 +PackageLocale: en-US +Publisher: tormak +PublisherUrl: https://github.com/Tormak9970 +PublisherSupportUrl: https://github.com/Tormak9970/Steam-Art-Manager/issues +Author: Travis Lane +PackageName: Steam Art Manager +PackageUrl: https://github.com/Tormak9970/Steam-Art-Manager +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/Tormak9970/Steam-Art-Manager/main/LICENSE +Copyright: Copyright Travis Lane (Tormak) +CopyrightUrl: https://github.com/Tormak9970/Steam-Art-Manager/blob/main/README.md#licensing +ShortDescription: A tool for setting the artwork of your Steam library. +ReleaseNotes: '- fix: user id is now properly found (6581239)' +ReleaseNotesUrl: https://github.com/Tormak9970/Steam-Art-Manager/releases/tag/v1.4.4 +Documentations: +- DocumentUrl: https://github.com/Tormak9970/Steam-Art-Manager/blob/main/README.md +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/1.4.4/TravisLane.SteamArtManager.yaml b/manifests/t/TravisLane/SteamArtManager/1.4.4/TravisLane.SteamArtManager.yaml new file mode 100644 index 0000000000000..5e9d14829a061 --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/1.4.4/TravisLane.SteamArtManager.yaml @@ -0,0 +1,8 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 1.4.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/2.1.2/TravisLane.SteamArtManager.installer.yaml b/manifests/t/TravisLane/SteamArtManager/2.1.2/TravisLane.SteamArtManager.installer.yaml new file mode 100644 index 0000000000000..94e76769f5b8c --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/2.1.2/TravisLane.SteamArtManager.installer.yaml @@ -0,0 +1,21 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 2.1.2 +InstallerLocale: en-US +InstallerType: wix +UpgradeBehavior: install +ProductCode: '{940C0CD5-3432-4892-9060-9DF5ADA96BBA}' +ReleaseDate: 2023-05-04 +AppsAndFeaturesEntries: +- UpgradeCode: '{728C60C1-38C9-5878-A895-495AD8F0727F}' +Dependencies: + PackageDependencies: + - PackageIdentifier: Valve.Steam +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Tormak9970/Steam-Art-Manager/releases/download/v2.1.2/Steam.Art.Manager_2.1.2_x64_en-US.msi + InstallerSha256: 1F1BD9DCF953E19A12E886CC8D349D0C1DD92F9458DEB31CC6CE38682096F5E6 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/2.1.2/TravisLane.SteamArtManager.locale.en-US.yaml b/manifests/t/TravisLane/SteamArtManager/2.1.2/TravisLane.SteamArtManager.locale.en-US.yaml new file mode 100644 index 0000000000000..49951e866f415 --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/2.1.2/TravisLane.SteamArtManager.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 2.1.2 +PackageLocale: en-US +Publisher: tormak +PublisherUrl: https://github.com/Tormak9970 +PublisherSupportUrl: https://github.com/Tormak9970/Steam-Art-Manager/issues +Author: Travis Lane +PackageName: Steam Art Manager +PackageUrl: https://github.com/Tormak9970/Steam-Art-Manager +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/Tormak9970/Steam-Art-Manager/main/LICENSE +Copyright: Copyright Travis Lane (Tormak) +CopyrightUrl: https://github.com/Tormak9970/Steam-Art-Manager/blob/main/README.md#licensing +ShortDescription: A tool for setting the artwork of your Steam library. +ReleaseNotes: |- + - fix: completely fixed shortcut icon bug (c46027c) + - fix: platform switching works again (bae5c92) + - fix: shortcut icons no longer point to other dirs (f52d9ed) +ReleaseNotesUrl: https://github.com/Tormak9970/Steam-Art-Manager/releases/tag/v2.1.2 +Documentations: +- DocumentUrl: https://github.com/Tormak9970/Steam-Art-Manager/blob/main/README.md +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/2.1.2/TravisLane.SteamArtManager.yaml b/manifests/t/TravisLane/SteamArtManager/2.1.2/TravisLane.SteamArtManager.yaml new file mode 100644 index 0000000000000..42d21aa8e21ca --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/2.1.2/TravisLane.SteamArtManager.yaml @@ -0,0 +1,8 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 2.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/2.6.0/TravisLane.SteamArtManager.installer.yaml b/manifests/t/TravisLane/SteamArtManager/2.6.0/TravisLane.SteamArtManager.installer.yaml new file mode 100644 index 0000000000000..533ed4b411b72 --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/2.6.0/TravisLane.SteamArtManager.installer.yaml @@ -0,0 +1,21 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 2.6.0 +InstallerLocale: en-US +InstallerType: wix +UpgradeBehavior: install +ProductCode: '{D3112D9D-EB42-4D03-A26C-A08B0821C149}' +ReleaseDate: 2023-06-04 +AppsAndFeaturesEntries: +- UpgradeCode: '{728C60C1-38C9-5878-A895-495AD8F0727F}' +Dependencies: + PackageDependencies: + - PackageIdentifier: Valve.Steam +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Tormak9970/Steam-Art-Manager/releases/download/v2.6.0/steam-art-manager.msi + InstallerSha256: 613BE7E0239323A6A061AAC885655E144716B6A90A37539CF7EAAB1C751C6C99 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/2.6.0/TravisLane.SteamArtManager.locale.en-US.yaml b/manifests/t/TravisLane/SteamArtManager/2.6.0/TravisLane.SteamArtManager.locale.en-US.yaml new file mode 100644 index 0000000000000..d5af1ee660ebc --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/2.6.0/TravisLane.SteamArtManager.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 2.6.0 +PackageLocale: en-US +Publisher: tormak +PublisherUrl: https://github.com/Tormak9970 +PublisherSupportUrl: https://github.com/Tormak9970/Steam-Art-Manager/issues +Author: Travis Lane +PackageName: Steam Art Manager +PackageUrl: https://github.com/Tormak9970/Steam-Art-Manager +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/Tormak9970/Steam-Art-Manager/main/LICENSE +Copyright: Copyright Travis Lane (Tormak) +CopyrightUrl: https://github.com/Tormak9970/Steam-Art-Manager/blob/main/README.md#licensing +ShortDescription: A tool for setting the artwork of your Steam library. +ReleaseNotes: |- + - feat: added chocolatey support (642c4c2) + - feat: added confirmation dialog to reload button (d18dbf7) + - feat: added grid cleaning (ce65fc3) + - feat: added panic capture logging (4b18dbe) + - feat: added timeouts to all http requests (b8e5089) + - feat: added timeouts to grid image fetching (697258a) + - feat: added window position persistance (cb45192) + - feat: manual games complete (530713d) + - fix: duplicates are now detected on load (26cf233) + - fix: settings manager is now a modal again (c878d72) + - build: added pipeline section to releases (1ab3deb) +ReleaseNotesUrl: https://github.com/Tormak9970/Steam-Art-Manager/releases/tag/v2.6.0 +Documentations: +- DocumentUrl: https://github.com/Tormak9970/Steam-Art-Manager/blob/main/README.md +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/2.6.0/TravisLane.SteamArtManager.yaml b/manifests/t/TravisLane/SteamArtManager/2.6.0/TravisLane.SteamArtManager.yaml new file mode 100644 index 0000000000000..4cac495b4710e --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/2.6.0/TravisLane.SteamArtManager.yaml @@ -0,0 +1,8 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 2.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/2.8.0/TravisLane.SteamArtManager.installer.yaml b/manifests/t/TravisLane/SteamArtManager/2.8.0/TravisLane.SteamArtManager.installer.yaml new file mode 100644 index 0000000000000..ffefed81ef9e9 --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/2.8.0/TravisLane.SteamArtManager.installer.yaml @@ -0,0 +1,21 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 2.8.0 +InstallerLocale: en-US +InstallerType: wix +UpgradeBehavior: install +ProductCode: '{ECE7DEC5-D826-4E1A-ABFF-E35FF57CF3ED}' +ReleaseDate: 2023-07-22 +AppsAndFeaturesEntries: +- UpgradeCode: '{728C60C1-38C9-5878-A895-495AD8F0727F}' +Dependencies: + PackageDependencies: + - PackageIdentifier: Valve.Steam +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Tormak9970/Steam-Art-Manager/releases/download/v2.8.0/steam-art-manager.msi + InstallerSha256: BAD2CAC5EE9A2542840F783EA331181A9CFBFD0AB3AFEAD8F68525A269468AA1 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/2.8.0/TravisLane.SteamArtManager.locale.en-US.yaml b/manifests/t/TravisLane/SteamArtManager/2.8.0/TravisLane.SteamArtManager.locale.en-US.yaml new file mode 100644 index 0000000000000..ff52de9952df8 --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/2.8.0/TravisLane.SteamArtManager.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 2.8.0 +PackageLocale: en-US +Publisher: tormak +PublisherUrl: https://github.com/Tormak9970 +PublisherSupportUrl: https://github.com/Tormak9970/Steam-Art-Manager/issues +Author: Travis Lane +PackageName: Steam Art Manager +PackageUrl: https://github.com/Tormak9970/Steam-Art-Manager +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/Tormak9970/Steam-Art-Manager/main/LICENSE +Copyright: Copyright Travis Lane (Tormak) +CopyrightUrl: https://github.com/Tormak9970/Steam-Art-Manager/blob/main/README.md#licensing +ShortDescription: A tool for setting the artwork of your Steam library. +ReleaseNotes: '- feat: added custom wix installer (87f5fbf)' +ReleaseNotesUrl: https://github.com/Tormak9970/Steam-Art-Manager/releases/tag/v2.8.0 +Documentations: +- DocumentUrl: https://github.com/Tormak9970/Steam-Art-Manager/blob/main/README.md +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/TravisLane/SteamArtManager/2.8.0/TravisLane.SteamArtManager.yaml b/manifests/t/TravisLane/SteamArtManager/2.8.0/TravisLane.SteamArtManager.yaml new file mode 100644 index 0000000000000..8435a22a72cce --- /dev/null +++ b/manifests/t/TravisLane/SteamArtManager/2.8.0/TravisLane.SteamArtManager.yaml @@ -0,0 +1,8 @@ +# Created with Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: TravisLane.SteamArtManager +PackageVersion: 2.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/tangshimin/MuJing/2.2.16/tangshimin.MuJing.installer.yaml b/manifests/t/tangshimin/MuJing/2.2.16/tangshimin.MuJing.installer.yaml index fd2fce6c4fea4..dcafe05eafbdf 100644 --- a/manifests/t/tangshimin/MuJing/2.2.16/tangshimin.MuJing.installer.yaml +++ b/manifests/t/tangshimin/MuJing/2.2.16/tangshimin.MuJing.installer.yaml @@ -3,7 +3,6 @@ PackageIdentifier: tangshimin.MuJing PackageVersion: 2.2.16 -InstallerLocale: en-US InstallerType: wix InstallerSwitches: InstallLocation: INSTALLDIR="" @@ -11,7 +10,7 @@ UpgradeBehavior: install ProductCode: '{AAF5F742-7F24-3987-B26F-5C0BA908571E}' ReleaseDate: 2024-01-28 AppsAndFeaturesEntries: -- ProductCode: '{D8F7D76D-55C8-3859-B181-7B730DC8EF93}' +- ProductCode: '{AAF5F742-7F24-3987-B26F-5C0BA908571E}' UpgradeCode: '{2C33246D-3C45-3744-AFF1-AA8E0270006F}' Installers: - Architecture: x64 diff --git a/manifests/t/tangshimin/MuJing/2.2.16/tangshimin.MuJing.locale.zh-CN.yaml b/manifests/t/tangshimin/MuJing/2.2.16/tangshimin.MuJing.locale.zh-CN.yaml index ae67b3532e6fc..40baf36684956 100644 --- a/manifests/t/tangshimin/MuJing/2.2.16/tangshimin.MuJing.locale.zh-CN.yaml +++ b/manifests/t/tangshimin/MuJing/2.2.16/tangshimin.MuJing.locale.zh-CN.yaml @@ -25,16 +25,10 @@ Tags: - 词库 - 词汇 ReleaseNotes: |- - 更改: - - 单词弹幕支持文档词库 - - 单词预览区新增按首字母排序 - 修复: - - 如果设置了自动切换并且重复次数大于 1,听写单词成功后不会自动切换单词(#43) - - 焦点错误导致视频播放器崩溃。 - - 跨系统分享词库和视频会出现视频地址错误(#41) - - 视频的时间大于 24 小时会报错,不能播放视频(#44)。 - - 在切换到上一个单词按钮按 enter 会切换到上一个单词 -ReleaseNotesUrl: https://github.com/tangshimin/MuJing/releases/tag/v2.2.13 + - 在记忆单词界面,单词拼写错误后,不用重新输入了 + - 增加快捷键 ←、→ 切换单词 + - 保存记忆单词界面的视频播放器的大小和位置 +ReleaseNotesUrl: https://github.com/tangshimin/MuJing/releases/tag/v2.2.16 Documentations: - DocumentLabel: Wiki DocumentUrl: https://github.com/tangshimin/MuJing/wiki diff --git a/manifests/t/the-sz/Homedale/2.10/the-sz.Homedale.installer.yaml b/manifests/t/the-sz/Homedale/2.10/the-sz.Homedale.installer.yaml new file mode 100644 index 0000000000000..47a94951646f7 --- /dev/null +++ b/manifests/t/the-sz/Homedale/2.10/the-sz.Homedale.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: the-sz.Homedale +PackageVersion: "2.10" +InstallerType: zip +Installers: +- Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ./Homedale.exe + PortableCommandAlias: Homedale.exe + InstallerUrl: https://the-sz.com/common/get.php?product=homedale + InstallerSha256: 61bbdca2388c81bb5ca7cbf0f12631a98f496378bc2a05c899481fa71c35d410 +ManifestType: installer +ManifestVersion: 1.4.0 diff --git a/manifests/t/the-sz/Homedale/2.10/the-sz.Homedale.locale.en-US.yaml b/manifests/t/the-sz/Homedale/2.10/the-sz.Homedale.locale.en-US.yaml new file mode 100644 index 0000000000000..005d69d4c6ac0 --- /dev/null +++ b/manifests/t/the-sz/Homedale/2.10/the-sz.Homedale.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: the-sz.Homedale +PackageVersion: "2.10" +PackageLocale: en-US +Publisher: the sz development +PublisherUrl: https://the-sz.com/ +PrivacyUrl: https://the-sz.com/products/privacy.php +Author: the sz development +PackageName: Homedale +PackageUrl: https://the-sz.com/products/homedale/ +License: Proprietary +LicenseUrl: https://the-sz.com/products/license.php +Copyright: Copyright (c) the-sz.com +ShortDescription: Wi-Fi / WLAN Monitor +Description: Monitor the signal strength of multiple Wi-Fi / WLAN Access Points. +Moniker: homedale +ReleaseNotesUrl: https://the-sz.com/common/history.php?product=homedale +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/t/the-sz/Homedale/2.10/the-sz.Homedale.yaml b/manifests/t/the-sz/Homedale/2.10/the-sz.Homedale.yaml new file mode 100644 index 0000000000000..f4ce62b4e2143 --- /dev/null +++ b/manifests/t/the-sz/Homedale/2.10/the-sz.Homedale.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: the-sz.Homedale +PackageVersion: "2.10" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/t/the-sz/Spencer/1.32/the-sz.Spencer.installer.yaml b/manifests/t/the-sz/Spencer/1.32/the-sz.Spencer.installer.yaml new file mode 100644 index 0000000000000..d109bf3ffda20 --- /dev/null +++ b/manifests/t/the-sz/Spencer/1.32/the-sz.Spencer.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: the-sz.Spencer +PackageVersion: "1.32" +InstallerType: zip +Installers: +- Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ./Spencer.exe + PortableCommandAlias: Spencer.exe + InstallerUrl: https://the-sz.com/common/get.php?product=spencer + InstallerSha256: cbc9c0d0ac7e761fd293a966e706eed805e87932513173a3d5b0a3743e35085f +ManifestType: installer +ManifestVersion: 1.4.0 diff --git a/manifests/t/the-sz/Spencer/1.32/the-sz.Spencer.locale.en-US.yaml b/manifests/t/the-sz/Spencer/1.32/the-sz.Spencer.locale.en-US.yaml new file mode 100644 index 0000000000000..8a9f66bf2c0af --- /dev/null +++ b/manifests/t/the-sz/Spencer/1.32/the-sz.Spencer.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: the-sz.Spencer +PackageVersion: "1.32" +PackageLocale: en-US +Publisher: the sz development +PublisherUrl: https://the-sz.com/ +PrivacyUrl: https://the-sz.com/products/privacy.php +Author: the sz development +PackageName: Spencer +PackageUrl: https://the-sz.com/products/spencer/ +License: Proprietary +LicenseUrl: https://the-sz.com/products/license.php +Copyright: Copyright (c) the-sz.com +ShortDescription: Bring back the Classic Windows XP Start Menu to Windows 10 and Windows 11. +Moniker: spencer +ReleaseNotesUrl: https://the-sz.com/common/history.php?product=spencer +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/t/the-sz/Spencer/1.32/the-sz.Spencer.yaml b/manifests/t/the-sz/Spencer/1.32/the-sz.Spencer.yaml new file mode 100644 index 0000000000000..afa9cdcbd4d2d --- /dev/null +++ b/manifests/t/the-sz/Spencer/1.32/the-sz.Spencer.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: the-sz.Spencer +PackageVersion: "1.32" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/t/tickstep/aliyunpan/0.2.9/tickstep.aliyunpan.installer.yaml b/manifests/t/tickstep/aliyunpan/0.2.9/tickstep.aliyunpan.installer.yaml new file mode 100644 index 0000000000000..d9f18b67cb678 --- /dev/null +++ b/manifests/t/tickstep/aliyunpan/0.2.9/tickstep.aliyunpan.installer.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.2.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: tickstep.aliyunpan +PackageVersion: 0.2.9 +InstallModes: +- silent +- silentWithProgress +Commands: +- aliyunpan +Installers: +- Architecture: x64 + InstallerType: inno + InstallerUrl: https://file.tickstep.com/winget/pkgs/aliyunpan/v0.2.9/aliyunpan-installer-0.2.9-x64.exe + InstallerSha256: d81a35d0e6f2c8a3533a959cf1fac4f1a9d2309c69cb52959acfc64c6db1a9f4 + AppsAndFeaturesEntries: + - DisplayName: aliyunpan 0.2.9 (x64) +- Architecture: x86 + InstallerType: inno + InstallerUrl: https://file.tickstep.com/winget/pkgs/aliyunpan/v0.2.9/aliyunpan-installer-0.2.9-x86.exe + InstallerSha256: 27c677ebcd4880f4f13d5bbaa2712a5ae48e816b6e810979fa46aef23d92eded + AppsAndFeaturesEntries: + - DisplayName: aliyunpan 0.2.9 (x86) +ManifestType: installer +ManifestVersion: 1.4.0 \ No newline at end of file diff --git a/manifests/t/tickstep/aliyunpan/0.2.9/tickstep.aliyunpan.locale.en-US.yaml b/manifests/t/tickstep/aliyunpan/0.2.9/tickstep.aliyunpan.locale.en-US.yaml new file mode 100644 index 0000000000000..c24a1f58de552 --- /dev/null +++ b/manifests/t/tickstep/aliyunpan/0.2.9/tickstep.aliyunpan.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.2.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: tickstep.aliyunpan +PackageVersion: 0.2.9 +PackageLocale: en-US +Publisher: tickstep +PublisherUrl: https://opensource.tickstep.com +Author: tickstep +PackageName: aliyunpan +PackageUrl: https://github.com/tickstep/aliyunpan +License: Apache 2.0 +LicenseUrl: https://github.com/tickstep/aliyunpan/blob/main/LICENSE +Copyright: Copyright (C) 2021-2023 tickstep. +CopyrightUrl: https://github.com/tickstep/aliyunpan/blob/main/LICENSE +ShortDescription: Alibaba aDrive disk command line client supports webdav file service, JavaScript plug-in and synchronous file backup. +Tags: +- "Console" +- "Command-Line" +- "Shell" +- "Command-Prompt" +- "PowerShell" +- "Utilities" +- "cli" +- "cmd" +- "ps" +- "terminal" +- "open-source" +- "tool" +- "aliyundrive" +Moniker: aliyunpan +ManifestType: defaultLocale +ManifestVersion: 1.4.0 \ No newline at end of file diff --git a/manifests/t/tickstep/aliyunpan/0.2.9/tickstep.aliyunpan.locale.zh-CN.yaml b/manifests/t/tickstep/aliyunpan/0.2.9/tickstep.aliyunpan.locale.zh-CN.yaml new file mode 100644 index 0000000000000..831e30c1f934f --- /dev/null +++ b/manifests/t/tickstep/aliyunpan/0.2.9/tickstep.aliyunpan.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.2.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: tickstep.aliyunpan +PackageVersion: 0.2.9 +PackageLocale: zh-CN +Publisher: tickstep +PublisherUrl: https://opensource.tickstep.com +Author: tickstep +PackageName: aliyunpan +PackageUrl: https://github.com/tickstep/aliyunpan +License: Apache 2.0 +LicenseUrl: https://github.com/tickstep/aliyunpan/blob/main/LICENSE +Copyright: 版权所有 (C) 2021-2023 tickstep. +CopyrightUrl: https://github.com/tickstep/aliyunpan/blob/main/LICENSE +ShortDescription: 阿里云盘命令行客户端,支持webdav文件服务,支持JavaScript插件,支持同步备份功能。 +Tags: +- 控制台 +- 命令行 +- 终端 +- 开源 +- 工具 +- 阿里云盘 +- 网盘 +ManifestType: locale +ManifestVersion: 1.4.0 \ No newline at end of file diff --git a/manifests/t/tickstep/aliyunpan/0.2.9/tickstep.aliyunpan.yaml b/manifests/t/tickstep/aliyunpan/0.2.9/tickstep.aliyunpan.yaml new file mode 100644 index 0000000000000..b38937f89b976 --- /dev/null +++ b/manifests/t/tickstep/aliyunpan/0.2.9/tickstep.aliyunpan.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.2.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: tickstep.aliyunpan +PackageVersion: 0.2.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/v/VSDC/Editor/9.1.2.520/VSDC.Editor.installer.yaml b/manifests/v/VSDC/Editor/9.1.2.520/VSDC.Editor.installer.yaml new file mode 100644 index 0000000000000..dc47061645609 --- /dev/null +++ b/manifests/v/VSDC/Editor/9.1.2.520/VSDC.Editor.installer.yaml @@ -0,0 +1,14 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json + +PackageIdentifier: VSDC.Editor +PackageVersion: 9.1.2.520 +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.videosoftdev.com/video_tools/video_editor_x64.exe + InstallerSha256: 1540BAB56DCB800D360B9E55CC98ADD63BB97136B95178F4D128F7BE90AACC16 +ManifestType: installer +ManifestVersion: 1.2.0 diff --git a/manifests/v/VSDC/Editor/9.1.2.520/VSDC.Editor.locale.en-US.yaml b/manifests/v/VSDC/Editor/9.1.2.520/VSDC.Editor.locale.en-US.yaml new file mode 100644 index 0000000000000..de593a476c42c --- /dev/null +++ b/manifests/v/VSDC/Editor/9.1.2.520/VSDC.Editor.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json + +PackageIdentifier: VSDC.Editor +PackageVersion: 9.1.2.520 +PackageLocale: en-US +Publisher: Flash-Integro LLC +PrivacyUrl: https://www.videosoftdev.com/privacy-policy +PackageName: VSDC Free Video Editor +PackageUrl: https://www.videosoftdev.com/free-video-editor +License: Proprietary +LicenseUrl: https://www.videosoftdev.com/terms-and-conditions +Copyright: © 2011-2022, www.videosoftdev.com, Multilab LLC +ShortDescription: The video editor features a modern and highly intuitive interface that uses all kinds of wizards to make video creation and editing as simple and hassle-free as possible. +Description: The video editor is intended for editing video files and creating videos of any complexity involving various visual and audio effects. The program offers rich functionality and yet has a simple and intuitive interface, allowing you to create videos with a bare minimum of efforts +Moniker: vsdc-editor +ManifestType: defaultLocale +ManifestVersion: 1.2.0 diff --git a/manifests/m/Microsoft/Edge/109.0.1518.55/Microsoft.Edge.yaml b/manifests/v/VSDC/Editor/9.1.2.520/VSDC.Editor.yaml similarity index 56% rename from manifests/m/Microsoft/Edge/109.0.1518.55/Microsoft.Edge.yaml rename to manifests/v/VSDC/Editor/9.1.2.520/VSDC.Editor.yaml index 80e772cae3d61..22901d8991227 100644 --- a/manifests/m/Microsoft/Edge/109.0.1518.55/Microsoft.Edge.yaml +++ b/manifests/v/VSDC/Editor/9.1.2.520/VSDC.Editor.yaml @@ -1,7 +1,8 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json -PackageIdentifier: Microsoft.Edge -PackageVersion: 109.0.1518.55 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 - +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json + +PackageIdentifier: VSDC.Editor +PackageVersion: 9.1.2.520 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.2.0 diff --git a/manifests/v/VirtualDesktop/Streamer/1.30.0/VirtualDesktop.Streamer.installer.yaml b/manifests/v/VirtualDesktop/Streamer/1.30.0/VirtualDesktop.Streamer.installer.yaml new file mode 100644 index 0000000000000..62913e37a84ac --- /dev/null +++ b/manifests/v/VirtualDesktop/Streamer/1.30.0/VirtualDesktop.Streamer.installer.yaml @@ -0,0 +1,15 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json + +PackageIdentifier: VirtualDesktop.Streamer +PackageVersion: 1.30.0 +Installers: +- Architecture: x64 + InstallerType: exe + InstallerUrl: https://download.vrdesktop.net/files/VirtualDesktop.Streamer.Setup.exe + InstallerSha256: 4C3EF717E941D4917DF8C7B67F9E1889DDDF393199AD9EC43CD4BCEBAFED4534 + InstallerSwitches: + Silent: /q + Scope: machine +ManifestType: installer +ManifestVersion: 1.2.0 diff --git a/manifests/v/VirtualDesktop/Streamer/1.30.0/VirtualDesktop.Streamer.locale.en-US.yaml b/manifests/v/VirtualDesktop/Streamer/1.30.0/VirtualDesktop.Streamer.locale.en-US.yaml new file mode 100644 index 0000000000000..3796b6a42eadf --- /dev/null +++ b/manifests/v/VirtualDesktop/Streamer/1.30.0/VirtualDesktop.Streamer.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json + +PackageIdentifier: VirtualDesktop.Streamer +PackageVersion: 1.30.0 +PackageLocale: en-US +Publisher: Virtual Desktop, Inc. +PackageName: Virtual Desktop Streamer +License: Proprietary +Copyright: Copyright (C) 2022 Virtual Desktop, Inc. +ShortDescription: Watch movies, browse the web or play games on a giant virtual screen. +ManifestType: defaultLocale +ManifestVersion: 1.2.0 diff --git a/manifests/v/VirtualDesktop/Streamer/1.30.0/VirtualDesktop.Streamer.yaml b/manifests/v/VirtualDesktop/Streamer/1.30.0/VirtualDesktop.Streamer.yaml new file mode 100644 index 0000000000000..defae3f765382 --- /dev/null +++ b/manifests/v/VirtualDesktop/Streamer/1.30.0/VirtualDesktop.Streamer.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json + +PackageIdentifier: VirtualDesktop.Streamer +PackageVersion: 1.30.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.2.0 diff --git a/manifests/v/VirtualDesktop/Streamer/1.30.1/VirtualDesktop.Streamer.installer.yaml b/manifests/v/VirtualDesktop/Streamer/1.30.1/VirtualDesktop.Streamer.installer.yaml new file mode 100644 index 0000000000000..5a708c0a76f82 --- /dev/null +++ b/manifests/v/VirtualDesktop/Streamer/1.30.1/VirtualDesktop.Streamer.installer.yaml @@ -0,0 +1,15 @@ +# Automatically updated by the winget bot at 2024/Feb/02 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json + +PackageIdentifier: VirtualDesktop.Streamer +PackageVersion: 1.30.1 +Installers: +- Architecture: x64 + InstallerType: exe + InstallerUrl: https://download.vrdesktop.net/files/VirtualDesktop.Streamer.Setup.exe + InstallerSha256: A7BD762CE9548FD861F5DEC0F26E88CFE701BF896C50E3B2D5823D56934CAEC6 + InstallerSwitches: + Silent: /q + Scope: machine +ManifestType: installer +ManifestVersion: 1.2.0 diff --git a/manifests/v/VirtualDesktop/Streamer/1.30.1/VirtualDesktop.Streamer.locale.en-US.yaml b/manifests/v/VirtualDesktop/Streamer/1.30.1/VirtualDesktop.Streamer.locale.en-US.yaml new file mode 100644 index 0000000000000..c5e71b0bfb889 --- /dev/null +++ b/manifests/v/VirtualDesktop/Streamer/1.30.1/VirtualDesktop.Streamer.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2024/Feb/02 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json + +PackageIdentifier: VirtualDesktop.Streamer +PackageVersion: 1.30.1 +PackageLocale: en-US +Publisher: Virtual Desktop, Inc. +PackageName: Virtual Desktop Streamer +License: Proprietary +Copyright: Copyright (C) 2022 Virtual Desktop, Inc. +ShortDescription: Watch movies, browse the web or play games on a giant virtual screen. +ManifestType: defaultLocale +ManifestVersion: 1.2.0 diff --git a/manifests/v/VirtualDesktop/Streamer/1.30.1/VirtualDesktop.Streamer.yaml b/manifests/v/VirtualDesktop/Streamer/1.30.1/VirtualDesktop.Streamer.yaml new file mode 100644 index 0000000000000..9384bc2c89f50 --- /dev/null +++ b/manifests/v/VirtualDesktop/Streamer/1.30.1/VirtualDesktop.Streamer.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2024/Feb/02 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json + +PackageIdentifier: VirtualDesktop.Streamer +PackageVersion: 1.30.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.2.0 diff --git a/manifests/v/Vivaldi/Vivaldi/6.5.3206.59/Vivaldi.Vivaldi.installer.yaml b/manifests/v/Vivaldi/Vivaldi/6.5.3206.59/Vivaldi.Vivaldi.installer.yaml new file mode 100644 index 0000000000000..e4a0c210689a4 --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/6.5.3206.59/Vivaldi.Vivaldi.installer.yaml @@ -0,0 +1,71 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi +PackageVersion: 6.5.3206.59 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --vivaldi-silent + SilentWithProgress: --vivaldi-silent + InstallLocation: --vivaldi-install-dir="" + Log: --verbose-logging --log-file="" +ExpectedReturnCodes: +- InstallerReturnCode: 4 + ReturnResponse: downgrade +- InstallerReturnCode: 7 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 22 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 60 + ReturnResponse: installInProgress +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- mht +- mhtml +- pdf +- shtml +- svg +- webp +- xht +- xhtml +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.6.5.3206.59.exe + InstallerSha256: 040EB74E386E81EEFB02144C8CEE8733266BA7949E374836B6173FACD6DCFCC7 + InstallerSwitches: + Custom: --do-not-launch-chrome + ProductCode: Vivaldi +- Architecture: x86 + Scope: machine + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.6.5.3206.59.exe + InstallerSha256: 040EB74E386E81EEFB02144C8CEE8733266BA7949E374836B6173FACD6DCFCC7 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level + ProductCode: Vivaldi +- Architecture: x64 + Scope: user + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.6.5.3206.59.x64.exe + InstallerSha256: 09F752D03A80F23DAB618BA1F95B66AFD8A56A91C42108431B3E99A9F090B9F1 + InstallerSwitches: + Custom: --do-not-launch-chrome + ProductCode: Vivaldi +- Architecture: x64 + Scope: machine + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.6.5.3206.59.x64.exe + InstallerSha256: 09F752D03A80F23DAB618BA1F95B66AFD8A56A91C42108431B3E99A9F090B9F1 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level + ProductCode: Vivaldi +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/v/Vivaldi/Vivaldi/6.5.3206.59/Vivaldi.Vivaldi.locale.en-US.yaml b/manifests/v/Vivaldi/Vivaldi/6.5.3206.59/Vivaldi.Vivaldi.locale.en-US.yaml new file mode 100644 index 0000000000000..990399fc5f424 --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/6.5.3206.59/Vivaldi.Vivaldi.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi +PackageVersion: 6.5.3206.59 +PackageLocale: en-US +Publisher: Vivaldi Technologies AS. +PublisherUrl: https://vivaldi.com/ +PublisherSupportUrl: https://help.vivaldi.com/ +PrivacyUrl: https://vivaldi.com/privacy/browser/ +Author: Vivaldi Technologies AS. +PackageName: Vivaldi +PackageUrl: https://vivaldi.com/desktop/ +License: Freeware +LicenseUrl: https://vivaldi.com/privacy/vivaldi-end-user-license-agreement/ +Copyright: Copyright 2024 Vivaldi Technologies AS. All rights reserved. +# CopyrightUrl: +ShortDescription: Powerful, Personal and Private web browser +Description: Vivaldi is a web browser. But fun. It comes with a bunch of clever features built-in. It’s super flexible and does not track you. +Moniker: vivaldi +Tags: +- browser +- chromium +- internet +- web +- webpage +ReleaseNotes: |- + - [Chromium] Upgraded to 120.0.6099.278 + - [Linux][RPM] Handle key import failing during post install VB-103494 + - [Linux][RPM] Make the post install less noisy VB-103495 +ReleaseNotesUrl: https://update.vivaldi.com/update/1.0/relnotes/6.5.3206.59.html +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/v/Vivaldi/Vivaldi/6.5.3206.59/Vivaldi.Vivaldi.locale.zh-CN.yaml b/manifests/v/Vivaldi/Vivaldi/6.5.3206.59/Vivaldi.Vivaldi.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8d228bca3a57d --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/6.5.3206.59/Vivaldi.Vivaldi.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi +PackageVersion: 6.5.3206.59 +PackageLocale: zh-CN +Publisher: Vivaldi Technologies AS. +PublisherUrl: https://vivaldi.com/zh-hans/ +PublisherSupportUrl: https://help.vivaldi.com/ +PrivacyUrl: https://vivaldi.com/zh-hans/privacy/browser/ +Author: Vivaldi Technologies AS. +PackageName: Vivaldi +PackageUrl: https://vivaldi.com/zh-hans/desktop/ +License: 免费软件 +LicenseUrl: https://vivaldi.com/zh-hans/privacy/vivaldi-end-user-license-agreement/ +Copyright: Copyright 2024 Vivaldi Technologies AS. 版权所有。 +# CopyrightUrl: +ShortDescription: 功能强大、个性定制、注重隐私的浏览器 +Description: Vivaldi 是一个有趣的浏览器,内置了很多强大的功能,并且非常灵活,不会跟踪你。 +# Moniker: +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +# ReleaseNotes: +ReleaseNotesUrl: https://update.vivaldi.com/update/1.0/relnotes/6.5.3206.59.html +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/v/Vivaldi/Vivaldi/6.5.3206.59/Vivaldi.Vivaldi.yaml b/manifests/v/Vivaldi/Vivaldi/6.5.3206.59/Vivaldi.Vivaldi.yaml new file mode 100644 index 0000000000000..17f114a157539 --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/6.5.3206.59/Vivaldi.Vivaldi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi +PackageVersion: 6.5.3206.59 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/v/Vivaldi/Vivaldi/Snapshot/6.6.3256.4/Vivaldi.Vivaldi.Snapshot.installer.yaml b/manifests/v/Vivaldi/Vivaldi/Snapshot/6.6.3256.4/Vivaldi.Vivaldi.Snapshot.installer.yaml new file mode 100644 index 0000000000000..407149acefae9 --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/Snapshot/6.6.3256.4/Vivaldi.Vivaldi.Snapshot.installer.yaml @@ -0,0 +1,71 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi.Snapshot +PackageVersion: 6.6.3256.4 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --vivaldi-silent + SilentWithProgress: --vivaldi-silent + InstallLocation: --vivaldi-install-dir="" + Log: --verbose-logging --log-file="" +ExpectedReturnCodes: +- InstallerReturnCode: 4 + ReturnResponse: downgrade +- InstallerReturnCode: 7 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 22 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 60 + ReturnResponse: installInProgress +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- mht +- mhtml +- pdf +- shtml +- svg +- webp +- xht +- xhtml +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://downloads.vivaldi.com/snapshot/Vivaldi.6.6.3256.4.exe + InstallerSha256: 66D255F82D90D2BA5E93428189F5A04BD8783FAA373C0FFCD3FB834060416FA2 + InstallerSwitches: + Custom: --do-not-launch-chrome + ProductCode: Vivaldi +- Architecture: x86 + Scope: machine + InstallerUrl: https://downloads.vivaldi.com/snapshot/Vivaldi.6.6.3256.4.exe + InstallerSha256: 66D255F82D90D2BA5E93428189F5A04BD8783FAA373C0FFCD3FB834060416FA2 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level + ProductCode: Vivaldi +- Architecture: x64 + Scope: user + InstallerUrl: https://downloads.vivaldi.com/snapshot/Vivaldi.6.6.3256.4.x64.exe + InstallerSha256: 78649CCFB9E294F739DEBE0F164F2463F55305CD72BACE70F23FDD20F463DACF + InstallerSwitches: + Custom: --do-not-launch-chrome + ProductCode: Vivaldi +- Architecture: x64 + Scope: machine + InstallerUrl: https://downloads.vivaldi.com/snapshot/Vivaldi.6.6.3256.4.x64.exe + InstallerSha256: 78649CCFB9E294F739DEBE0F164F2463F55305CD72BACE70F23FDD20F463DACF + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level + ProductCode: Vivaldi +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/v/Vivaldi/Vivaldi/Snapshot/6.6.3256.4/Vivaldi.Vivaldi.Snapshot.locale.en-US.yaml b/manifests/v/Vivaldi/Vivaldi/Snapshot/6.6.3256.4/Vivaldi.Vivaldi.Snapshot.locale.en-US.yaml new file mode 100644 index 0000000000000..091d81a6dfffb --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/Snapshot/6.6.3256.4/Vivaldi.Vivaldi.Snapshot.locale.en-US.yaml @@ -0,0 +1,66 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi.Snapshot +PackageVersion: 6.6.3256.4 +PackageLocale: en-US +Publisher: Vivaldi Technologies AS. +PublisherUrl: https://vivaldi.com/ +PublisherSupportUrl: https://help.vivaldi.com/ +PrivacyUrl: https://vivaldi.com/privacy/browser/ +Author: Vivaldi Technologies AS. +PackageName: Vivaldi (Snapshot) +PackageUrl: https://vivaldi.com/desktop/ +License: Freeware +LicenseUrl: https://vivaldi.com/privacy/vivaldi-end-user-license-agreement/ +Copyright: Copyright 2024 Vivaldi Technologies AS. All rights reserved. +# CopyrightUrl: +ShortDescription: Powerful, Personal and Private web browser +Description: Vivaldi is a web browser. But fun. It comes with a bunch of clever features built-in. It’s super flexible and does not track you. +# Moniker: +Tags: +- browser +- chromium +- internet +- web +- webpage +ReleaseNotes: |- + - [Address bar] When typing into the address bar and hitting enter quickly, some characters are dropped VB-103404 + - [Address bar][Themes] Selection does not use themes highlight color VB-92801 + - [Blocker] Center shield icon counter VB-102044 + - [Calendar] Accepting invite for exception adds event in wrong calendar VB-99422 + - [Calendar] Can not type space in Create Event dialog VB-103530 + - [Calendar] Daily recurrence turns into monthly VB-102190 + - [Calendar] Import dialog state incorrect after changing source VB-97504 + - [Calendar] Stop polling while the client is offline VB-103133 + - [Chromium] Upgraded to 120.0.6099.278 + - [Crash][Extensions] Follow up to crash fix with extension warnings VB-103443 + - [Extensions] Prompt popup created by a extension shows ID instead of extension name VB-43609 + - [Extensions][Themes] Light review button in dark extension dialog VB-103599 + - [Guest Window] Give a dedicated favicon to the Guest Profile Introduction Page VB-98688 + - [Linux][Fedora] Fix repository configuration and update package signature keys on systems where they are wrong or broken VB-103496 + - [Mail] Attachments are lost from draft after restart VB-103296 + - [Mail] Hide confusing "OR" option and fix keyboard focus issue VB-103486 + - [Mail] Inline image shown as attachment after reopen from Drafts VB-103437 + - [Mail] Only add NOT if the search is not empty, since otherwise it doesn't work VB-103487 + - [Mail] Search database migration error VB-103504 + - [Menus] Customized context/menus get reset to default on upgrade VB-103524 + - [Settings] When using the search-box the button "Manage sources" does not work VB-92878 + - [Settings][Privacy] Display websites set to never save a password in Privacy settings VB-52769 + - [Tabs] Created inside pinned stack can't be closed VB-103499 + - [Tabs] If you select multiple tab stacks and click unstack tabs (in the right click menu), it only unstacks the last selected tab stack VB-101941 + - [Tabs] Page load progress not shown while awaiting receipt of first byte VB-98838 + - [Tabs] Pinned tab settings are not respected VB-103570 + - [Tabs][Commands] Various stack command issues VB-103523 + - [Tasks][Calendar] Recurring tasks only shows one instance in panel VB-101717 + - [Translate] Is not auto detecting language in some scenarios VB-87659 + - [Translate] Use a newer/better translation server VB-103503 + - [UI] Unify look of form elements VB-103355 + - [Welcome Page] Empty state for importer when there are no other browsers detected VB-103539 + - [macOS] Crash when scrolling horizontally in the developer tools window VB-101337 +ReleaseNotesUrl: https://update.vivaldi.com/update/1.0/relnotes/snapshot/6.6.3256.4.html +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/v/Vivaldi/Vivaldi/Snapshot/6.6.3256.4/Vivaldi.Vivaldi.Snapshot.locale.zh-CN.yaml b/manifests/v/Vivaldi/Vivaldi/Snapshot/6.6.3256.4/Vivaldi.Vivaldi.Snapshot.locale.zh-CN.yaml new file mode 100644 index 0000000000000..610af9872b454 --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/Snapshot/6.6.3256.4/Vivaldi.Vivaldi.Snapshot.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi.Snapshot +PackageVersion: 6.6.3256.4 +PackageLocale: zh-CN +Publisher: Vivaldi Technologies AS. +PublisherUrl: https://vivaldi.com/zh-hans/ +PublisherSupportUrl: https://help.vivaldi.com/ +PrivacyUrl: https://vivaldi.com/zh-hans/privacy/browser/ +Author: Vivaldi Technologies AS. +PackageName: Vivaldi(快照版) +PackageUrl: https://vivaldi.com/zh-hans/desktop/ +License: 免费软件 +LicenseUrl: https://vivaldi.com/zh-hans/privacy/vivaldi-end-user-license-agreement/ +Copyright: Copyright 2024 Vivaldi Technologies AS. 版权所有。 +# CopyrightUrl: +ShortDescription: 功能强大、个性定制、注重隐私的浏览器 +Description: Vivaldi 是一个有趣的浏览器,内置了很多强大的功能,并且非常灵活,不会跟踪你。 +# Moniker: +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +# ReleaseNotes: +ReleaseNotesUrl: https://update.vivaldi.com/update/1.0/relnotes/snapshot/6.6.3256.4.html +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/v/Vivaldi/Vivaldi/Snapshot/6.6.3256.4/Vivaldi.Vivaldi.Snapshot.yaml b/manifests/v/Vivaldi/Vivaldi/Snapshot/6.6.3256.4/Vivaldi.Vivaldi.Snapshot.yaml new file mode 100644 index 0000000000000..53675ad5262b8 --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/Snapshot/6.6.3256.4/Vivaldi.Vivaldi.Snapshot.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi.Snapshot +PackageVersion: 6.6.3256.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/v/vcmi/vcmi/1.4.5/vcmi.vcmi.installer.yaml b/manifests/v/vcmi/vcmi/1.4.5/vcmi.vcmi.installer.yaml new file mode 100644 index 0000000000000..d968a4f0cd405 --- /dev/null +++ b/manifests/v/vcmi/vcmi/1.4.5/vcmi.vcmi.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: vcmi.vcmi +PackageVersion: 1.4.5 +InstallerType: nullsoft +Installers: +- InstallerUrl: https://github.com/vcmi/vcmi/releases/download/1.4.5/VCMI-Windows.exe + Architecture: x86 + InstallerSha256: 9852366450BA6EEC3962408F76655693ECE300D482C72453D0097AA26DD18A30 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/v/vcmi/vcmi/1.4.5/vcmi.vcmi.locale.en-US.yaml b/manifests/v/vcmi/vcmi/1.4.5/vcmi.vcmi.locale.en-US.yaml new file mode 100644 index 0000000000000..f8101b1e378c3 --- /dev/null +++ b/manifests/v/vcmi/vcmi/1.4.5/vcmi.vcmi.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: vcmi.vcmi +PackageVersion: 1.4.5 +PackageLocale: en-US +Publisher: vcmi +PackageName: vcmi +License: GPL v2 +ShortDescription: Open-source engine for Heroes of Might and Magic III +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/v/vcmi/vcmi/1.4.5/vcmi.vcmi.yaml b/manifests/v/vcmi/vcmi/1.4.5/vcmi.vcmi.yaml new file mode 100644 index 0000000000000..b6259c70e7e0d --- /dev/null +++ b/manifests/v/vcmi/vcmi/1.4.5/vcmi.vcmi.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: vcmi.vcmi +PackageVersion: 1.4.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/v/vim/vim/nightly/9.1.0067/vim.vim.nightly.installer.yaml b/manifests/v/vim/vim/nightly/9.1.0067/vim.vim.nightly.installer.yaml new file mode 100644 index 0000000000000..7b1930b1ca645 --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.1.0067/vim.vim.nightly.installer.yaml @@ -0,0 +1,24 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: vim.vim.nightly +PackageVersion: 9.1.0067 +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ReleaseDate: 2024-01-31 +ElevationRequirement: elevationRequired +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.1.0067/gvim_9.1.0067_x86.exe + InstallerSha256: 37C60911981EF1FE096EB3659F0325845BEEEC1C044687A21BBC620303CBE727 +- Architecture: x64 + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.1.0067/gvim_9.1.0067_x64.exe + InstallerSha256: BB5BADA045D81949803FD0D4DD4E5097C848667D7B3B87F6A998E51368DAD964 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/v/vim/vim/nightly/9.1.0067/vim.vim.nightly.locale.en-US.yaml b/manifests/v/vim/vim/nightly/9.1.0067/vim.vim.nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..46b07b439fc75 --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.1.0067/vim.vim.nightly.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: vim.vim.nightly +PackageVersion: 9.1.0067 +PackageLocale: en-US +Publisher: Bram Moolenaar et al. +PublisherUrl: https://github.com/vim/vim-win32-installer +PublisherSupportUrl: https://github.com/vim/vim-win32-installer/issues +Author: Bram Moolenaar et al. +PackageName: Vim +PackageUrl: http://www.vim.org +License: Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] - Charityware / GNU GPL compatible +LicenseUrl: https://github.com/vim/vim-win32-installer#license--copyright +Copyright: Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] +CopyrightUrl: https://github.com/vim/vim-win32-installer#license--copyright +ShortDescription: Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient +Moniker: vim +Tags: +- code-editor +- g-vim +- gvim +- text-editing +- text-editor +- tool +- utility +- vi +ReleaseNotes: |- + Changes: + - 9.1.0067: gcc still complains about use of uninitialized var + - runtime(racket): add missing space to b:undo\_indent var (#13945) + - runtime(Filelist): include README\_vimlogo.txt (#13944) + - 9.1.0066: gcc complains about use of uninitialized var + - runtime(vimlogo): Include and modernize vimlogo.svg + - runtime(netrw): fixing remote file removal via ssh (#13942) + - CI: get rid of snap and speed up CI (#13938) + - CI: update clang to v18 (#13937) + - runtime(doc): correct Vim patch for Wayland support + - runtime(racket): undo some indent options only when vim9script is available (#13935) + - runtime(doc): Update help for Wayland support +ReleaseNotesUrl: https://github.com/vim/vim-win32-installer/releases/tag/v9.1.0067 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/v/vim/vim/nightly/9.1.0067/vim.vim.nightly.yaml b/manifests/v/vim/vim/nightly/9.1.0067/vim.vim.nightly.yaml new file mode 100644 index 0000000000000..91a20a9591261 --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.1.0067/vim.vim.nightly.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: vim.vim.nightly +PackageVersion: 9.1.0067 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/v/vivo/OfficeKit/3.3.2.0/vivo.OfficeKit.installer.yaml b/manifests/v/vivo/OfficeKit/3.3.2.0/vivo.OfficeKit.installer.yaml new file mode 100644 index 0000000000000..20b05e25f261e --- /dev/null +++ b/manifests/v/vivo/OfficeKit/3.3.2.0/vivo.OfficeKit.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: vivo.OfficeKit +PackageVersion: 3.3.2.0 +InstallerType: nullsoft +Scope: machine +InstallModes: +- silentWithProgress +InstallerSwitches: + Silent: ' ' + SilentWithProgress: ' ' +UpgradeBehavior: install +Protocols: +- myapp +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + InstallerUrl: https://pcsuite-api-static.vivo.com/upgrade-pre/pcsuite_upgrade_v3.3.2.0_1706703495370.exe + InstallerSha256: 4E4D822D5FC879D1DE2F0F43CDBB654F26144866A63F6F7D3F7BF5388E99E61C + ProductCode: pcsuite +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/v/vivo/OfficeKit/3.3.2.0/vivo.OfficeKit.locale.en-US.yaml b/manifests/v/vivo/OfficeKit/3.3.2.0/vivo.OfficeKit.locale.en-US.yaml new file mode 100644 index 0000000000000..c637e9519341e --- /dev/null +++ b/manifests/v/vivo/OfficeKit/3.3.2.0/vivo.OfficeKit.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: vivo.OfficeKit +PackageVersion: 3.3.2.0 +PackageLocale: en-US +Publisher: 维沃移动通信有限公司 +PublisherUrl: https://www.vivo.com/en +# PublisherSupportUrl: +PrivacyUrl: https://quantumkit.vivo.com/#/privacyPolicy +Author: Vivo Mobile Communication Co., Ltd. +PackageName: vivo办公套件 +PackageUrl: https://quantumkit.vivo.com/ +License: Freeware +LicenseUrl: https://quantumkit.vivo.com/#/userProtocol +Copyright: Copyright Vivo Mobile Communication Co., Ltd. All rights reserved. +# CopyrightUrl: +ShortDescription: Cross-platform solutions +Description: Office Kit is a desktop productivity suite developed by vivo, offering functionalities such as editing notes and documents, managing calendars and schedules, browsing and collecting online content, managing albums, casting mobile screens, transferring files, and cloud synchronization. +# Moniker: +Tags: +- album +- calendar +- cloud +- memo +- memorandum +- mobile +- notes +- originos +- phone +- photo +- schedule +- smartphone +- sync +- to-do +- todo +- vivo +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/v/vivo/OfficeKit/3.3.2.0/vivo.OfficeKit.locale.zh-CN.yaml b/manifests/v/vivo/OfficeKit/3.3.2.0/vivo.OfficeKit.locale.zh-CN.yaml new file mode 100644 index 0000000000000..76b18846bdaa0 --- /dev/null +++ b/manifests/v/vivo/OfficeKit/3.3.2.0/vivo.OfficeKit.locale.zh-CN.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: vivo.OfficeKit +PackageVersion: 3.3.2.0 +PackageLocale: zh-CN +Publisher: 维沃移动通信有限公司 +PublisherUrl: https://www.vivo.com.cn/ +# PublisherSupportUrl: +PrivacyUrl: https://quantumkit.vivo.com/#/privacyPolicy +Author: 维沃移动通信有限公司 +PackageName: vivo办公套件 +PackageUrl: https://quantumkit.vivo.com/ +License: 免费软件 +LicenseUrl: https://quantumkit.vivo.com/#/userProtocol +Copyright: 维沃移动通信有限公司版权所有,保留所有权利。 +# CopyrightUrl: +ShortDescription: 跨平台解决方案 +Description: vivo 办公套件是 vivo 开发的电脑端生产力套件,提供笔记及文档编辑、日历日程管理、浏览收藏在线内容、相册管理、手机投屏及文件传输、云同步等功能。 +# Moniker: +Tags: +- vivo +- 云 +- 原系统 +- 同步 +- 备忘 +- 备忘录 +- 待办 +- 待办事项 +- 手机 +- 提醒事项 +- 日历 +- 日程 +- 智能手机 +- 照片 +- 相册 +- 笔记 +ReleaseNotes: |- + 1. 修复了手机投屏、远程控制 pc 等问题; + 2. 优化了笔记编辑、图片预览等体验; + 3. 优化了日程新建、查看和管理等体验。 +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/v/vivo/OfficeKit/3.3.2.0/vivo.OfficeKit.yaml b/manifests/v/vivo/OfficeKit/3.3.2.0/vivo.OfficeKit.yaml new file mode 100644 index 0000000000000..62bfb4b2c24f1 --- /dev/null +++ b/manifests/v/vivo/OfficeKit/3.3.2.0/vivo.OfficeKit.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: vivo.OfficeKit +PackageVersion: 3.3.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/w/Wondershare/PDFelement/10/10.2.8/Wondershare.PDFelement.10.installer.yaml b/manifests/w/Wondershare/PDFelement/10/10.2.8/Wondershare.PDFelement.10.installer.yaml new file mode 100644 index 0000000000000..e4ae61f1c8f7f --- /dev/null +++ b/manifests/w/Wondershare/PDFelement/10/10.2.8/Wondershare.PDFelement.10.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Wondershare.PDFelement.10 +PackageVersion: 10.2.8 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- wspe8 +FileExtensions: +- fdf +- pdf +Installers: +- Architecture: x64 + InstallerUrl: https://download.wondershare.com/cbs_down/pdfelement-pro_64bit_10.2.8_full5239.exe + InstallerSha256: 582610C68A15E40C4664AE490A5F0C4A1A1160A5711649A4040167F84AF431B8 + ProductCode: '{C87D1149-DD19-4D87-A447-12803ECF02B6}_is1' +- Architecture: x86 + InstallerUrl: https://download.wondershare.com/cbs_down/pdfelement-pro_10.2.8_full5239.exe + InstallerSha256: 582610C68A15E40C4664AE490A5F0C4A1A1160A5711649A4040167F84AF431B8 + ProductCode: '{C87D1149-DD19-4D87-A447-12803ECF02B6}_is1' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/w/Wondershare/PDFelement/10/10.2.8/Wondershare.PDFelement.10.locale.en-US.yaml b/manifests/w/Wondershare/PDFelement/10/10.2.8/Wondershare.PDFelement.10.locale.en-US.yaml new file mode 100644 index 0000000000000..90f025e43fe00 --- /dev/null +++ b/manifests/w/Wondershare/PDFelement/10/10.2.8/Wondershare.PDFelement.10.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Wondershare.PDFelement.10 +PackageVersion: 10.2.8 +PackageLocale: en-US +Publisher: Wondershare +PublisherUrl: https://www.wondershare.com/ +PublisherSupportUrl: https://support.wondershare.com/how-tos/pdfelement/ +PrivacyUrl: https://www.wondershare.com/privacy.html +Author: Wondershare Technology Group Co., Ltd. +PackageName: Wondershare PDFelement +PackageUrl: https://pdf.wondershare.com/pdfelement.html +License: Proprietary +LicenseUrl: https://www.wondershare.com/company/end-user-license-agreement.html +Copyright: Copyright © 2024 Wondershare. All rights reserved. +CopyrightUrl: https://www.wondershare.com/company/terms_conditions.html +ShortDescription: Take control of your documents with this powerful PDF editor. +Description: Wondershare PDFelement is a powerful PDF tool that helps make working with PDF files easier, allows you to produce great-looking PDF documents and forms quickly, affordably, and securely. +# Moniker: +Tags: +- annotate +- annotation +- comment +- conversion +- convert +- ebook +- edit +- editor +- ocr +- pdf +- read +- reader +- viewer +ReleaseNotes: |- + Support for generating a table of contents directly from the bookmark list + Support for collated printing of documents + Support for an immersive 3D lifelike page-flipping reading mode + Support for customizing compression parameters + Optimize user experience for summarizing PDFs in the AI Sidebar + Corrections and improvements in many small details + Fix the crash issue that might occur in certain situations +ReleaseNotesUrl: https://pdf.wondershare.com/whats-new.html +PurchaseUrl: https://pdf.wondershare.com/store/windows-individuals.html +# InstallationNotes: +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://pdf.wondershare.com/guide/pdfelement-windows.html +- DocumentLabel: Tutorials + DocumentUrl: https://pdf.wondershare.com/pdfelement-video-community.html +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/w/Wondershare/PDFelement/10/10.2.8/Wondershare.PDFelement.10.locale.zh-CN.yaml b/manifests/w/Wondershare/PDFelement/10/10.2.8/Wondershare.PDFelement.10.locale.zh-CN.yaml new file mode 100644 index 0000000000000..854c1df01373a --- /dev/null +++ b/manifests/w/Wondershare/PDFelement/10/10.2.8/Wondershare.PDFelement.10.locale.zh-CN.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Wondershare.PDFelement.10 +PackageVersion: 10.2.8 +PackageLocale: zh-CN +Publisher: Wondershare +PublisherUrl: https://www.wondershare.com/ +PublisherSupportUrl: https://support.wondershare.com/how-tos/pdfelement/ +PrivacyUrl: https://www.wondershare.com/privacy.html +Author: 万兴科技集团股份有限公司 +PackageName: Wondershare PDFelement +PackageUrl: https://pdf.wondershare.com/pdfelement.html +License: 专有软件 +LicenseUrl: https://www.wondershare.com/company/end-user-license-agreement.html +Copyright: Copyright © 2024 Wondershare. 保留所有权利 +CopyrightUrl: https://www.wondershare.com/company/terms_conditions.html +ShortDescription: 使用这款功能强大的 PDF 编辑器掌控您的文档 +Description: Wondershare PDFelement 是功能十分强大的 PDF 工具,可帮助您在工作中轻松地处理 PDF 文件并能快速制作美观的 PDF 文档和表单,产品非常实惠,安全好用。 +# Moniker: +Tags: +- ocr +- pdf +- 批注 +- 查看器 +- 标注 +- 注释 +- 电子书 +- 编辑 +- 编辑器 +- 转换 +- 阅读 +- 阅读器 +# ReleaseNotes: +ReleaseNotesUrl: https://pdf.wondershare.com/whats-new.html +PurchaseUrl: https://pdf.wondershare.com/store/windows-individuals.html +# InstallationNotes: +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://pdf.wondershare.com/guide/pdfelement-windows.html +- DocumentLabel: 教程 + DocumentUrl: https://pdf.wondershare.com/pdfelement-video-community.html +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/w/Wondershare/PDFelement/10/10.2.8/Wondershare.PDFelement.10.yaml b/manifests/w/Wondershare/PDFelement/10/10.2.8/Wondershare.PDFelement.10.yaml new file mode 100644 index 0000000000000..ace0af9813e8a --- /dev/null +++ b/manifests/w/Wondershare/PDFelement/10/10.2.8/Wondershare.PDFelement.10.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Wondershare.PDFelement.10 +PackageVersion: 10.2.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/w/Wondershare/Recoverit/12.0.22.3/Wondershare.Recoverit.installer.yaml b/manifests/w/Wondershare/Recoverit/12.0.22.3/Wondershare.Recoverit.installer.yaml new file mode 100644 index 0000000000000..6685c2829cb2b --- /dev/null +++ b/manifests/w/Wondershare/Recoverit/12.0.22.3/Wondershare.Recoverit.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Wondershare.Recoverit +PackageVersion: 12.0.22.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://download.wondershare.com/cbs_down/recoverit_64bit_12.0.22_full4134.exe + InstallerSha256: C45AD4E7ED1FFAF3128818E2C52D8D9425F8E25DC507672A2A011B262C9590D5 + ProductCode: '{829555DC-31E5-4FEA-B350-8FCF24CECD95}_is1' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/w/Wondershare/Recoverit/12.0.22.3/Wondershare.Recoverit.locale.en-US.yaml b/manifests/w/Wondershare/Recoverit/12.0.22.3/Wondershare.Recoverit.locale.en-US.yaml new file mode 100644 index 0000000000000..08054d60fe3b8 --- /dev/null +++ b/manifests/w/Wondershare/Recoverit/12.0.22.3/Wondershare.Recoverit.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Wondershare.Recoverit +PackageVersion: 12.0.22.3 +PackageLocale: en-US +Publisher: Wondershare Software Co.,Ltd. +PublisherUrl: https://www.wondershare.com/ +PublisherSupportUrl: https://recoverit.wondershare.com/support/ +PrivacyUrl: https://www.wondershare.com/privacy.html +Author: Wondershare Technology Group Co., Ltd. +PackageName: Wondershare Recoverit +PackageUrl: https://recoverit.wondershare.com/ +License: Proprietary +LicenseUrl: https://www.wondershare.com/company/end-user-license-agreement.html +Copyright: Copyright © 2024 Wondershare. All rights reserved. +CopyrightUrl: https://www.wondershare.com/company/terms_conditions.html +ShortDescription: Quickly restore precious documents, emails, and other files. +Description: |- + For most of us, losing data is a common occurrence. Recoverit Expert Data Recovery for PC can recover 1000+ file types and formats of data from a variety of storage sources, including your Windows computer hard disk, Desktop, Recycle Bin, external devices, and even a wrecked computer. + It also has dedicated options for recovering lost videos, such as Professional Video Recovery. Moreover, the application also features a video repair tool that can fix corrupted videos in a variety of situations. +# Moniker: +Tags: +- data +- file +- fix +- recover +- recovery +- restore +ReleaseNotes: |- + 1. Bug fixes. + 2. Performance improvement. +# ReleaseNotesUrl: +PurchaseUrl: https://recoverit.wondershare.com/buy/store.html +# InstallationNotes: +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://recoverit.wondershare.com/guide.html +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/w/Wondershare/Recoverit/12.0.22.3/Wondershare.Recoverit.locale.zh-CN.yaml b/manifests/w/Wondershare/Recoverit/12.0.22.3/Wondershare.Recoverit.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5826082be576f --- /dev/null +++ b/manifests/w/Wondershare/Recoverit/12.0.22.3/Wondershare.Recoverit.locale.zh-CN.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Wondershare.Recoverit +PackageVersion: 12.0.22.3 +PackageLocale: zh-CN +Publisher: Wondershare Software Co.,Ltd. +PublisherUrl: https://www.wondershare.com/ +PublisherSupportUrl: https://recoverit.wondershare.com/support/ +PrivacyUrl: https://www.wondershare.com/privacy.html +Author: 万兴科技集团股份有限公司 +PackageName: Wondershare Recoverit +PackageUrl: https://recoverit.wondershare.com/ +License: 专有软件 +LicenseUrl: https://www.wondershare.com/company/end-user-license-agreement.html +Copyright: Copyright © 2024 Wondershare. All rights reserved. +CopyrightUrl: https://www.wondershare.com/company/terms_conditions.html +ShortDescription: 快速恢复珍贵的文档、电子邮件等文件 +Description: |- + 对于我们大多数人来说,丢失数据是很常见的事情。适用于 PC 的 Recoverit 数据恢复可以从各种存储源恢复 1000 多种文件类型和格式的数据,包括您的 Windows 计算机硬盘、桌面、回收站、外部设备,甚至是损坏的计算机。 + 它还具有用于恢复丢失视频的专用选项,例如专业视频恢复。此外,该应用程序还具有视频修复工具,可以在各种情况下修复损坏的视频。 +# Moniker: +Tags: +- 修复 +- 恢复 +- 数据 +- 文件 +- 还原 +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://recoverit.wondershare.com/buy/store.html +# InstallationNotes: +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://recoverit.wondershare.com/guide.html +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/w/Wondershare/Recoverit/12.0.22.3/Wondershare.Recoverit.yaml b/manifests/w/Wondershare/Recoverit/12.0.22.3/Wondershare.Recoverit.yaml new file mode 100644 index 0000000000000..a8482e92c90fd --- /dev/null +++ b/manifests/w/Wondershare/Recoverit/12.0.22.3/Wondershare.Recoverit.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Wondershare.Recoverit +PackageVersion: 12.0.22.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/w/Wondershare/Repairit/5.5.2.4/Wondershare.Repairit.installer.yaml b/manifests/w/Wondershare/Repairit/5.5.2.4/Wondershare.Repairit.installer.yaml new file mode 100644 index 0000000000000..2ff56907efc16 --- /dev/null +++ b/manifests/w/Wondershare/Repairit/5.5.2.4/Wondershare.Repairit.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Wondershare.Repairit +PackageVersion: 5.5.2.4 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://download.wondershare.com/cbs_down/repairit_5.5.2_full5913.exe + InstallerSha256: 115A8B4999BCA87034944E3A81540CCC249908AC473A766D1ED015056746073D + ProductCode: '{92A6E5FF-9CF6-47bf-BB78-ABEE552A7DA2}_is1' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/w/Wondershare/Repairit/5.5.2.4/Wondershare.Repairit.locale.en-US.yaml b/manifests/w/Wondershare/Repairit/5.5.2.4/Wondershare.Repairit.locale.en-US.yaml new file mode 100644 index 0000000000000..32580c5559be1 --- /dev/null +++ b/manifests/w/Wondershare/Repairit/5.5.2.4/Wondershare.Repairit.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Wondershare.Repairit +PackageVersion: 5.5.2.4 +PackageLocale: en-US +Publisher: Wondershare Software Co.,Ltd. +PublisherUrl: https://www.wondershare.com/ +PublisherSupportUrl: https://repairit.wondershare.com/support.html +PrivacyUrl: https://www.wondershare.com/privacy.html +Author: Wondershare Technology Group Co., Ltd. +PackageName: Wondershare Repairit +PackageUrl: https://repairit.wondershare.com/ +License: Proprietary +LicenseUrl: https://www.wondershare.com/company/end-user-license-agreement.html +Copyright: Copyright © 2024 Wondershare. All rights reserved. +CopyrightUrl: https://www.wondershare.com/company/terms_conditions.html +ShortDescription: One stop solution to fix broken files +Description: What to do when your videos, photos, files or audios get corrupted or fail to open? Don't worry! Here is a one-stop solution to repair corrupted videos, photos, files and audios regardless of their level of damage. +# Moniker: +Tags: +- docs +- document +- file +- fix +- repair +ReleaseNotes: |- + 1. Supports repair of corrupted XLS format files. + 2. Bug fixes. + 3. Performance improvement. +# ReleaseNotesUrl: +PurchaseUrl: https://repairit.wondershare.com/buy/store.html +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/w/Wondershare/Repairit/5.5.2.4/Wondershare.Repairit.locale.zh-CN.yaml b/manifests/w/Wondershare/Repairit/5.5.2.4/Wondershare.Repairit.locale.zh-CN.yaml new file mode 100644 index 0000000000000..dbc1b3a7b5afc --- /dev/null +++ b/manifests/w/Wondershare/Repairit/5.5.2.4/Wondershare.Repairit.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Wondershare.Repairit +PackageVersion: 5.5.2.4 +PackageLocale: zh-CN +Publisher: Wondershare Software Co.,Ltd. +PublisherUrl: https://www.wondershare.com/ +PublisherSupportUrl: https://repairit.wondershare.com/support.html +PrivacyUrl: https://www.wondershare.com/privacy.html +Author: 万兴科技集团股份有限公司 +PackageName: Wondershare Repairit +PackageUrl: https://repairit.wondershare.com/ +License: 专有软件 +LicenseUrl: https://www.wondershare.com/company/end-user-license-agreement.html +Copyright: Copyright © 2024 Wondershare. All rights reserved. +CopyrightUrl: https://www.wondershare.com/company/terms_conditions.html +ShortDescription: 一站式破损文件修复解决方案 +Description: 视频、照片、文件或音频损坏或打不开怎么办?莫慌!这里有一站式解决方案,无论其损坏程度如何,都能对损坏的视频、照片、文件和音频进行修复。 +# Moniker: +Tags: +- 修复 +- 文件 +- 文档 +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://repairit.wondershare.com/buy/store.html +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/w/Wondershare/Repairit/5.5.2.4/Wondershare.Repairit.yaml b/manifests/w/Wondershare/Repairit/5.5.2.4/Wondershare.Repairit.yaml new file mode 100644 index 0000000000000..81c6be0c242d0 --- /dev/null +++ b/manifests/w/Wondershare/Repairit/5.5.2.4/Wondershare.Repairit.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Wondershare.Repairit +PackageVersion: 5.5.2.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/x/Xiaoyaoyixia/KOOK/0.80.0/Xiaoyaoyixia.KOOK.installer.yaml b/manifests/x/Xiaoyaoyixia/KOOK/0.80.0/Xiaoyaoyixia.KOOK.installer.yaml new file mode 100644 index 0000000000000..6fd23b5e8ba06 --- /dev/null +++ b/manifests/x/Xiaoyaoyixia/KOOK/0.80.0/Xiaoyaoyixia.KOOK.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Xiaoyaoyixia.KOOK +PackageVersion: 0.80.0 +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silentWithProgress +InstallerSwitches: + Silent: -AutoInstall=1 + SilentWithProgress: -AutoInstall=1 +UpgradeBehavior: install +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + InstallerUrl: https://dl.kookapp.cn/assets/release/html_pc/kook_706/Kook_PC_Setup_v0.80.0.0_b2ZmaWNpYWwuc2l0ZS4uLi5wYw==.exe + InstallerSha256: B94D1982CE77D1FBD2F31AD1CFD590491B5E0BF8C1B81C4F37FE51A3AE0E2F16 + ProductCode: KOOK +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/x/Xiaoyaoyixia/KOOK/0.80.0/Xiaoyaoyixia.KOOK.locale.en-US.yaml b/manifests/x/Xiaoyaoyixia/KOOK/0.80.0/Xiaoyaoyixia.KOOK.locale.en-US.yaml new file mode 100644 index 0000000000000..ac80f2029f34b --- /dev/null +++ b/manifests/x/Xiaoyaoyixia/KOOK/0.80.0/Xiaoyaoyixia.KOOK.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Xiaoyaoyixia.KOOK +PackageVersion: 0.80.0 +PackageLocale: en-US +Publisher: KOOK +PublisherUrl: https://www.kookapp.cn/ +PublisherSupportUrl: https://help.kookapp.cn/ +PrivacyUrl: https://www.kookapp.cn/privacy.html +Author: Beijing Xiaoyaoyixia Technology Co., Ltd +PackageName: KOOK +PackageUrl: https://www.kookapp.cn/ +License: Proprietary +LicenseUrl: https://www.kookapp.cn/protocol.html +Copyright: Copyright © 2024 KOOK +# CopyrightUrl: +ShortDescription: An easy-to-use voice chatting tool +Description: KOOK is a free and ad-free voice chatting tool. It is available on PC, Android, iOS and web, so you can chat anywhere. There are various themes of servers on KOOK. You can also create your own servers with themes of gaming, music, reading, foreign languages, etc. according to your preferences, and invite your friends to join in chatting. +Moniker: kaiheila +Tags: +- chat +- talk +- voice +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/x/Xiaoyaoyixia/KOOK/0.80.0/Xiaoyaoyixia.KOOK.locale.zh-CN.yaml b/manifests/x/Xiaoyaoyixia/KOOK/0.80.0/Xiaoyaoyixia.KOOK.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c5caba6931e5d --- /dev/null +++ b/manifests/x/Xiaoyaoyixia/KOOK/0.80.0/Xiaoyaoyixia.KOOK.locale.zh-CN.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Xiaoyaoyixia.KOOK +PackageVersion: 0.80.0 +PackageLocale: zh-CN +Publisher: KOOK +PublisherUrl: https://www.kookapp.cn/ +PublisherSupportUrl: https://help.kookapp.cn/ +PrivacyUrl: https://www.kookapp.cn/privacy.html +Author: 北京逍遥一下科技有限公司 +PackageName: KOOK +PackageUrl: https://www.kookapp.cn/ +License: 专有软件 +LicenseUrl: https://www.kookapp.cn/protocol.html +Copyright: Copyright © 2024 KOOK +# CopyrightUrl: +ShortDescription: 一个好用的语音沟通工具 +Description: KOOK 语音是一款免费无广告的语音沟通工具,目前已覆盖 PC 端、安卓端、iOS 端、网页端设备,无论你在什么地方,都可以畅快沟通。KOOK 里有各种主题的服务器,你也可以根据自己的喜好,创建游戏、音乐、阅读、外语等等主题的服务器,邀请好友加入到你的服务器里谈天说地。 +# Moniker: +Tags: +- 开黑啦 +- 聊天 +- 语音 +ReleaseNotes: |- + 功能新增: + - 新增特定盲盒可赠予他人的功能 + - 新增在系统桌面显示屏幕覆盖的功能。 + 功能优化: + - 优化了消息通知,当客户端在前台的时候也能收到通知提醒。 + - 优化了连接语音提示音的开关功能,现在可以将入场提示音道具一并关闭了。 + - 优化了新手引导,让引导步骤更加流畅。 + - 优化下载文件的体验,可查看下载进度。 + - 优化了服务器邀请功能,添加了邀请明细。 + - 将个人表情与服务器表情的文件体积上限提升至了 1MB。 + 问题修复: + - 修复了文字消息过长的时候导致消息不可见的问题。 + - 修复了伴奏会让闭麦失效的问题。 +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/x/Xiaoyaoyixia/KOOK/0.80.0/Xiaoyaoyixia.KOOK.yaml b/manifests/x/Xiaoyaoyixia/KOOK/0.80.0/Xiaoyaoyixia.KOOK.yaml new file mode 100644 index 0000000000000..bda891f78fa3b --- /dev/null +++ b/manifests/x/Xiaoyaoyixia/KOOK/0.80.0/Xiaoyaoyixia.KOOK.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Xiaoyaoyixia.KOOK +PackageVersion: 0.80.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/x/XmacsLabs/Mogan/1.2.4/XmacsLabs.Mogan.installer.yaml b/manifests/x/XmacsLabs/Mogan/1.2.4/XmacsLabs.Mogan.installer.yaml new file mode 100644 index 0000000000000..a6a701b4199d7 --- /dev/null +++ b/manifests/x/XmacsLabs/Mogan/1.2.4/XmacsLabs.Mogan.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: XmacsLabs.Mogan +PackageVersion: 1.2.4 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +FileExtensions: +- tm +- tp +- ts +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/XmacsLabs/mogan/releases/download/v1.2.4/MoganResearch-v1.2.4-64bit-installer.exe + InstallerSha256: C66FF1721E418CCFC8733119A970820675C16DBA034FD1B599D928726F61F673 + ProductCode: MoganResearch +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/x/XmacsLabs/Mogan/1.2.4/XmacsLabs.Mogan.locale.en-US.yaml b/manifests/x/XmacsLabs/Mogan/1.2.4/XmacsLabs.Mogan.locale.en-US.yaml new file mode 100644 index 0000000000000..2e4399472329e --- /dev/null +++ b/manifests/x/XmacsLabs/Mogan/1.2.4/XmacsLabs.Mogan.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: XmacsLabs.Mogan +PackageVersion: 1.2.4 +PackageLocale: en-US +Publisher: XmacsLabs +PublisherUrl: https://github.com/XmacsLabs +PublisherSupportUrl: https://github.com/XmacsLabs/mogan/issues +# PrivacyUrl: +Author: Darcy Shen +PackageName: Mogan Research +PackageUrl: https://mogan.app/ +License: GPL-3.0 +LicenseUrl: https://github.com/XmacsLabs/mogan/blob/branch-1.2/LICENSE +Copyright: © 2020-2024 by Xmacs Labs +CopyrightUrl: https://github.com/XmacsLabs/mogan/blob/branch-1.2/COPYING +ShortDescription: A structured editor based on GNU TeXmacs +Description: |- + Mogan Editor is a structure editor delivered by the Xmacs Labs. + Mogan Editor is a libre software forked from GNU TeXmacs. +# Moniker: +Tags: +- article +- docs +- document +- editing +- editor +- latex +- tex +- texmacs +- writing +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/XmacsLabs/mogan/releases/tag/v1.2.4 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/x/XmacsLabs/Mogan/1.2.4/XmacsLabs.Mogan.locale.zh-CN.yaml b/manifests/x/XmacsLabs/Mogan/1.2.4/XmacsLabs.Mogan.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b35d68adf944f --- /dev/null +++ b/manifests/x/XmacsLabs/Mogan/1.2.4/XmacsLabs.Mogan.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: XmacsLabs.Mogan +PackageVersion: 1.2.4 +PackageLocale: zh-CN +Publisher: XmacsLabs +PublisherUrl: https://gitee.com/XmacsLabs +PublisherSupportUrl: https://gitee.com/XmacsLabs/mogan/issues +# PrivacyUrl: +Author: 沈浪熊猫儿 +PackageName: Mogan Research +PackageUrl: https://mogan.app/ +License: GPL-3.0 +LicenseUrl: https://gitee.com/XmacsLabs/mogan/blob/branch-1.2/LICENSE +Copyright: © 2020-2024 by Xmacs Labs +CopyrightUrl: https://gitee.com/XmacsLabs/mogan/blob/branch-1.2/COPYING +ShortDescription: 基于 GNU TeXmacs 的结构化编辑器 +Description: |- + 墨干编辑器是墨者实验室旗下的结构化编辑器。 + 墨干编辑器基于 GNU TeXmacs 研发定制的自由软件。 +# Moniker: +Tags: +- latex +- tex +- texmacs +- 写作 +- 文档 +- 文稿 +- 文章 +- 编辑 +- 编辑器 +- 墨干编辑器 +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/XmacsLabs/mogan/releases/tag/v1.2.4 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/x/XmacsLabs/Mogan/1.2.4/XmacsLabs.Mogan.yaml b/manifests/x/XmacsLabs/Mogan/1.2.4/XmacsLabs.Mogan.yaml new file mode 100644 index 0000000000000..204b167a22daf --- /dev/null +++ b/manifests/x/XmacsLabs/Mogan/1.2.4/XmacsLabs.Mogan.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: XmacsLabs.Mogan +PackageVersion: 1.2.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/x/Xmind/Xmind/24.1.13311/Xmind.Xmind.installer.yaml b/manifests/x/Xmind/Xmind/24.1.13311/Xmind.Xmind.installer.yaml new file mode 100644 index 0000000000000..8c895bf1339f1 --- /dev/null +++ b/manifests/x/Xmind/Xmind/24.1.13311/Xmind.Xmind.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Xmind.Xmind +PackageVersion: 24.1.13311 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- xmind-zen +FileExtensions: +- xmind +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x64 + InstallerUrl: https://www.xmind.app/xmind/downloads/Xmind-for-Windows-x64bit-24.01.13311-202401310003.exe + InstallerSha256: 73CC5B8F5E6614DDCB0CCC1BFDFC48879B97EA094ACD4EEF04D6101D4B6A1E3A + ProductCode: fbd30ee5-8150-549e-9aed-fd9d444364fb +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/x/Xmind/Xmind/24.1.13311/Xmind.Xmind.locale.en-US.yaml b/manifests/x/Xmind/Xmind/24.1.13311/Xmind.Xmind.locale.en-US.yaml new file mode 100644 index 0000000000000..e5c9d674c79a1 --- /dev/null +++ b/manifests/x/Xmind/Xmind/24.1.13311/Xmind.Xmind.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Xmind.Xmind +PackageVersion: 24.1.13311 +PackageLocale: en-US +Publisher: XMIND LTD. +PublisherUrl: https://xmind.app/ +PublisherSupportUrl: https://support.xmind.net/ +PrivacyUrl: https://xmind.app/privacy/ +Author: Xmind Ltd. +PackageName: Xmind +PackageUrl: https://xmind.app/ +License: Proprietary +LicenseUrl: https://xmind.app/terms/ +Copyright: © 2006 - 2024 XMIND LTD. +# CopyrightUrl: +ShortDescription: A full-featured Swiss Army Knife for your brain. +Description: The full-featured mind mapping and brainstorming app. Like a Swiss Army Knife, Xmind offers a complete toolset for thinking and creativity. +Moniker: xmind-zen +Tags: +- mind-map +- mind-mapping +- mindmap +ReleaseNotes: |- + 1. Extend the scope of "Auto Sort" switch to global when inserting labels; + 2. Preserve Rich Text Styles during copy-paste operations in edit mode; + 3. Preserve Rich Text Styles during updating styles; + 4. Fix an issue that Note might be lost when opening some old files; + 5. Fix an issue that the progress bar might get stuck when exporting maps split by main branch to PNG; + 6. Fix an issue that the Scale setting might not work when exporting maps split by main branch to PNG; + 7. Fix an issue that cutting function might not work while editing the central topic; + 8. Fixed some other known issues. +ReleaseNotesUrl: https://xmind.app/desktop/release-notes/ +PurchaseUrl: https://xmind.app/pricing/ +# InstallationNotes: +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://xmind.app/user-guide/xmind +- DocumentLabel: FAQ + DocumentUrl: https://xmind.app/faq +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/x/Xmind/Xmind/24.1.13311/Xmind.Xmind.locale.zh-CN.yaml b/manifests/x/Xmind/Xmind/24.1.13311/Xmind.Xmind.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ff70bf9a2dca7 --- /dev/null +++ b/manifests/x/Xmind/Xmind/24.1.13311/Xmind.Xmind.locale.zh-CN.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Xmind.Xmind +PackageVersion: 24.1.13311 +PackageLocale: zh-CN +Publisher: XMIND LTD. +PublisherUrl: https://xmind.cn/ +PublisherSupportUrl: https://support.xmind.net/ +PrivacyUrl: https://xmind.cn/privacy/ +Author: 深圳市爱思软件技术有限公司 +PackageName: Xmind +PackageUrl: https://xmind.cn/ +License: 专有软件 +LicenseUrl: https://xmind.cn/terms/ +Copyright: © 2006 - 2024 XMIND LTD. +# CopyrightUrl: +ShortDescription: 思如泉涌,成竹在图 +Description: Xmind 是一款 全功能 的思维导图和头脑风暴软件。像大脑的瑞士军刀一般,助你理清思路,捕捉创意。 +# Moniker: +Tags: +- 思维导图 +- 脑图 +ReleaseNotes: |- + 1. 优化了插入标签时“自动排序”开关的作用范围; + 2. 支持编辑态下复制粘贴时保留富文本样式; + 3. 支持样式更新时保留富文本样式; + 4. 修复了老文件打开后笔记内容可能丢失的问题; + 5. 修复了文件按主分支拆分导出 PNG 时,进度条卡死的问题; + 6. 修复了文件按主分支拆分导出 PNG 时,设置缩放比不生效的问题; + 7. 修复了中心主题编辑态剪切功能失效的问题; + 8. 修复了部分其他已知问题。 +ReleaseNotesUrl: https://xmind.cn/desktop/release-notes/ +PurchaseUrl: https://xmind.cn/pricing +# InstallationNotes: +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://xmind.cn/user-guide/xmind/ +- DocumentLabel: 常见问题 + DocumentUrl: https://xmind.cn/faq/ +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/x/Xmind/Xmind/24.1.13311/Xmind.Xmind.yaml b/manifests/x/Xmind/Xmind/24.1.13311/Xmind.Xmind.yaml new file mode 100644 index 0000000000000..96e2a63331a1c --- /dev/null +++ b/manifests/x/Xmind/Xmind/24.1.13311/Xmind.Xmind.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Xmind.Xmind +PackageVersion: 24.1.13311 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/x/xavidop/cxcli/1.164.0/xavidop.cxcli.installer.yaml b/manifests/x/xavidop/cxcli/1.164.0/xavidop.cxcli.installer.yaml new file mode 100644 index 0000000000000..a77d080c9fc2c --- /dev/null +++ b/manifests/x/xavidop/cxcli/1.164.0/xavidop.cxcli.installer.yaml @@ -0,0 +1,34 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json +PackageIdentifier: xavidop.cxcli +PackageVersion: 1.164.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-01-31" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cxcli.exe + PortableCommandAlias: cxcli + InstallerUrl: https://github.com/xavidop/dialogflow-cx-cli/releases/download/v1.164.0/cxcli_Windows_x86_64.zip + InstallerSha256: bee7ab8fec60fd4859a3b8b34126d23a07a2604da777024b5adca5ab55d18d0d + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cxcli.exe + PortableCommandAlias: cxcli + InstallerUrl: https://github.com/xavidop/dialogflow-cx-cli/releases/download/v1.164.0/cxcli_Windows_arm64.zip + InstallerSha256: 7600dee8b99469ed4e38409eb8ed728b46b52c62051fca0b09dfeb8c91a08127 + UpgradeBehavior: uninstallPrevious + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cxcli.exe + PortableCommandAlias: cxcli + InstallerUrl: https://github.com/xavidop/dialogflow-cx-cli/releases/download/v1.164.0/cxcli_Windows_i386.zip + InstallerSha256: 340b5132f2a6fbad7e95410cc90bf6e170f7edb7af6128917da3502a183c779f + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/x/xavidop/cxcli/1.164.0/xavidop.cxcli.locale.en-US.yaml b/manifests/x/xavidop/cxcli/1.164.0/xavidop.cxcli.locale.en-US.yaml new file mode 100644 index 0000000000000..8661fea27b120 --- /dev/null +++ b/manifests/x/xavidop/cxcli/1.164.0/xavidop.cxcli.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.5.0.schema.json +PackageIdentifier: xavidop.cxcli +PackageVersion: 1.164.0 +PackageLocale: en-US +Publisher: xavidop +PackageName: cxcli +PackageUrl: https://cxcli.xavidop.me +License: Apache-2.0 +ShortDescription: The missing CLI for your Dialogflow CX projects +Moniker: cxcli +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/x/xavidop/cxcli/1.164.0/xavidop.cxcli.yaml b/manifests/x/xavidop/cxcli/1.164.0/xavidop.cxcli.yaml new file mode 100644 index 0000000000000..95136489fde03 --- /dev/null +++ b/manifests/x/xavidop/cxcli/1.164.0/xavidop.cxcli.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.5.0.schema.json +PackageIdentifier: xavidop.cxcli +PackageVersion: 1.164.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/x/xavidop/cxcli/1.165.0/xavidop.cxcli.installer.yaml b/manifests/x/xavidop/cxcli/1.165.0/xavidop.cxcli.installer.yaml new file mode 100644 index 0000000000000..cb11fd1398b82 --- /dev/null +++ b/manifests/x/xavidop/cxcli/1.165.0/xavidop.cxcli.installer.yaml @@ -0,0 +1,34 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json +PackageIdentifier: xavidop.cxcli +PackageVersion: 1.165.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-01-31" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cxcli.exe + PortableCommandAlias: cxcli + InstallerUrl: https://github.com/xavidop/dialogflow-cx-cli/releases/download/v1.165.0/cxcli_Windows_i386.zip + InstallerSha256: e28dc5494cc450ecc9f518a12bfebaed9af5c3d16a9e06f660611000c5739a42 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cxcli.exe + PortableCommandAlias: cxcli + InstallerUrl: https://github.com/xavidop/dialogflow-cx-cli/releases/download/v1.165.0/cxcli_Windows_arm64.zip + InstallerSha256: c942727b9c2eafcf4fa5615fe0e94678513d62865aa3193cfe0bf53f6f4cba4a + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cxcli.exe + PortableCommandAlias: cxcli + InstallerUrl: https://github.com/xavidop/dialogflow-cx-cli/releases/download/v1.165.0/cxcli_Windows_x86_64.zip + InstallerSha256: ee1858751342a960e52f99dc0ce183a23cf3af96d921cf431308430c892ac5b1 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/x/xavidop/cxcli/1.165.0/xavidop.cxcli.locale.en-US.yaml b/manifests/x/xavidop/cxcli/1.165.0/xavidop.cxcli.locale.en-US.yaml new file mode 100644 index 0000000000000..63a02e7e926c8 --- /dev/null +++ b/manifests/x/xavidop/cxcli/1.165.0/xavidop.cxcli.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.5.0.schema.json +PackageIdentifier: xavidop.cxcli +PackageVersion: 1.165.0 +PackageLocale: en-US +Publisher: xavidop +PackageName: cxcli +PackageUrl: https://cxcli.xavidop.me +License: Apache-2.0 +ShortDescription: The missing CLI for your Dialogflow CX projects +Moniker: cxcli +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/x/xavidop/cxcli/1.165.0/xavidop.cxcli.yaml b/manifests/x/xavidop/cxcli/1.165.0/xavidop.cxcli.yaml new file mode 100644 index 0000000000000..aca4f5ac666b2 --- /dev/null +++ b/manifests/x/xavidop/cxcli/1.165.0/xavidop.cxcli.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.5.0.schema.json +PackageIdentifier: xavidop.cxcli +PackageVersion: 1.165.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/x/xavidop/cxcli/1.166.0/xavidop.cxcli.installer.yaml b/manifests/x/xavidop/cxcli/1.166.0/xavidop.cxcli.installer.yaml new file mode 100644 index 0000000000000..077e49a633f19 --- /dev/null +++ b/manifests/x/xavidop/cxcli/1.166.0/xavidop.cxcli.installer.yaml @@ -0,0 +1,34 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json +PackageIdentifier: xavidop.cxcli +PackageVersion: 1.166.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-01-31" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cxcli.exe + PortableCommandAlias: cxcli + InstallerUrl: https://github.com/xavidop/dialogflow-cx-cli/releases/download/v1.166.0/cxcli_Windows_arm64.zip + InstallerSha256: ed5c662f20e43c409668cdf2a2800e9ef16ca35842fcbcb1fd0bf403323e1fa8 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cxcli.exe + PortableCommandAlias: cxcli + InstallerUrl: https://github.com/xavidop/dialogflow-cx-cli/releases/download/v1.166.0/cxcli_Windows_x86_64.zip + InstallerSha256: baebaab023e4ddbfce26a1e1d11696c0976a9fb13a01a249981edb6121e8b965 + UpgradeBehavior: uninstallPrevious + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: cxcli.exe + PortableCommandAlias: cxcli + InstallerUrl: https://github.com/xavidop/dialogflow-cx-cli/releases/download/v1.166.0/cxcli_Windows_i386.zip + InstallerSha256: f168cddc8ba7794494e6dbca620b22402731a595d397f5f37baef0990de201f0 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/x/xavidop/cxcli/1.166.0/xavidop.cxcli.locale.en-US.yaml b/manifests/x/xavidop/cxcli/1.166.0/xavidop.cxcli.locale.en-US.yaml new file mode 100644 index 0000000000000..8463a6b55221e --- /dev/null +++ b/manifests/x/xavidop/cxcli/1.166.0/xavidop.cxcli.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.5.0.schema.json +PackageIdentifier: xavidop.cxcli +PackageVersion: 1.166.0 +PackageLocale: en-US +Publisher: xavidop +PackageName: cxcli +PackageUrl: https://cxcli.xavidop.me +License: Apache-2.0 +ShortDescription: The missing CLI for your Dialogflow CX projects +Moniker: cxcli +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/x/xavidop/cxcli/1.166.0/xavidop.cxcli.yaml b/manifests/x/xavidop/cxcli/1.166.0/xavidop.cxcli.yaml new file mode 100644 index 0000000000000..9edf2eae1039f --- /dev/null +++ b/manifests/x/xavidop/cxcli/1.166.0/xavidop.cxcli.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.5.0.schema.json +PackageIdentifier: xavidop.cxcli +PackageVersion: 1.166.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/x/xavidop/cxcli/1.167.0/xavidop.cxcli.installer.yaml b/manifests/x/xavidop/cxcli/1.167.0/xavidop.cxcli.installer.yaml new file mode 100644 index 0000000000000..97b0bcc9a1cf7 --- /dev/null +++ b/manifests/x/xavidop/cxcli/1.167.0/xavidop.cxcli.installer.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: xavidop.cxcli +PackageVersion: 1.167.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cxcli.exe + PortableCommandAlias: cxcli +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/xavidop/dialogflow-cx-cli/releases/download/v1.167.0/cxcli_Windows_i386.zip + InstallerSha256: 945D0E7A16FC2E60CC617032D4AEC37760A28623A126AEC7BECB53E4D6619549 +- Architecture: x64 + InstallerUrl: https://github.com/xavidop/dialogflow-cx-cli/releases/download/v1.167.0/cxcli_Windows_x86_64.zip + InstallerSha256: 5EB6C9C5B1E24BE9C295088D452ED8B7437D4AD2DF47655A4BFB2F504E88E48D +- Architecture: arm64 + InstallerUrl: https://github.com/xavidop/dialogflow-cx-cli/releases/download/v1.167.0/cxcli_Windows_arm64.zip + InstallerSha256: 96815D557D006ABE04CA7ABF9E82CE52A689F5A391986DB7FA84AD815B03FC9B +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/x/xavidop/cxcli/1.167.0/xavidop.cxcli.locale.en-US.yaml b/manifests/x/xavidop/cxcli/1.167.0/xavidop.cxcli.locale.en-US.yaml new file mode 100644 index 0000000000000..3765e1d492520 --- /dev/null +++ b/manifests/x/xavidop/cxcli/1.167.0/xavidop.cxcli.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: xavidop.cxcli +PackageVersion: 1.167.0 +PackageLocale: en-US +Publisher: xavidop +PublisherUrl: https://github.com/xavidop +PackageName: cxcli +PackageUrl: https://cxcli.xavidop.me/ +License: Apache-2.0 +LicenseUrl: https://github.com/xavidop/dialogflow-cx-cli/blob/HEAD/LICENSE.md +ShortDescription: The missing CLI for your Dialogflow CX projects +Moniker: cxcli +Tags: +- cli +- cxcli +- dialogflow +- dialogflow-cx +- dialogflowcx +- golang +- nlp +- nlu +- test-automation +- testing-tools +ReleaseNotes: |- + 1.167.0 (2024-01-31) + Feature + - deps: bump cloud.google.com/go/speech from 1.21.0 to 1.21.1 (#215) (7ee34a9c) +ReleaseNotesUrl: https://github.com/xavidop/dialogflow-cx-cli/releases/tag/v1.167.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/x/xavidop/cxcli/1.167.0/xavidop.cxcli.yaml b/manifests/x/xavidop/cxcli/1.167.0/xavidop.cxcli.yaml new file mode 100644 index 0000000000000..d9ac11bef68cb --- /dev/null +++ b/manifests/x/xavidop/cxcli/1.167.0/xavidop.cxcli.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: xavidop.cxcli +PackageVersion: 1.167.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/y/Yandex/Disk/3.2.37.4977/Yandex.Disk.installer.yaml b/manifests/y/Yandex/Disk/3.2.37.4977/Yandex.Disk.installer.yaml new file mode 100644 index 0000000000000..df32c3fda6d69 --- /dev/null +++ b/manifests/y/Yandex/Disk/3.2.37.4977/Yandex.Disk.installer.yaml @@ -0,0 +1,14 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: Yandex.Disk +PackageVersion: 3.2.37.4977 +Installers: +- Architecture: x64 + InstallerType: exe + InstallerUrl: https://webdav.yandex.ru/share/dist/YandexDisk30SetupPack.exe + InstallerSha256: 431009BB5181147C73401CD2F17765EF0B179129A7771AB6C49BCFB1452692CA + InstallerSwitches: + Silent: -silent +ManifestType: installer +ManifestVersion: 1.4.0 diff --git a/manifests/y/Yandex/Disk/3.2.37.4977/Yandex.Disk.locale.en-US.yaml b/manifests/y/Yandex/Disk/3.2.37.4977/Yandex.Disk.locale.en-US.yaml new file mode 100644 index 0000000000000..e6948903bab64 --- /dev/null +++ b/manifests/y/Yandex/Disk/3.2.37.4977/Yandex.Disk.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: Yandex.Disk +PackageVersion: 3.2.37.4977 +PackageLocale: en-US +Publisher: YANDEX +PublisherUrl: https://yandex.com/ +PublisherSupportUrl: https://yandex.com/support/ +PrivacyUrl: https://yandex.com/legal/confidential +PackageName: Yandex Disk +PackageUrl: https://disk.yandex.ru/ +License: Proprietary +Copyright: Copyright (c) 2012-2023 YANDEX LLC. All Rights Reserved. +ShortDescription: Yandex Disk is a Yandex 360 service. Your own space to manage day-to-day tasks - from storing personal memories to writing business emails. +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/y/Yandex/Disk/3.2.37.4977/Yandex.Disk.yaml b/manifests/y/Yandex/Disk/3.2.37.4977/Yandex.Disk.yaml new file mode 100644 index 0000000000000..a5e7fddbf86f5 --- /dev/null +++ b/manifests/y/Yandex/Disk/3.2.37.4977/Yandex.Disk.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2024/Jan/31 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: Yandex.Disk +PackageVersion: 3.2.37.4977 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/y/Youdao/YoudaoTranslate/10.2.0.0/Youdao.YoudaoTranslate.installer.yaml b/manifests/y/Youdao/YoudaoTranslate/10.2.0.0/Youdao.YoudaoTranslate.installer.yaml new file mode 100644 index 0000000000000..f03e2cd322f6c --- /dev/null +++ b/manifests/y/Youdao/YoudaoTranslate/10.2.0.0/Youdao.YoudaoTranslate.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 v2.2.10 $debug=AUSU.CRLF.7-2-13.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.5.0/manifest.installer.1.5.0.json + +PackageIdentifier: Youdao.YoudaoTranslate +PackageVersion: 10.2.0.0 +MinimumOSVersion: 10.0.0.0 +InstallerType: exe +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +Installers: +- Architecture: x86 + InstallerUrl: https://download.ydstatic.com/cidian/static/10.2/20240201/YoudaoDictSetup.exe + InstallerSha256: 6E2225189E2A5C0F52F8A2BDA204FE8AEBB97E0C805DF4E60B5C9013E8A23C53 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/y/Youdao/YoudaoTranslate/10.2.0.0/Youdao.YoudaoTranslate.locale.zh-CN.yaml b/manifests/y/Youdao/YoudaoTranslate/10.2.0.0/Youdao.YoudaoTranslate.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d917b1b46331e --- /dev/null +++ b/manifests/y/Youdao/YoudaoTranslate/10.2.0.0/Youdao.YoudaoTranslate.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 v2.2.10 $debug=AUSU.CRLF.7-2-13.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.5.0/manifest.defaultLocale.1.5.0.json + +PackageIdentifier: Youdao.YoudaoTranslate +PackageVersion: 10.2.0.0 +PackageLocale: zh-CN +Publisher: 网易公司 +PublisherUrl: https://cidian.youdao.com/ +# PublisherSupportUrl: +PrivacyUrl: https://c.youdao.com/dict/law/youdao_agreement/privacy.html +Author: Youdao +PackageName: 网易有道翻译 +# PackageUrl: +License: Proprietary +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Netease Youdao translate - The most powerful translation productivity tool ever seen. +# Description: +Moniker: youdaotranslate +Tags: +- cloud +- dict +- dictionary +- online +- translate +ReleaseNotes: |- + -Fixed some known issues and further optimized the experience~ +ReleaseNotesUrl: https://fanyi.youdao.com/download-release-notes/ +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/y/Youdao/YoudaoTranslate/10.2.0.0/Youdao.YoudaoTranslate.yaml b/manifests/y/Youdao/YoudaoTranslate/10.2.0.0/Youdao.YoudaoTranslate.yaml new file mode 100644 index 0000000000000..7229e0da51614 --- /dev/null +++ b/manifests/y/Youdao/YoudaoTranslate/10.2.0.0/Youdao.YoudaoTranslate.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.2.10 $debug=AUSU.CRLF.7-2-13.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.5.0/manifest.version.1.5.0.json + +PackageIdentifier: Youdao.YoudaoTranslate +PackageVersion: 10.2.0.0 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/y/yt-dlp/yt-dlp/nightly/2024.01.31.232703/yt-dlp.yt-dlp.nightly.installer.yaml b/manifests/y/yt-dlp/yt-dlp/nightly/2024.01.31.232703/yt-dlp.yt-dlp.nightly.installer.yaml new file mode 100644 index 0000000000000..b682416359021 --- /dev/null +++ b/manifests/y/yt-dlp/yt-dlp/nightly/2024.01.31.232703/yt-dlp.yt-dlp.nightly.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: yt-dlp.yt-dlp.nightly +PackageVersion: 2024.01.31.232703 +InstallerLocale: en-US +InstallerType: portable +Commands: +- yt-dlp +Dependencies: + PackageDependencies: + - PackageIdentifier: Gyan.FFmpeg +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/download/2024.01.31.232703/yt-dlp_x86.exe + InstallerSha256: 4F037744D8A10B1AA4A884BB9F14EC5E751B2581FB0E1AB0BE946A72794865C7 +- Architecture: x64 + InstallerUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/download/2024.01.31.232703/yt-dlp.exe + InstallerSha256: E207DDBD1420945BB4C556BE85587485A722FF3E6C6FA1E18467D882DB7CA141 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/y/yt-dlp/yt-dlp/nightly/2024.01.31.232703/yt-dlp.yt-dlp.nightly.locale.en-US.yaml b/manifests/y/yt-dlp/yt-dlp/nightly/2024.01.31.232703/yt-dlp.yt-dlp.nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..6bfdb8bf00f37 --- /dev/null +++ b/manifests/y/yt-dlp/yt-dlp/nightly/2024.01.31.232703/yt-dlp.yt-dlp.nightly.locale.en-US.yaml @@ -0,0 +1,114 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: yt-dlp.yt-dlp.nightly +PackageVersion: 2024.01.31.232703 +PackageLocale: en-US +Publisher: yt-dlp +PublisherUrl: https://github.com/yt-dlp +PublisherSupportUrl: https://github.com/yt-dlp/yt-dlp/issues +PackageName: yt-dlp-nightly +PackageUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds +License: The Unlicense +LicenseUrl: https://github.com/yt-dlp/yt-dlp/blob/master/LICENSE +Copyright: Copyright (c) pukkandan.ytdlp@gmail.com | UNLICENSE +ShortDescription: yt-dlp nightly +Description: yt-dlp nightly builds +Moniker: yt-dlp-nightly +Tags: +- development +- nightly +- open-source +- yt-dlp +ReleaseNotes: |- + Generated from: Installation instructionsInstallation DocumentationDocumentation DonateDonate DiscordDiscord A description of the various files are in the README + + Core changes + - Add --compat-options 2023 (#9084) by Grub4K + - Don't select storyboard formats as fallback by bashonly + - cookies- Fix --cookies-from-browser for snap Firefox (#9016) by Grub4K + - Fix --cookies-from-browser with macOS Firefox profiles (#8909) by RalphORama + - Improve error message for Windows --cookies-from-browser chrome issue (#9080) by Grub4K + + - utils: traverse_obj: Support xml.etree.ElementTree.Element (#8911) by Grub4K + - webvtt: Don't parse single fragment files (#9034) by seproDev + Extractor changes + - abematv- Fix extraction with cache (#8895) by sefidel + - Support login for playlists (#8901) by sefidel + + - adn- Add support for German site (#8708) by infanf + - Improve auth error handling (#9068) by infanf + + - aenetworks: Rating should be optional for AP extraction (#9005) by agibson-fl + - amadeustv: Add extractor (#8744) by ArnauvGilotra + - ard- mediathek- Revert to using old id (#8916) by Grub4K + - Support cookies to verify age (#9037) by StefanLobbenmeier + + + - art19: Add extractors (#9099) by seproDev + - artetv: Separate closed captions (#8231) by Nicals, seproDev + - asobichannel: Add extractors (#8700) by Snack-X + - bigo: Fix JSON extraction (#8893) by DmitryScaletta + - bilibili: Add referer header and fix metadata extraction (#8832) by SirElderling + - biliintl: Fix and improve subtitles extraction (#7077) by dirkf, HobbyistDev, itachi-19, seproDev + - chzzk: Add extractors (#8887) by DmitryScaletta + - cineverse: Detect when login required (#9081) by garret1317 + - cloudflarestream: Extract subtitles (#9007) by Bibhav48 + - cloudycdn, lsm: Add extractors (#8643) by Caesim404 + - elementorembed: Add extractor (#8948) by pompos02, seproDev + - errjupiter: Add extractor (#8549) by glensc + - facebook- Add new ID format (#3824) by kclauhk, Wikidepia + - Improve thumbnail extraction (#9060) by kclauhk + - Set format HTTP chunk size (#9058) by bashonly, kclauhk + - Support events (#9055) by kclauhk + - Support permalink URLs (#9061) by kclauhk + - ads: Add extractor (#8870) by kclauhk + + - floatplane: Improve metadata extraction (#8934) by chtk + - getcourseru: Add extractors (#8873) by divStar, seproDev + - gofile: Fix extraction (#9074) by jazz1611 + - googledrive: Fix source file extraction (#8990) by jazz1611 + - gopro: Fix extractor (#9019) by stilor + - ilpost: Add extractor (#9001) by CapacitorSet + - jiosaavnsong: Support more bitrates (#8834) by alien-developers, bashonly + - kukululive: Add extractor (#8877) by DmitryScaletta + - magentamusik: Add extractor (#7790) by pwaldhauer, seproDev + - medaltv: Fix extraction (#9098) by Danish-H + - mlbarticle: Fix extractor (#9021) by HobbyistDev + - motherless: Support uploader playlists (#8994) by dasidiot + - mx3: Add extractors (#8736) by martinxyz + - naver: Fix extractors (#8883) by seproDev + - newgrounds: user: Fix extractor (#9046) by u-spec-png + - nfb: Add support for onf.ca and series (#8997) by bashonly, rrgomes + - nhkradirulive: Make metadata extraction non-fatal (#8956) by garret1317 + - ninaprotocol: Add extractor (#8946) by RaduManole, seproDev + - ninenews: Add extractor (#8840) by SirElderling + - patreon: Fix embedded HLS extraction (#8993) by johnvictorfs + - piapro: Improve _VALID_URL (#8999) by FinnRG + - playsuisse: Add login support (#9077) by chkuendig + - pr0gramm: Enable POL filter and provide tags without login (#9051) by Grub4K + - prankcastpost: Add extractor (#8933) by columndeeply + - redcdnlivx, sejm: Add extractors (#8676) by selfisekai + - redtube- Fix formats extraction (#9076) by jazz1611 + - Support redtube.com.br URLs (#9103) by jazz1611 + + - rinsefmartistplaylist: Add extractor (#8794) by SirElderling + - rule34video- Extract more metadata (#7416) by gmes78 + - Fix _VALID_URL (#9044) by gmes78 + + - rumblechannel: Fix extractor (#9092) by Pranaxcau, vista-narvas + - trtworld: Add extractor (#8701) by ufukk + - twitch: Fix m3u8 extraction (#8960) by DmitryScaletta + - txxx: Extract thumbnails (#9063) by shmohawk + - vbox7: Fix extractor (#9100) by seproDev + - viewlift: Add support for chorki.com (#9095) by NurTasin + - viously: Add extractor (#8927) by nbr23, seproDev + Networking changes + - Remove _CompatHTTPError (#8871) by coletdjnz + - Request Handler: requests: Apply remove_dot_segments to absolute redirect locations by coletdjnz + Misc. changes + - cleanup: Fix typo in README.md (#8894) by antonkesy + - test: Skip source address tests if the address cannot be bound to (#8900) by coletdjnz +ReleaseNotesUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/tag/2024.01.31.232703 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/y/yt-dlp/yt-dlp/nightly/2024.01.31.232703/yt-dlp.yt-dlp.nightly.yaml b/manifests/y/yt-dlp/yt-dlp/nightly/2024.01.31.232703/yt-dlp.yt-dlp.nightly.yaml new file mode 100644 index 0000000000000..5c2655ca57ad4 --- /dev/null +++ b/manifests/y/yt-dlp/yt-dlp/nightly/2024.01.31.232703/yt-dlp.yt-dlp.nightly.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: yt-dlp.yt-dlp.nightly +PackageVersion: 2024.01.31.232703 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/z/Zoom/Zoom/5.17.5.31030/Zoom.Zoom.installer.yaml b/manifests/z/Zoom/Zoom/5.17.5.31030/Zoom.Zoom.installer.yaml index 4123ec644ce64..b060613ef9c2f 100644 --- a/manifests/z/Zoom/Zoom/5.17.5.31030/Zoom.Zoom.installer.yaml +++ b/manifests/z/Zoom/Zoom/5.17.5.31030/Zoom.Zoom.installer.yaml @@ -67,7 +67,7 @@ Installers: ProductCode: '{EC7587BB-30F4-4997-A278-4BAA1A33EC27}' AppsAndFeaturesEntries: - DisplayName: Zoom (32-bit) - DisplayVersion: 5.17.31030 + DisplayVersion: 5.17.5 (31030) ProductCode: '{EC7587BB-30F4-4997-A278-4BAA1A33EC27}' UpgradeCode: '{C819B794-A45C-4F27-9860-0C86492A52CC}' - Architecture: x64 @@ -78,7 +78,7 @@ Installers: ProductCode: '{91FD060F-B754-4A33-8DAA-093B9F095638}' AppsAndFeaturesEntries: - DisplayName: Zoom (64-bit) - DisplayVersion: 5.17.31030 + DisplayVersion: 5.17.5 (31030) ProductCode: '{91FD060F-B754-4A33-8DAA-093B9F095638}' UpgradeCode: '{C819B794-A45C-4F27-9860-0C86492A52CC}' - Architecture: arm64 diff --git a/manifests/z/Zoom/Zoom/5.17.7.31859/Zoom.Zoom.installer.yaml b/manifests/z/Zoom/Zoom/5.17.7.31859/Zoom.Zoom.installer.yaml new file mode 100644 index 0000000000000..ba2c19b65dc56 --- /dev/null +++ b/manifests/z/Zoom/Zoom/5.17.7.31859/Zoom.Zoom.installer.yaml @@ -0,0 +1,96 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Zoom.Zoom +PackageVersion: 5.17.7.31859 +UpgradeBehavior: install +Protocols: +- zoom +- zoommtg +FileExtensions: +- zoommtg +- zoomphonecall +Installers: +- Architecture: x86 + InstallerType: exe + Scope: user + InstallerUrl: https://zoom.us/client/5.17.7.31859/ZoomInstallerFull.exe + InstallerSha256: EE812951ACD2CA93FEB4CDEF0B261D0F5351F4635C5F501B599EDB241D4755B6 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent + ProductCode: ZoomUMX + AppsAndFeaturesEntries: + - Publisher: Zoom Video Communications, Inc. + DisplayVersion: 5.17.7 (31859) + ProductCode: ZoomUMX +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://zoom.us/client/5.17.7.31859/ZoomInstallerFull.exe?archType=x64 + InstallerSha256: B5BA97E3E60FE3A6693DDAD1F7197B26A33FD125F57436BA1DDE758A43A66C8F + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent + ProductCode: ZoomUMX + AppsAndFeaturesEntries: + - Publisher: Zoom Video Communications, Inc. + DisplayVersion: 5.17.7 (31859) + ProductCode: ZoomUMX +- Architecture: arm64 + InstallerType: exe + Scope: user + InstallerUrl: https://zoom.us/client/5.17.7.31859/ZoomInstallerFull.exe?archType=winarm64 + InstallerSha256: BF22DB132C396E390EE27CA80ACB393B5D796E4293D2210D55242A6C69140D59 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent + ProductCode: ZoomUMX + AppsAndFeaturesEntries: + - Publisher: Zoom Video Communications, Inc. + DisplayVersion: 5.17.7 (31859) + ProductCode: ZoomUMX +- Architecture: x86 + InstallerType: msi + Scope: machine + InstallerUrl: https://zoom.us/client/5.17.7.31859/ZoomInstallerFull.msi + InstallerSha256: 19ACFAA6BF141E833DC62353561555BEFFEB670BA5F0DD0E657D38C377E0C7CD + ProductCode: '{829BFEC0-7900-490D-B30D-61737D79AFC4}' + AppsAndFeaturesEntries: + - DisplayName: Zoom (32-bit) + DisplayVersion: 5.17.31859 + ProductCode: '{829BFEC0-7900-490D-B30D-61737D79AFC4}' + UpgradeCode: '{C819B794-A45C-4F27-9860-0C86492A52CC}' +- Architecture: x64 + InstallerType: msi + Scope: machine + InstallerUrl: https://zoom.us/client/5.17.7.31859/ZoomInstallerFull.msi?archType=x64 + InstallerSha256: BAD90EB5984DE4F74C7CA894347E87137B041B9545E042AE723633C3266B1916 + ProductCode: '{499EA83F-642D-40CB-A55E-5D385DEDD376}' + AppsAndFeaturesEntries: + - DisplayName: Zoom (64-bit) + DisplayVersion: 5.17.31859 + ProductCode: '{499EA83F-642D-40CB-A55E-5D385DEDD376}' + UpgradeCode: '{C819B794-A45C-4F27-9860-0C86492A52CC}' +- Architecture: arm64 + InstallerType: msi + Scope: machine + InstallerUrl: https://zoom.us/client/5.17.7.31859/ZoomInstallerFull.msi?archType=winarm64 + InstallerSha256: DAC3A919454452E3AC785D28525C2DE51B0BF7F16E0BE82A9FC373DE7E48F6BD + ProductCode: '{A8900C28-796F-4B6F-8D5D-2878D82984A4}' + AppsAndFeaturesEntries: + - DisplayName: Zoom (ARM64) + DisplayVersion: 5.17.31859 + ProductCode: '{A8900C28-796F-4B6F-8D5D-2878D82984A4}' + UpgradeCode: '{C819B794-A45C-4F27-9860-0C86492A52CC}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/z/Zoom/Zoom/5.17.7.31859/Zoom.Zoom.locale.en-US.yaml b/manifests/z/Zoom/Zoom/5.17.7.31859/Zoom.Zoom.locale.en-US.yaml new file mode 100644 index 0000000000000..35e94486dbc17 --- /dev/null +++ b/manifests/z/Zoom/Zoom/5.17.7.31859/Zoom.Zoom.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Zoom.Zoom +PackageVersion: 5.17.7.31859 +PackageLocale: en-US +Publisher: Zoom +PublisherUrl: https://zoom.us +PublisherSupportUrl: https://support.zoom.us +PrivacyUrl: https://explore.zoom.us/en/privacy +Author: Zoom Video Communications, Inc. +PackageName: Zoom +PackageUrl: https://zoom.us +License: Proprietary +LicenseUrl: https://explore.zoom.us/en/terms +Copyright: Copyright ©2012-2024 Zoom Video Communications, Inc. All rights reserved. +# CopyrightUrl: +ShortDescription: Team Chat, Phone, Video & More +Description: Zoom's secure, reliable video platform powers all of your communication needs, including meetings, chat, phone, webinars, and online events. +# Moniker: +Tags: +- chat +- collaborate +- collaboration +- conference +- conferencing +- meeting +- video-conferencing +- voice-conferencing +- webinar +ReleaseNotes: |- + Resolved Issues + - Minor bug fixes +# ReleaseNotesUrl: +PurchaseUrl: https://zoom.us/pricing +# InstallationNotes: +Documentations: +- DocumentLabel: Learning Center + DocumentUrl: https://learning.zoom.us/learn +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/z/Zoom/Zoom/5.17.7.31859/Zoom.Zoom.locale.zh-CN.yaml b/manifests/z/Zoom/Zoom/5.17.7.31859/Zoom.Zoom.locale.zh-CN.yaml new file mode 100644 index 0000000000000..117ccd28f8932 --- /dev/null +++ b/manifests/z/Zoom/Zoom/5.17.7.31859/Zoom.Zoom.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Zoom.Zoom +PackageVersion: 5.17.7.31859 +PackageLocale: zh-CN +Publisher: Zoom +PublisherUrl: https://zoom.us +PublisherSupportUrl: https://support.zoom.us +PrivacyUrl: https://explore.zoom.us/zh-cn/privacy +Author: Zoom Video Communications, Inc. +PackageName: Zoom +PackageUrl: https://zoom.us +License: 专有软件 +LicenseUrl: https://explore.zoom.us/zh-cn/terms +Copyright: 版权所有©2012-2024 Zoom Video Communications, Inc. 保留所有权利。 +# CopyrightUrl: +ShortDescription: 畅享愉快的会议体验 +Description: Zoom 安全可靠的视频平台可满足您的所有通信需求,包括会议、聊天、电话、网络研讨会和在线活动。 +# Moniker: +Tags: +- 会议 +- 协作 +- 协同 +- 开会 +- 研讨会 +- 视频会议 +- 聊天 +- 语音会议 +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://zoom.us/pricing +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/z/Zoom/Zoom/5.17.7.31859/Zoom.Zoom.yaml b/manifests/z/Zoom/Zoom/5.17.7.31859/Zoom.Zoom.yaml new file mode 100644 index 0000000000000..0dfe18217d099 --- /dev/null +++ b/manifests/z/Zoom/Zoom/5.17.7.31859/Zoom.Zoom.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-2-18.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Zoom.Zoom +PackageVersion: 5.17.7.31859 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.installer.yaml b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.installer.yaml index d6237ca504ac5..85e7d0d4d1b25 100644 --- a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.installer.yaml +++ b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/25 +# Automatically updated by the winget bot at 2024/Feb/01 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Zoom.ZoomOutlookPlugin diff --git a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.en-US.yaml b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.en-US.yaml index 0674b7b1622a2..b529a1b5e7545 100644 --- a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.en-US.yaml +++ b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/25 +# Automatically updated by the winget bot at 2024/Feb/01 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Zoom.ZoomOutlookPlugin diff --git a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.zh-CN.yaml b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.zh-CN.yaml index ece991f0f26d9..488681d122ef7 100644 --- a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.zh-CN.yaml +++ b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/25 +# Automatically updated by the winget bot at 2024/Feb/01 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json PackageIdentifier: Zoom.ZoomOutlookPlugin diff --git a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.yaml b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.yaml index 53ad9c7878525..327ce17df087c 100644 --- a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.yaml +++ b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Jan/25 +# Automatically updated by the winget bot at 2024/Feb/01 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Zoom.ZoomOutlookPlugin diff --git a/manifests/z/zhanglun/Lettura/0.1.15/zhanglun.Lettura.installer.yaml b/manifests/z/zhanglun/Lettura/0.1.15/zhanglun.Lettura.installer.yaml new file mode 100644 index 0000000000000..1c1351fc2e3fd --- /dev/null +++ b/manifests/z/zhanglun/Lettura/0.1.15/zhanglun.Lettura.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: zhanglun.Lettura +PackageVersion: 0.1.15 +InstallerType: wix +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +ReleaseDate: 2024-01-31 +AppsAndFeaturesEntries: +- ProductCode: '{BE00FDA3-31A1-4519-9C6E-D25BACB77EC2}' + UpgradeCode: '{C210FA17-16C9-574A-8EDB-A01DF5F2B2F7}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/zhanglun/lettura/releases/latest/download/Lettura_0.1.15_x64_en-US.msi + InstallerSha256: D05F04EDD9D4F2B29478D871E2D7FF5DF4311A9BCEDC90914F942E04B52D9CCC + ProductCode: '{BE00FDA3-31A1-4519-9C6E-D25BACB77EC2}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/z/zhanglun/Lettura/0.1.15/zhanglun.Lettura.locale.en-US.yaml b/manifests/z/zhanglun/Lettura/0.1.15/zhanglun.Lettura.locale.en-US.yaml new file mode 100644 index 0000000000000..94eaa1ef47ba3 --- /dev/null +++ b/manifests/z/zhanglun/Lettura/0.1.15/zhanglun.Lettura.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: zhanglun.Lettura +PackageVersion: 0.1.15 +PackageLocale: en-US +Publisher: lettura +PublisherUrl: https://zhanglun.github.io/ +PublisherSupportUrl: https://github.com/zhanglun/lettura/issues +# PrivacyUrl: +Author: zhanglun +PackageName: Lettura +PackageUrl: https://github.com/zhanglun/lettura +License: Freeware +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Another free and open-source feed reader for macOS and Window. +# Description: +# Moniker: +Tags: +- feed +- rss +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/zhanglun/lettura/releases/tag/v0.1.15 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/z/zhanglun/Lettura/0.1.15/zhanglun.Lettura.locale.zh-CN.yaml b/manifests/z/zhanglun/Lettura/0.1.15/zhanglun.Lettura.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e4e56ea727663 --- /dev/null +++ b/manifests/z/zhanglun/Lettura/0.1.15/zhanglun.Lettura.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: zhanglun.Lettura +PackageVersion: 0.1.15 +PackageLocale: zh-CN +Publisher: lettura +PublisherUrl: https://zhanglun.github.io/ +PublisherSupportUrl: https://github.com/zhanglun/lettura/issues +# PrivacyUrl: +Author: 张小伦 +PackageName: Lettura +PackageUrl: https://github.com/zhanglun/lettura +License: 免费软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: macOS 和 Windows 的另一款免费开源的 RSS 阅读器。 +# Description: +# Moniker: +Tags: +- rss +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/zhanglun/lettura/releases/tag/v0.1.15 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/z/zhanglun/Lettura/0.1.15/zhanglun.Lettura.yaml b/manifests/z/zhanglun/Lettura/0.1.15/zhanglun.Lettura.yaml new file mode 100644 index 0000000000000..03aae8505909d --- /dev/null +++ b/manifests/z/zhanglun/Lettura/0.1.15/zhanglun.Lettura.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: zhanglun.Lettura +PackageVersion: 0.1.15 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0