Skip to content

Commit

Permalink
AU: 3 updated - juju mono vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Oct 8, 2018
1 parent 9466fd4 commit cdc8310
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion automatic/juju/juju.json
@@ -1,5 +1,5 @@
{
"2.2": "2.2.9",
"2.3": "2.3.8",
"2.4": "2.4.3"
"2.4": "2.4.4"
}
2 changes: 1 addition & 1 deletion automatic/juju/juju.nuspec
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>juju</id>
<version>2.4.3</version>
<version>2.4.4</version>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/juju</packageSourceUrl>
<owners>AdmiringWorm,chocolatey</owners>
<title>Juju</title>
Expand Down
4 changes: 2 additions & 2 deletions automatic/juju/legal/VERIFICATION.txt
Expand Up @@ -6,13 +6,13 @@ The installer have been downloaded from their launchpad page <https://launchpad.
The same download links are also located in their docs <https://jujucharms.com/docs/stable/reference-releases>
and can be verified like this:

1. Go to <https://launchpad.net/juju/2.4/2.4.3/+download/juju-setup-2.4.3.exe>
1. Go to <https://launchpad.net/juju/2.4/2.4.4/+download/juju-setup-2.4.4.exe>
to download the installer
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
checksum: 8827434AD8F9A1E99C558F4AE77E599AC92F12B84261739802C8B657CF8E989B
checksum: 521CCB3DFA7A8E45B13FD45017384E37FAF8DE6D0F0A31EF34CDA89F95479246

File 'LICENSE.txt' is obtained from <https://github.com/juju/juju/blob/1a64fe64d6c5d9aacbda27a1fea925e078f191f2/LICENCE>
2 changes: 1 addition & 1 deletion automatic/juju/tools/chocolateyinstall.ps1
Expand Up @@ -6,7 +6,7 @@ $packageArgs = @{
packageName = 'juju'
fileType = 'exe'
softwareName = 'Juju'
file = "$toolsDir\juju-setup-2.4.3.exe"
file = "$toolsDir\juju-setup-2.4.4.exe"
silentArgs = "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /LOG=`"${env:TEMP}\${env:chocolateyPackageName}.${env:chocolateyPackageVersion}.Install.log`""
validExitCodes= @(0)
}
Expand Down
2 changes: 1 addition & 1 deletion automatic/mono/mono.nuspec
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>mono</id>
<version>5.14.0.177</version>
<version>5.16.0.179</version>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/mono</packageSourceUrl>
<title>Mono</title>
<authors>Miguel de Icaza, other Mono committers</authors>
Expand Down
8 changes: 4 additions & 4 deletions automatic/mono/tools/chocolateyInstall.ps1
Expand Up @@ -3,12 +3,12 @@
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'msi'
url = 'https://download.mono-project.com/archive/5.14.0/windows-installer/mono-5.14.0.177-gtksharp-2.12.45-win32-0.msi'
url64bit = 'https://download.mono-project.com/archive/5.14.0/windows-installer/mono-5.14.0.177-x64-0.msi'
url = 'https://download.mono-project.com/archive/5.16.0/windows-installer/mono-5.16.0.179-gtksharp-2.12.45-win32-0.msi'
url64bit = 'https://download.mono-project.com/archive/5.16.0/windows-installer/mono-5.16.0.179-x64-0.msi'
softwareName = 'Mono for Windows*'
checksum = 'e43be777405b9831d292b6867eb9d72d488b698989ec7c6fba86a1fd87808135'
checksum = '0b385b66d7d3ec641e5e52151932b66a5dcb4563926e50a74c53346866b36d05'
checksumType = 'sha256'
checksum64 = '0491f76d5909a012076ca0a417ea71431e845908ca4f2fa3414636fe0537e126'
checksum64 = 'c643d3e55e8d05ffe182ea11bcb05ec7e033d063e123eef285e6c02a68ec2316'
checksumType64 = 'sha256'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
validExitCodes = @(0, 3010, 1641)
Expand Down
10 changes: 5 additions & 5 deletions automatic/vscode/tools/ChocolateyInstall.ps1
Expand Up @@ -4,7 +4,7 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$softwareName = 'Microsoft Visual Studio Code'
$version = '1.27.2'
$version = '1.28.0'
if ($version -eq (Get-UninstallRegistryKey "$softwareName").DisplayVersion) {
Write-Host "VS Code $version is already installed."
return
Expand All @@ -16,14 +16,14 @@ Close-VSCode
$packageArgs = @{
packageName = 'vscode'
fileType = 'exe'
url = 'https://az764295.vo.msecnd.net/stable/f46c4c469d6e6d8c46f268d1553c5dc4b475840f/VSCodeSetup-ia32-1.27.2.exe'
url64bit = 'https://az764295.vo.msecnd.net/stable/f46c4c469d6e6d8c46f268d1553c5dc4b475840f/VSCodeSetup-x64-1.27.2.exe'
url = 'https://az764295.vo.msecnd.net/stable/431ef9da3cf88a7e164f9d33bf62695e07c6c2a9/VSCodeSetup-ia32-1.28.0.exe'
url64bit = 'https://az764295.vo.msecnd.net/stable/431ef9da3cf88a7e164f9d33bf62695e07c6c2a9/VSCodeSetup-x64-1.28.0.exe'

softwareName = "$softwareName"

checksum = 'c447a671963eb89ea41369658287738df00cb7f918a06fbcb15b5b4ed050c648'
checksum = '487d764a9537dad72696031b84ad761b3be6ef79b1d848710a45d34301f51f49'
checksumType = 'sha256'
checksum64 = 'a0e9f4867fc96ec43a698c1e6aa49dcd70a03b91cd823f00694945a42744e780'
checksum64 = '452fb89b2dd8bacb0e0388ddd5ccecb075f56858ac8cefb0d4418c84bb8028e3'
checksumType64 = 'sha256'

silentArgs = '/verysilent /suppressmsgboxes /mergetasks="{0}" /log="{1}\install.log"' -f (Get-MergeTasks), (Get-PackageCacheLocation)
Expand Down
2 changes: 1 addition & 1 deletion automatic/vscode/vscode.nuspec
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>vscode</id>
<title>Visual Studio Code</title>
<version>1.27.2</version>
<version>1.28.0</version>
<authors>Microsoft</authors>
<owners>chocolatey</owners>
<projectUrl>https://code.visualstudio.com</projectUrl>
Expand Down

0 comments on commit cdc8310

Please sign in to comment.