Skip to content

Commit

Permalink
AU: 5 updated - nodejs nodejs.install typescript vim wps-office-free
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Sep 11, 2021
1 parent c8ec77d commit 6b54e1c
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 26 deletions.
8 changes: 4 additions & 4 deletions automatic/nodejs.install/legal/VERIFICATION.txt
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/v16.9.0/node-v16.9.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v16.9.0/node-v16.9.0-x64.msi>
32-Bit: <https://nodejs.org/dist/v16.9.1/node-v16.9.1-x86.msi>
64-Bit: <https://nodejs.org/dist/v16.9.1/node-v16.9.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: D81D721F97054ADFB31B4DAAA84F7E2B097BE3C0A95A5711AF3F2F67FC5767CC
checksum64: 72601300585A6CF6CC8EF86374452158B9E48E619E4810D0B06C432B01377C2F
checksum32: 363878C30BA179640EDF388C3125FA3E06AC9A9455E6F683776C9E9B8DBA6BF8
checksum64: 5B615F36EFA4700D7799A08C8EA9614317808E0984EC36CF4774B3489140C001

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
Expand Up @@ -11,5 +11,5 @@
"13": "13.14.0",
"14": "14.17.6",
"15": "15.14.0",
"16": "16.9.0"
"16": "16.9.1"
}
2 changes: 1 addition & 1 deletion automatic/nodejs.install/nodejs.install.nuspec
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs.install</id>
<title>Node JS (Install)</title>
<version>16.9.0</version>
<version>16.9.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
Expand Up @@ -2,8 +2,8 @@

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

$filePath32 = "$toolsPath\node-v16.9.0-x86.msi"
$filePath64 = "$toolsPath\node-v16.9.0-x64.msi"
$filePath32 = "$toolsPath\node-v16.9.1-x86.msi"
$filePath64 = "$toolsPath\node-v16.9.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
Expand Up @@ -11,5 +11,5 @@
"13": "13.14.0",
"14": "14.17.6",
"15": "15.14.0",
"16": "16.9.0"
"16": "16.9.1"
}
4 changes: 2 additions & 2 deletions automatic/nodejs/nodejs.nuspec
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs</id>
<title>Node JS</title>
<version>16.9.0</version>
<version>16.9.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 @@ -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="[16.9.0]" />
<dependency id="nodejs.install" version="[16.9.1]" />
</dependencies>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion automatic/typescript/tools/chocolateyInstall.ps1
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@4.4.2"
Start-ChocolateyProcessAsAdmin $npmPath -statements install,"-g","typescript@4.4.3"
4 changes: 2 additions & 2 deletions automatic/typescript/typescript.nuspec
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>typescript</id>
<version>4.4.2</version>
<version>4.4.3</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/typescript</packageSourceUrl>
<owners>chocolatey-community, 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+4.4.2%22+label%3A%22fixed%22+</releaseNotes>
<releaseNotes>https://github.com/Microsoft/TypeScript/issues?q=is%3Aissue+milestone%3A%22TypeScript+4.4.3%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
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.3423/gvim_8.2.3423_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.3423/gvim_8.2.3423_x64.zip>
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.3424/gvim_8.2.3424_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.3424/gvim_8.2.3424_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: B4912FD273D2532D390EE6196B0E4F3A0026DFC4432322D3B7AD516F9E57AE8B
checksum64: 8B869548188D9128E69A60B9808823DD8DD1DAF25368B0810A117F4B94007B95
checksum32: DBD69D7DEFEAEDD24246FB82BA7164747D4ECA1FFE0AB8CDD4394BF0F21C5A82
checksum64: 8AD78C70924FF91CE6279B6ED356D27B03960E6BE7576D2E5D1A7B1EF42232B0
4 changes: 2 additions & 2 deletions automatic/vim/tools/chocolateyinstall.ps1
Expand Up @@ -9,8 +9,8 @@ $installDir = Get-InstallDir
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $installDir
file = "$toolsDir\gvim_8.2.3423_x86.zip"
file64 = "$toolsDir\gvim_8.2.3423_x64.zip"
file = "$toolsDir\gvim_8.2.3424_x86.zip"
file64 = "$toolsDir\gvim_8.2.3424_x64.zip"
}

$installArgs = @{
Expand Down
2 changes: 1 addition & 1 deletion automatic/vim/vim.nuspec
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>vim</id>
<title>Vim</title>
<version>8.2.3423</version>
<version>8.2.3424</version>
<authors>Bram Moolenaar, Vim Community</authors>
<owners>chocolatey-community, 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
6 changes: 3 additions & 3 deletions automatic/wps-office-free/tools/chocolateyInstall.ps1
@@ -1,18 +1,18 @@
$ErrorActionPreference = 'Stop'

$version = '11.2.0.10294'
$version = '11.2.0.10296'
$packageName = 'wps-office-free'
$regName = $packageName -replace('\-',' ')
$regName = $regName -replace('free','*')
$registry = Get-UninstallRegistryKey -SoftwareName $regName
$packageArgs = @{
packageName = 'wps-office-free'
fileType = 'exe'
url = 'https://wdl1.pcfg.cache.wpscdn.com/wpsdl/wpsoffice/download/11.2.0.10294/WPSOffice_11.2.0.10294.exe'
url = 'https://wdl1.pcfg.cache.wpscdn.com/wpsdl/wpsoffice/download/11.2.0.10296/WPSOffice_11.2.0.10296.exe'
silentArgs = '/S'
validExitCodes = @(0)
softwareName = $regName
checksum = 'f26ab749b082e37fae5068f39712da87b87469700fb1d352446e1f99e362254f'
checksum = 'e72d924b68444719b95504f9caa92e3f96b26ea2c884adbca2d63052b7a92a8b'
checksumType = 'sha256'
}

Expand Down
2 changes: 1 addition & 1 deletion automatic/wps-office-free/wps-office-free.json
@@ -1,3 +1,3 @@
{
"wps": "11.2.0.10294"
"wps": "11.2.0.10296"
}
2 changes: 1 addition & 1 deletion automatic/wps-office-free/wps-office-free.nuspec
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>wps-office-free</id>
<version>11.2.0.10294</version>
<version>11.2.0.10296</version>
<title>WPS Office Free</title>
<owners>chocolatey-community</owners>
<authors>Kingsoft Software</authors>
Expand Down

0 comments on commit 6b54e1c

Please sign in to comment.