chore: import upstream snapshot with attribution
.NET Tests / test-codebase (push) Has been cancelled
Translation Validation / validate-translations (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:01:52 +08:00
commit 643e9f9fcb
1003 changed files with 247032 additions and 0 deletions
@@ -0,0 +1,2 @@
@echo on
cmd /k cpush "unigetui.$VAR1$.nupkg"
@@ -0,0 +1,16 @@
$ErrorActionPreference = 'Stop'
$PackageName = 'unigetui'
$Url = 'https://cdn.devolutions.net/download/Devolutions.UniGetUI.win-x64.$VAR1$.exe'
$PackageArgs = @{
packageName = $PackageName
url = $Url
fileType = 'exe'
silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /NoEdgeWebView /NoVCRedist /NoChocolatey /EnableSystemChocolatey /NoAutoStart'
validExitCodes= @(0, 3010, 1641)
checksum = '$VAR2$'
checksumType = 'sha256'
}
Install-ChocolateyPackage @PackageArgs
@@ -0,0 +1,25 @@
$ErrorActionPreference = 'Stop'
$PackageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'unigetui*'
fileType = 'exe'
silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
validExitCodes= @(0, 3010, 1605, 1614, 1641)
}
[array]$Key = Get-UninstallRegistryKey -SoftwareName $PackageArgs['softwareName']
if ($Key.Count -eq 1) {
$Key | % {
$PackageArgs['file'] = "$($_.UninstallString)"
Uninstall-ChocolateyPackage @PackageArgs
}
} elseif ($Key.Count -eq 0) {
Write-Warning "$($PackageArgs['packageName']) has already been uninstalled by other means."
} elseif ($Key.Count -gt 1) {
Write-Warning "$($Key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$Key | % { Write-Warning "- $($_.DisplayName)" }
}
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>unigetui</id>
<title>UniGetUI</title>
<version>$VAR1$</version>
<authors>Devolutions Inc.</authors>
<owners>Devolutions Inc.</owners>
<summary>An intuitive GUI to discover, install, update, and uninstall packages from WinGet, Scoop, Chocolatey, npm, Pip, and more.</summary>
<description>The main goal of this project is to create an intuitive GUI for the most common CLI package managers for Windows 10 and Windows 11, such as WinGet, Scoop, Chocolatey, npm, Pip, .NET Tool, PowerShell Gallery and Cargo.</description>
<projectUrl>https://devolutions.net/unigetui/</projectUrl>
<tags>unigetui wingetui cli package-manager windows-10 windows-11 scoop winget chocolatey npm pip dotnet-tool dotnet windows package-manager-interface gui powershell powershell-ui gallery devolutions</tags>
<copyright>Copyright © 2006-2026</copyright>
<releaseNotes>https://devolutions.net/unigetui/release-notes/</releaseNotes>
<licenseUrl>https://github.com/Devolutions/UniGetUI/blob/HEAD/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdnweb.devolutions.net/web/common/logos/img-devolutions-unigetui-white.svg</iconUrl>
</metadata>
<files>
<file src="tools\chocolateyInstall.ps1" target="tools" />
<file src="tools\chocolateyUninstall.ps1" target="tools" />
</files>
</package>