Skip to content

Commit

Permalink
AU: 5 updated - dropbox nodejs nodejs.install tor-browser vim
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jan 10, 2020
1 parent 5cd85f7 commit 0294614
Show file tree
Hide file tree
Showing 14 changed files with 57 additions and 57 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": "88.4.172-beta",
"beta": "89.3.268-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>88.4.172</version>
<version>89.3.268-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 = '88.4.172'
$version = '89.3.268'

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%2088.4.172%20Offline%20Installer.exe'
checksum = '0bbdc0dbb7d5b05d17a9dc9ca0435635f69b0f20043b9b64e6af41c835369a81'
url = 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2089.3.268%20Offline%20Installer.exe'
checksum = '52e378451df099aea0a3494d406d345021e532c7fb80c941746e3c62e404e397'
fileType = 'exe'
checksumType = 'sha256'
silentArgs = '/s'
Expand Down
8 changes: 4 additions & 4 deletions automatic/nodejs.install/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ in verifying that this package's contents are trustworthy.
The installer have been downloaded from GitHub and can be verified like this:

1. Download the following installers:
32-Bit: <https://nodejs.org/dist/v13.6.0/node-v13.6.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v13.6.0/node-v13.6.0-x64.msi>
32-Bit: <https://nodejs.org/download/release/latest-v10.x/node-v10.18.1-x86.msi>
64-Bit: <https://nodejs.org/download/release/latest-v10.x/node-v10.18.1-x64.msi>
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: 513E1E3ADCA71A0E53996FFA7382CF987A1E966D8CBD77EF55165CA8667AC21F
checksum64: F72ACF011BCBF2EB47B74FC089C62AAA52A0EF49391E248E96DCA5D0C14B0D35
checksum32: A9F1970812902A302F04D09AECDB4DBA0F1DA4225815C7830679EE91C0CCA655
checksum64: FBD9D0406A26D385AB40150CC269FCC8F9F73448D08619DD45362075D3C45525

File 'LICENSE.txt' is obtained from <https://github.com/nodejs/node/blob/03023fa7ae060c082a014f792d5d1f481a599460/LICENSE>
2 changes: 1 addition & 1 deletion automatic/nodejs.install/nodejs.install.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"6": "6.17.1",
"8": "8.17.0",
"9": "9.11.2",
"10": "10.18.0",
"10": "10.18.1",
"11": "11.15.0",
"12": "12.14.1",
"5": "5.12.0",
Expand Down
2 changes: 1 addition & 1 deletion automatic/nodejs.install/nodejs.install.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs.install</id>
<title>Node JS (Install)</title>
<version>13.6.0</version>
<version>10.18.1</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand Down
6 changes: 3 additions & 3 deletions automatic/nodejs.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition

$filePath32 = "$toolsPath\node-v13.6.0-x86.msi"
$filePath64 = "$toolsPath\node-v13.6.0-x64.msi"
$filePath32 = "$toolsPath\node-v10.18.1-x86.msi"
$filePath64 = "$toolsPath\node-v10.18.1-x64.msi"
$installFile = if ((Get-OSArchitectureWidth 64) -and $env:chocolateyForceX86 -ne 'true') {
Write-Host "Installing 64 bit version"; $filePath64 }
else { Write-Host "Installing 32 bit version"; $filePath32 }
Expand All @@ -13,7 +13,7 @@ $packageArgs = @{
FileType = 'msi'
SoftwareName = 'Node.js'
File = $installFile
SilentArgs = '/quiet ADDLOCAL=ALL REMOVE=NodeEtwSupport'
SilentArgs = '/quiet ADDLOCAL=ALL REMOVE=NodeEtwSupport,NodePerfCtrSupport'
ValidExitCodes = @(0)
}
Install-ChocolateyInstallPackage @packageArgs
Expand Down
2 changes: 1 addition & 1 deletion automatic/nodejs/nodejs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"6": "6.17.1",
"8": "8.17.0",
"9": "9.11.2",
"10": "10.18.0",
"10": "10.18.1",
"11": "11.15.0",
"12": "12.14.1",
"5": "5.12.0",
Expand Down
4 changes: 2 additions & 2 deletions automatic/nodejs/nodejs.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs</id>
<title>Node JS</title>
<version>13.6.0</version>
<version>10.18.1</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand All @@ -28,7 +28,7 @@ While this package now provides both **Current** and **LTS** releases of Node.js
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@ba5adf020e09cd0e51107206ef3ec390035a6e90/icons/nodejs.png</iconUrl>
<dependencies>
<dependency id="nodejs.install" version="[13.6.0]" />
<dependency id="nodejs.install" version="[10.18.1]" />
</dependencies>
</metadata>
<files>
Expand Down
Loading

0 comments on commit 0294614

Please sign in to comment.