Skip to content

Commit

Permalink
AU: 1 updated - microsoft-windows-terminal
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Feb 7, 2022
1 parent ab91429 commit 83de6d5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions automatic/microsoft-windows-terminal/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ The installer have been downloaded from their official download link listed on <
and can be verified like this:

1. Download the following installers:
32-Bit: <https://github.com/microsoft/terminal/releases/download/v1.12.10334.0/Microsoft.WindowsTerminal_1.12.10334.0_8wekyb3d8bbwe.msixbundle>
32-Bit: <https://github.com/microsoft/terminal/releases/download/v1.13.10336.0/Microsoft.WindowsTerminalPreview_1.13.10336.0_8wekyb3d8bbwe.msixbundle>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: 55F01F692C0FDECEB7B007614FB97F592C54EB43F46D42092617A57C8E84EAB0
checksum32: 1B303A6C28890A9BD37E5739D86E226D325617F14D9B0DD3D039108E6A1450AE

File 'LICENSE.txt' is obtained from <https://github.com/microsoft/terminal/blob/master/LICENSE>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"Microsoft.WindowsTerminal": "1.12.10334.0",
"Microsoft.WindowsTerminalPreview": "1.12.3472.0-beta"
"Microsoft.WindowsTerminalPreview": "1.13.10336.0-beta"
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>1.12.10334.0</version>
<version>1.13.10336.0-beta</version>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Maurice Kevenaar</owners>
<!-- ============================== -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
$ErrorActionPreference = 'Stop';

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$fileName = "$toolsDir\Microsoft.WindowsTerminal_1.12.10334.0_8wekyb3d8bbwe.msixbundle"
$version = "1.12.10334.0"
$PreRelease = "False"
$fileName = "$toolsDir\Microsoft.WindowsTerminalPreview_1.13.10336.0_8wekyb3d8bbwe.msixbundle"
$version = "1.13.10336.0"
$PreRelease = "True"

$WindowsVersion=[Environment]::OSVersion.Version
if ($WindowsVersion.Major -ne "10") {
Expand Down

0 comments on commit 83de6d5

Please sign in to comment.