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

windows-terminal: Add version 0.6.2951.0 #3054

Merged
merged 5 commits into from Dec 6, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
37 changes: 37 additions & 0 deletions bucket/windows-terminal.json
@@ -0,0 +1,37 @@
{
"version": "0.7.3382.0",
"description": "The new Windows Terminal, and the original Windows console host - all in the same place!",
"homepage": "https://github.com/microsoft/terminal",
"license": "MIT",
"url": "https://github.com/microsoft/terminal/releases/download/v0.7.3382.0/Microsoft.WindowsTerminal_0.7.3382.0_8wekyb3d8bbwe.msixbundle#/cosi.7z",
"hash": "8998f7c00ad7b9ce66a75c02fd9a830465f54038d22fb6a0744c8de5f46c1ef2",
"architecture": {
"64bit": {
"pre_install": "Get-ChildItem \"$dir\" -Exclude '*x64.msix' | Remove-Item -Force -Recurse"
},
"32bit": {
"pre_install": "Get-ChildItem \"$dir\" -Exclude '*x86.msix' | Remove-Item -Force -Recurse"
}
},
"installer": {
Bassetts marked this conversation as resolved.
Show resolved Hide resolved
"script": [
"$winVer = [Environment]::OSVersion.Version",
"if (($winver.Major -lt '10') -or ($winVer.Build -lt 18362)) { error 'At least Windows 10 18362 is required.'; break }",
"Get-ChildItem \"$dir\" '*.msix' | Select-Object -ExpandProperty Fullname | Expand-7zipArchive -DestinationPath \"$dir\" -Removal"
]
},
"bin": "WindowsTerminal.exe",
"shortcuts": [
[
"WindowsTerminal.exe",
"Windows Terminal"
]
],
"checkver": {
"url": "https://github.com/microsoft/terminal/releases",
"regex": "WindowsTerminal_([\\d.]+)_8wekyb3d8bbwe\\.msixbundle"
},
"autoupdate": {
"url": "https://github.com/microsoft/terminal/releases/download/v$version/Microsoft.WindowsTerminal_$version_8wekyb3d8bbwe.msixbundle#/dl.7z"
}
}