Skip to content

Commit

Permalink
AU: 6 updated - chromium dropbox GoogleChrome nodejs nodejs.install v…
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Nov 30, 2022
1 parent 62a14f1 commit 4b87139
Show file tree
Hide file tree
Showing 18 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"snapshots": "110.0.5448.0-snapshots",
"snapshots": "110.0.5449.0-snapshots",
"stable": "107.0.5304.122"
}
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>chromium</id>
<version>110.0.5448.0-snapshots</version>
<version>110.0.5449.0-snapshots</version>
<title>Chromium Snapshots</title>
<owners>chocolatey-community</owners>
<authors>The Chromium Authors</authors>
Expand Down
8 changes: 4 additions & 4 deletions automatic/chromium/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://github.com/henrypp/chromium/releases/> (the listed mirrors
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1076734/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1076739/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1076945/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1077053/mini_installer.exe>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: 26BFA1F3CA8CA7B450D9B1E1101531DE34E517D144ABC5333D6AF51338E6D63A
checksum64: 6796AB139724D6741E9E8C06E106F5A2CEDD1D6548A11FF573931982ADF88E43
checksum32: 85984BFFB3F2C044C8A2A1C3D12F25C9D12637FED8E9681EE4B70651CCDFCD7E
checksum64: B93061F2D4917E5F414D5681D93763B3E395108224DA35ED19EEB65CD985AB82

The file 'LICENSE.txt' has been obtained from <https://chromium.googlesource.com/chromium/src.git/+/master/LICENSE>
2 changes: 1 addition & 1 deletion automatic/chromium/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$scriptDir=$toolsDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
. (Join-Path $scriptDir 'helper.ps1')

$version = "110.0.5448.0-snapshots"
$version = "110.0.5449.0-snapshots"
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
Expand Down
4 changes: 2 additions & 2 deletions automatic/dropbox/dropbox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"beta": "162.3.5408-beta",
"stable": "161.4.4923"
"beta": "163.3.5425-beta",
"stable": "162.4.5419"
}
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>162.3.5408-beta</version>
<version>162.4.5419</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 = '162.3.5408'
$version = '162.4.5419'

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%20162.3.5408%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20162.3.5408%20Offline%20Installer.x64.exe'
checksum = '9ad93030beec6b4b0e3d3b9db9b3d7ff0dd63107c10b8903921046aba08af982'
checksum64 = 'f7fe3b7a0f59e894e48c39450716710a8284865a741971a2b32414c8037e1764'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20162.4.5419%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20162.4.5419%20Offline%20Installer.x64.exe'
checksum = 'f6b6eeed1085faac3c8186f593570d1fa48da8c60fe0ad130670a922aacec28f'
checksum64 = 'fd99410cedebe62e004bd18d682c3e4a7a3cc0c2a8adf36c9248ec4152dfee61'
fileType = 'exe'
checksumType = 'sha256'
checksumType64 = 'sha256'
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>107.0.5304.122</version>
<version>108.0.5359.72</version>
<title>Google Chrome</title>
<owners>chocolatey-community</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 = '107.0.5304.122'
$version = '108.0.5359.72'
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 = '8abb0ee38cce52415394e6d42e6e5a5bf6446d2438fc48c77f49e81c5519b0a4'
checksum64 = 'a6e7742042ed4def2e9ee7bf72d67e99fb4f782f93c704a8673a3a3a1c578a11'
checksum = 'd71ffdb0db15ef50c67a8af9a174780c31e27516c109537b9559c342afe220b0'
checksum64 = '2f1561d3934261bb869ed1209117d82df202bf6095f6e643619b41f608311694'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
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/v19.1.0/node-v19.1.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v19.1.0/node-v19.1.0-x64.msi>
32-Bit: <https://nodejs.org/dist/v19.2.0/node-v19.2.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v19.2.0/node-v19.2.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: 416CAD872DF5F3AD38000C32C1BA0DD1D7F823DF7A6937CC088B3393BFB68852
checksum64: 935F9C01B135B5DA7397B900C7FF5123CE154C570280EFD60257ED58FD029F34
checksum32: 8DB32B00E99474BA382F8B2225C99288E85E9DC483F76E0E2F8F67F5FC94A501
checksum64: 4323B6A13694B5BEA3D378897301170E767F79B7544E18EE9ADE83056FC942A8

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 @@ -14,5 +14,5 @@
"16": "16.18.1",
"17": "17.9.1",
"18": "18.12.1",
"19": "19.1.0"
"19": "19.2.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>19.1.0</version>
<version>19.2.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-v19.1.0-x86.msi"
$filePath64 = "$toolsPath\node-v19.1.0-x64.msi"
$filePath32 = "$toolsPath\node-v19.2.0-x86.msi"
$filePath64 = "$toolsPath\node-v19.2.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 @@ -14,5 +14,5 @@
"16": "16.18.1",
"17": "17.9.1",
"18": "18.12.1",
"19": "19.1.0"
"19": "19.2.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>19.1.0</version>
<version>19.2.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="[19.1.0]" />
<dependency id="nodejs.install" version="[19.2.0]" />
</dependencies>
</metadata>
<files>
Expand Down
10 changes: 5 additions & 5 deletions automatic/vlc.install/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ Package can be verified like this:

