Skip to content

Commit

Permalink
AU: 3 updated - dropbox mkdocs-material visualstudiocode
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jan 26, 2018
1 parent e1904c6 commit a1d0386
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion automatic/dropbox_beta/dropbox_beta.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>dropbox</id>
<version>42.3.113-beta</version>
<version>43.3.47-beta</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey, Rob Reynolds</owners>
Expand Down
2 changes: 1 addition & 1 deletion automatic/mkdocs-material/mkdocs-material.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>mkdocs-material</id>
<title>MkDocs Material Theme</title>
<version>2.5.2</version>
<version>2.5.3</version>
<authors>Martin Donath</authors>
<owners>chocolatey</owners>
<projectUrl>http://squidfunk.github.io/mkdocs-material/</projectUrl>
Expand Down
2 changes: 1 addition & 1 deletion automatic/mkdocs-material/tools/ChocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Update-SessionEnvironment

$version = '2.5.2'
$version = '2.5.3'

$proxy = Get-EffectiveProxy
if ($proxy) {
Expand Down
14 changes: 7 additions & 7 deletions automatic/visualstudiocode/Tools/ChocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ $mergeTasks += ', ' + '!'*$pp.NoContextMenuFolders + 'addcontextmenufolders'
$mergeTasks += ', ' + '!'*$pp.DontAddToPath + 'addtopath'
Write-Host "Merge Tasks: `n$mergeTasks"

ps code -ea 0 | % { $_.CloseMainWindow() | Out-Null }
sleep 1
ps code -ea 0 | kill #in case gracefull shutdown did not succeed, try hard kill
Get-Process code -ea 0 | ForEach-Object { $_.CloseMainWindow() | Out-Null }
Start-Sleep 1
Get-Process code -ea 0 | Stop-Process #in case gracefull shutdown did not succeed, try hard kill

$packageArgs = @{
packageName = 'visualstudiocode'
fileType = 'EXE'
url = 'https://az764295.vo.msecnd.net/stable/490ef761b76b3f3b3832eff7a588aac891e5fe80/VSCodeSetup-ia32-1.19.2.exe'
url64bit = 'https://az764295.vo.msecnd.net/stable/490ef761b76b3f3b3832eff7a588aac891e5fe80/VSCodeSetup-x64-1.19.2.exe'
url = 'https://az764295.vo.msecnd.net/stable/7c4205b5c6e52a53b81c69d2b2dc8a627abaa0ba/VSCodeSetup-ia32-1.19.3.exe'
url64bit = 'https://az764295.vo.msecnd.net/stable/7c4205b5c6e52a53b81c69d2b2dc8a627abaa0ba/VSCodeSetup-x64-1.19.3.exe'

softwareName = 'Microsoft Visual Studio Code'

checksum = '63d038aa72277b31520ff460129b31beac29abc03ffd2eebf000ce8dc0d222cc'
checksum = '9ebf4e5fce7db623b0e01df8997403eb5a280b8832c62a9c2237a2960ade3fc0'
checksumType = 'sha256'
checksum64 = 'ad71e488a9dcb4a28a818a6e31edfdb73aed281869c60a16d15e9bfc1768a0aa'
checksum64 = '2c68535532ace009b69a3f87f5e540fd37182cd5dcf501003266e5ad8242b764'
checksumType64 = 'sha256'

silentArgs = "/verysilent /suppressmsgboxes /mergetasks=""$mergeTasks"" /log=""$env:temp\vscode.log"""
Expand Down
2 changes: 1 addition & 1 deletion automatic/visualstudiocode/visualstudiocode.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>visualstudiocode</id>
<title>Visual Studio Code</title>
<version>1.19.2</version>
<version>1.19.3</version>
<authors>Microsoft</authors>
<owners>chocolatey</owners>
<projectUrl>https://code.visualstudio.com</projectUrl>
Expand Down

0 comments on commit a1d0386

Please sign in to comment.