Skip to content

Commit

Permalink
AU: 5 updated - dropbox nodejs nodejs.install vscode vscode.install
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Chocolatey Community committed May 9, 2024
1 parent 9d0de87 commit bb88710
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 24 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": "199.3.6190-beta",
"beta": "199.3.6220-beta",
"stable": "198.4.7615"
}
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>199.3.6190-beta</version>
<version>199.3.6220-beta</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey-community,ferventcoder,the-running-dev</owners>
Expand Down
10 changes: 5 additions & 5 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 = '199.3.6190'
$version = '199.3.6220'

if (!(IsVersionAlreadyInstalled $version)) {
$stop_dropbox = if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) { $false } else { $true }
Expand All @@ -13,10 +13,10 @@ if (!(IsVersionAlreadyInstalled $version)) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox"
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20199.3.6190%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20199.3.6190%20Offline%20Installer.x64.exe'
checksum = '9a7ffadad71f5c1368914c898d105a1d19e906c2bbd972c221be14e89de6e6b5'
checksum64 = 'ae9f7d13caa8d1eff335c072f5a73903c0fd6cbbcee7293c46c43d5518e26e68'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20199.3.6220%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20199.3.6220%20Offline%20Installer.x64.exe'
checksum = '8604ed332d08b919c98d9ce3bc5f71f9f4b9df45338e76ea3d24e29ada60c593'
checksum64 = '251140f4cee0dbdbd40513bd42628471650f5b5323feabeacefdf3abc2f1f969'
fileType = 'exe'
checksumType = 'sha256'
checksumType64 = 'sha256'
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 has been downloaded from GitHub and can be verified like this:

1. Download the following installers:
32-Bit: <https://nodejs.org/dist/v20.13.0/node-v20.13.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v20.13.0/node-v20.13.0-x64.msi>
32-Bit: <https://nodejs.org/dist/v20.13.1/node-v20.13.1-x86.msi>
64-Bit: <https://nodejs.org/dist/v20.13.1/node-v20.13.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: 7DC6C9CAC8D3D2E55E3C253ED4A544127BED3D46799F409C8B6562A7EDB1CEF6
checksum64: D41E6AA0673A400D14C536FFA9C5897D03D682F58AC033AC00C7B2E71BBC97C2
checksum32: 7D14BDC418E77F74B75AE424047039E73E004D2EBF917F491E481D4CB1C4676A
checksum64: 695EB534992F0D4AA10AB024AEF596664493E19E0E1581C41EEFE33050811C52

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 @@ -15,7 +15,7 @@
"17": "17.9.1",
"18": "18.20.2",
"19": "19.9.0",
"20": "20.13.0",
"20": "20.13.1",
"21": "21.7.3",
"22": "22.1.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>20.13.0</version>
<version>20.13.1</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-v20.13.0-x86.msi"
$filePath64 = "$toolsPath\node-v20.13.0-x64.msi"
$filePath32 = "$toolsPath\node-v20.13.1-x86.msi"
$filePath64 = "$toolsPath\node-v20.13.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 Down
2 changes: 1 addition & 1 deletion automatic/nodejs/nodejs.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"17": "17.9.1",
"18": "18.20.2",
"19": "19.9.0",
"20": "20.13.0",
"20": "20.13.1",
"21": "21.7.3",
"22": "22.1.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>20.13.0</version>
<version>20.13.1</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="[20.13.0]" />
<dependency id="nodejs.install" version="[20.13.1]" />
</dependencies>
</metadata>
<files>
Expand Down
6 changes: 3 additions & 3 deletions automatic/vscode.install/tools/ChocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$softwareName = 'Microsoft Visual Studio Code'
$version = '1.89.0'
$version = '1.89.1'
if ($version -eq (Get-UninstallRegistryKey "$softwareName").DisplayVersion) {
Write-Host "VS Code $version is already installed."
return
Expand All @@ -16,11 +16,11 @@ Close-VSCode
$packageArgs = @{
packageName = 'vscode.install'
fileType = 'exe'
url64bit = 'https://update.code.visualstudio.com/1.89.0/win32-x64/stable'
url64bit = 'https://update.code.visualstudio.com/1.89.1/win32-x64/stable'

softwareName = "$softwareName"

checksum64 = '74d803a52e77f45365bbd645c6de3373c05de45e04fe47c20603fd8d7bc9ba26'
checksum64 = '1612ccf4e16dbe8a2f45a85b00c897668e997db58648dbe2db6c6e667590ca23'
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.install/vscode.install.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>vscode.install</id>
<title>Visual Studio Code (Install)</title>
<version>1.89.0</version>
<version>1.89.1</version>
<authors>Microsoft</authors>
<owners>chocolatey-community</owners>
<projectUrl>https://code.visualstudio.com</projectUrl>
Expand Down
4 changes: 2 additions & 2 deletions automatic/vscode/vscode.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>vscode</id>
<title>Visual Studio Code</title>
<version>1.89.0</version>
<version>1.89.1</version>
<authors>Microsoft</authors>
<owners>chocolatey-community</owners>
<projectUrl>https://code.visualstudio.com</projectUrl>
Expand Down Expand Up @@ -45,7 +45,7 @@ Example: `choco install vscode --params "/NoDesktopIcon /DontAddToPath"`
]]></description>
<tags>microsoft visualstudiocode vscode development editor ide javascript typescript admin foss cross-platform</tags>
<dependencies>
<dependency id="vscode.install" version="[1.89.0]" />
<dependency id="vscode.install" version="[1.89.1]" />
</dependencies>
<releaseNotes>https://code.visualstudio.com/Updates</releaseNotes>
</metadata>
Expand Down

0 comments on commit bb88710

Please sign in to comment.