Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UniGetUI: Add version 3.1.2 #362

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions bucket/unigetui-np.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"version": "3.1.2",
"description": "UniGetUI - An intuitive GUI for the most common CLI package managers for Windows 10 and 11",
"homepage": "https://www.marticliment.com/unigetui",
"license": {
"identifier": "MIT",
"url": "https://github.com/marticliment/UniGetUI/blob/main/LICENSE"
},
"architecture": {
"64bit": {
"url": "https://github.com/marticliment/UniGetUI/releases/download/3.1.2/UniGetUI.Installer.exe#/setup.exe#/setup.exe",
"hash": "456a4f2d548c590ecf56e90d1846ddf2bcd9e3d7bde6747602328885675a2c8f"
}
},
"installer": {
"script": [
"if (!(is_admin)) { Write-Host \" ERROR: $app requires admin rights to $cmd\" -ForegroundColor DarkRed; break }",
"Start-Process -Wait \"$dir\\setup.exe\" \"/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /NoAutoStart /ALLUSERS /NoWinGet /NoChocolatey\""
]
},
"uninstaller": {
"script": [
"if (!(is_admin)) { Write-Host \" ERROR: $app requires admin rights to $cmd\" -ForegroundColor DarkRed; break }",
"$uninstaller = (Get-ItemProperty -ErrorAction Ignore \"HKCU:\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{889610CC-4337-4BDB-AC3B-4F21806C0BDE}_is1\" -Name UninstallString).UninstallString",
"if (!$uninstaller) { $uninstaller = (Get-ItemProperty -ErrorAction Ignore \"HKLM:\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{889610CC-4337-4BDB-AC3B-4F21806C0BDE}_is1\" -Name UninstallString).UninstallString }",
"if (!$uninstaller) { warn 'Could not find app info in registry' }",
"Start-Process -Wait \"$uninstaller\" \"/VERYSILENT\" -Verb RunAs"
]
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/marticliment/UniGetUI/releases/download/$version/UniGetUI.Installer.exe#/setup.exe#/setup.exe"
}
}
},
"checkver": {
"github": "https://github.com/marticliment/UniGetUI"
}
}