1. Go to

x32: http://get.videolan.org/vlc/3.0.17.4/win32/vlc-3.0.17.4-win32.exe
x64: http://get.videolan.org/vlc/3.0.17.4/win64/vlc-3.0.17.4-win64.exe
x32: http://get.videolan.org/vlc/3.0.18/win32/vlc-3.0.18-win32.exe
x64: http://get.videolan.org/vlc/3.0.18/win64/vlc-3.0.18-win64.exe

to download the installer.

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: 514B0BF5AC82E7132ECAC31DA64C38FC85CD0FF76E2DCBCF904B6E2028C6749F
checksum64: FDA8CBF2EE876BE4EB14D7AFFCA3A0746EF4AE78341DBB589CBDDDCF912DB85C
checksum32: F4BAAA8135E0F9A993F0258A4D095DB475096896BD3ADB48369F1F70C1F0D9D4
checksum64: BA575F153D357EAF3FDBF446B9B93A12CED87C35887CDD83AD4281733EB86602

Using AU:

Get-RemoteChecksum http://get.videolan.org/vlc/3.0.17.4/win64/vlc-3.0.17.4-win64.exe
Get-RemoteChecksum http://get.videolan.org/vlc/3.0.18/win64/vlc-3.0.18-win64.exe

File 'LICENSE.txt' obtained from:
http://svn.videolan.org/filedetails.php?repname=VideoLAN+Server&path=%2Ftrunk%2FCOPYING
4 changes: 2 additions & 2 deletions automatic/vlc.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ $toolsDir = Split-Path $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = 'vlc.install'
fileType = 'exe'
file = "$toolsDir\vlc-3.0.17.4-win32_x32.exe"
file64 = "$toolsDir\vlc-3.0.17.4-win64_x64.exe"
file = "$toolsDir\vlc-3.0.18-win32_x32.exe"
file64 = "$toolsDir\vlc-3.0.18-win64_x64.exe"
silentArgs = '/S'
validExitCodes = @(0, 1223)
}
Expand Down
4 changes: 2 additions & 2 deletions automatic/vlc.install/vlc.install.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>vlc.install</id>
<title>VLC media player (Install)</title>
<version>3.0.17.4</version>
<version>3.0.18</version>
<authors>VideoLAN Organization</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>VLC Media Player</summary>
Expand Down Expand Up @@ -33,7 +33,7 @@ Example: `choco install --params "/Language:fr"` *Will set the language of VLC t
## Notes
- Related packages: [vlc-skins](https://chocolatey.org/packages/vlc-skins) [vlc-nightly](https://chocolatey.org/packages/vlc-nightly)
- **If the package is out of date please check [Version History](#versionhistory) for the latest submitted version. If you have a question, please ask it in [Chocolatey Community Package Discussions](https://github.com/chocolatey-community/chocolatey-packages/discussions) or raise an issue on the [Chocolatey Community Packages Repository](https://github.com/chocolatey-community/chocolatey-packages/issues) if you have problems with the package. Disqus comments will generally not be responded to.**
]]></description>
<projectUrl>http://www.videolan.org/vlc/</projectUrl>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/vlc.install</packageSourceUrl>
Expand Down

0 comments on commit 4b87139

Please sign in to comment.