Skip to content

Commit

Permalink
AU: 3 updated - dropbox nodejs nodejs.install
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jun 16, 2022
1 parent 6b879a5 commit d5db407
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 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": "151.3.4195-beta",
"beta": "151.3.4214-beta",
"stable": "150.4.5000"
}
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>151.3.4195-beta</version>
<version>151.3.4214-beta</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey-community,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 @@ -4,7 +4,7 @@ if (!$PSScriptRoot) {
}
. "$PSScriptRoot\helper.ps1"

$version = '151.3.4195'
$version = '151.3.4214'

if (!(IsVersionAlreadyInstalled $version)) {
$stop_dropbox = if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) { $false } else { $true }
Expand All @@ -13,8 +13,8 @@ if (!(IsVersionAlreadyInstalled $version)) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox"
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20151.3.4195%20Offline%20Installer.x86.exe'
checksum = '08239582407f666c0a6b93f7173345088a69fd81521037173b812399c4dc4246'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20151.3.4214%20Offline%20Installer.x86.exe'
checksum = '5378f10cab36192ba3d1099dd93fb00f74fa21fe2a544f6eb132d052b4e2c777'
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/v18.3.0/node-v18.3.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v18.3.0/node-v18.3.0-x64.msi>
32-Bit: <https://nodejs.org/dist/v18.4.0/node-v18.4.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v18.4.0/node-v18.4.0-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: 76AA64C4224DEF1E20D41C34213A4915266C6E8338EAF5FC6E59827178EB0926
checksum64: 9655750CDC909ABD3C199D9B1BFB9032ACD7DCDF3677E9850D07050DEDB8B50D
checksum32: 6A13D5F7DE06A3D00A6DEB84BBBFA6C591AB45839609A375C12215A86EF9AE9C
checksum64: B79CBF490D581245061D6462430450DF16731901A022C83DAAFBF9A920BAFC6E

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 @@ -13,5 +13,5 @@
"15": "15.14.0",
"16": "16.15.1",
"17": "17.9.1",
"18": "18.3.0"
"18": "18.4.0"
}
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>18.3.0</version>
<version>18.4.0</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand Down
4 changes: 2 additions & 2 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-v18.3.0-x86.msi"
$filePath64 = "$toolsPath\node-v18.3.0-x64.msi"
$filePath32 = "$toolsPath\node-v18.4.0-x86.msi"
$filePath64 = "$toolsPath\node-v18.4.0-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 Down
2 changes: 1 addition & 1 deletion automatic/nodejs/nodejs.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
"15": "15.14.0",
"16": "16.15.1",
"17": "17.9.1",
"18": "18.3.0"
"18": "18.4.0"
}
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>18.3.0</version>
<version>18.4.0</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand All @@ -30,7 +30,7 @@ This package runs the official Node JS installer, resulting in Node.exe and NPM
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@ba5adf020e09cd0e51107206ef3ec390035a6e90/icons/nodejs.png</iconUrl>
<dependencies>
<dependency id="nodejs.install" version="[18.3.0]" />
<dependency id="nodejs.install" version="[18.4.0]" />
</dependencies>
</metadata>
<files>
Expand Down

0 comments on commit d5db407

Please sign in to comment.