Skip to content

Commit

Permalink
AU: 4 updated - dropbox GoogleChrome typescript vim
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Chocolatey committed Jan 17, 2020
1 parent 31a860c commit 4c2ebb5
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"beta": "89.3.268-beta",
"beta": "89.3.272-beta",
"stable": "88.4.172"
}
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.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>89.3.268-beta</version>
<version>89.3.272-beta</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey,ferventcoder,the-running-dev</owners>
Expand Down
6 changes: 3 additions & 3 deletions automatic/dropbox/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
if(!$PSScriptRoot){ $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent }
. "$PSScriptRoot\helper.ps1"

$version = '89.3.268'
$version = '89.3.272'

if (!(IsVersionAlreadyInstalled $version)) {
$stop_dropbox = if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) {$false} else {$true}
Expand All @@ -11,8 +11,8 @@ if (!(IsVersionAlreadyInstalled $version)) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox"
url = 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2089.3.268%20Offline%20Installer.exe'
checksum = '52e378451df099aea0a3494d406d345021e532c7fb80c941746e3c62e404e397'
url = 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2089.3.272%20Offline%20Installer.exe'
checksum = 'e13004b7796e150e874918779361f386c7b97886f8a6848e4adf623944671ec7'
fileType = 'exe'
checksumType = 'sha256'
silentArgs = '/s'
Expand Down
2 changes: 1 addition & 1 deletion automatic/googlechrome/googlechrome.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>GoogleChrome</id>
<version>79.0.3945.117</version>
<version>79.0.3945.130</version>
<title>Google Chrome</title>
<owners>chocolatey</owners>
<authors>Google Inc.</authors>
Expand Down
6 changes: 3 additions & 3 deletions automatic/googlechrome/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$version = '79.0.3945.117'
$version = '79.0.3945.130'
if ($version -eq (Get-ChromeVersion)) {
Write-Host "Google Chrome $version is already installed."
return
Expand All @@ -12,8 +12,8 @@ $packageArgs = @{
fileType = 'MSI'
url = 'https://dl.google.com/tag/s/dl/chrome/install/googlechromestandaloneenterprise.msi'
url64bit = 'https://dl.google.com/tag/s/dl/chrome/install/googlechromestandaloneenterprise64.msi'
checksum = 'dec520fd4f1e1afcfbbc2d3a9002227d942a893a0dd996c6594ce2acfb56eedd'
checksum64 = '2badb92d491af0415d704e29c794c72a17fc043b933c4d2698efcfde27c3e485'
checksum = '9d8adb60b39a179ad7ba7095b5167cb14c9421960af80489f30668baaa1b92ad'
checksum64 = '217ee287e893b644e9d783ba8586cf0f8f5347212e9915f2bf12cb6f8215402b'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down
2 changes: 1 addition & 1 deletion automatic/typescript/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Update-SessionEnvironment

$npmPath = Get-Command npm | ForEach-Object { $_.Path }
"Installing $env:chocolateyPackageName using nodejs..."
Start-ChocolateyProcessAsAdmin $npmPath -statements install,"-g","typescript@3.7.4"
Start-ChocolateyProcessAsAdmin $npmPath -statements install,"-g","typescript@3.7.5"
4 changes: 2 additions & 2 deletions automatic/typescript/typescript.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>typescript</id>
<version>3.7.4</version>
<version>3.7.5</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/typescript</packageSourceUrl>
<owners>chocolatey, Microsoft</owners>
<title>TypeScript</title>
Expand All @@ -23,7 +23,7 @@
This package installs the command-line TypeScript compiler as a Node.js package.
]]></description>
<releaseNotes>https://github.com/Microsoft/TypeScript/issues?q=is%3Aissue+milestone%3A%22TypeScript+3.7.4%22+label%3A%22fixed%22+</releaseNotes>
<releaseNotes>https://github.com/Microsoft/TypeScript/issues?q=is%3Aissue+milestone%3A%22TypeScript+3.7.5%22+label%3A%22fixed%22+</releaseNotes>
<dependencies>
<dependency id="nodejs-lts" version="6.9.2" />
</dependencies>
Expand Down
8 changes: 4 additions & 4 deletions automatic/vim/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ in verifying that this package's contents are trustworthy.
The embedded software have been downloaded from GitHub and can be verified like this:

1. Download the following zips:
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.0121/gvim_8.2.0121_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.0121/gvim_8.2.0121_x64.zip>
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.0122/gvim_8.2.0122_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.0122/gvim_8.2.0122_x64.zip>
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: 7B0A3075B2904C31E8D35DA599E8125B89BACEB5F498D3821FD1157B80CC0012
checksum64: 391508ED4A9EF9F7E6B241AE23E8C254C5C8669DF478D8DCDF89219D0832BF48
checksum32: DCC0E78AD44B2A3A7E4420E2D933BF69AF46FD73E6A46CA42B6E627E921DA252
checksum64: 05EA586E938F68D7F024C273530D1C2E4D9997A9ACC28C95D5014E4991E7005F
4 changes: 2 additions & 2 deletions automatic/vim/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ $installDir = Get-InstallDir
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $installDir
file = "$toolsDir\gvim_8.2.0121_x86.zip"
file64 = "$toolsDir\gvim_8.2.0121_x64.zip"
file = "$toolsDir\gvim_8.2.0122_x86.zip"
file64 = "$toolsDir\gvim_8.2.0122_x64.zip"
}

$installArgs = @{
Expand Down
2 changes: 1 addition & 1 deletion automatic/vim/vim.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>vim</id>
<title>Vim</title>
<version>8.2.0121</version>
<version>8.2.0122</version>
<authors>Bram Moolenaar, Vim Community</authors>
<owners>chocolatey, Rob Reynolds, matsuhav</owners>
<summary>Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor 'Vi', with a more complete feature set. It's useful whether you're already using vi or using a different editor.</summary>
Expand Down

0 comments on commit 4c2ebb5

Please sign in to comment.