Skip to content

Commit

Permalink
update: qttabbar
Browse files Browse the repository at this point in the history
version 1040 -> 1043
  • Loading branch information
gaojr committed Mar 8, 2023
1 parent 3a237cf commit 8ebc4ff
Showing 1 changed file with 34 additions and 15 deletions.
49 changes: 34 additions & 15 deletions bucket/qttabbar.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,43 @@
{
"version": "1040",
"version": "1043",
"description": "Shell extension for the File Explorer that transforms it into a tabbed browser.",
"homepage": "http://qttabbar.wikidot.com/",
"license": "Freeware",
"url": [
"http://qttabbar.wdfiles.com/local--files/qttabbar/UpdateQTTabBar1040.zip",
"http://qttabbar.wdfiles.com/local--files/qttabbar/QTTabBar_1038.zip"
],
"hash": [
"7c384fefd5c402b1cf2eb619f745ace561593c879b86a76d3c7bf38a4551bea6",
"7397868c2363ff50c883705e2f67f811c99a9badbaa3a18d19a50e5e834094ff"
],
"url": "http://qttabbar.wdfiles.com/local--files/qttabbar/QTTabBar_1043.zip",
"hash": "93583f631f8445a1033e28c11f059609a2b8eb7a3547c692032aa5ce9ff9df6c",
"installer": {
"file": "QTTabBar.exe",
"args": "/qi",
"keep": true
"script": [
"if (!(is_admin)) {",
" error \"Administrator rights are required to install $app.\"",
" exit 1",
"}",
"",
"Get-ChildItem \"$env:TEMP\\QTTabBar_*.*\" | ForEach-Object { Remove-Item -ErrorAction Ignore -Recurse $_ }",
"& \"$dir\\QTTabBar.exe\"",
"",
"while ($msi -eq $null) {",
" Start-Sleep -Milliseconds 100",
" $msi = Get-ChildItem \"$env:TEMP\\QTTabBar_*.*\\QTTabBar Setup.msi\"",
"}",
"",
"Copy-Item $msi \"$dir\\setup.msi\"",
"Get-WmiObject Win32_Process -Filter \"name = 'msiexec.exe'\" | Where-Object { $_.CommandLine -match 'QTTabBar Setup\\.msi' } | ForEach-Object { Stop-Process -Id $_.ProcessId }",
"Invoke-ExternalCommand msiexec -ArgumentList @('/i', \"$dir\\setup.msi\", '/qn') | Out-Null",
"Stop-Process -Name explorer",
"Remove-Item \"$dir\\QTTabBar.exe\""
]
},
"post_install": ["Start-Process -Wait \"$($dir)\\UpdateQTTabBar1040.exe\"", "Stop-Process -Name explorer"],
"uninstaller": {
"file": "QTTabBar.exe",
"args": "/qu"
"script": [
"Invoke-ExternalCommand msiexec -ArgumentList @('/x', \"$dir\\setup.msi\", '/qn') -RunAs | Out-Null",
"Stop-Process -Name explorer"
]
},
"checkver": {
"url": "http://qttabbar.wikidot.com/change-log",
"regex": "Version (\\d+)"
},
"autoupdate": {
"url": "http://qttabbar.wdfiles.com/local--files/qttabbar/QTTabBar_$version.zip"
}
}

0 comments on commit 8ebc4ff

Please sign in to comment.