Skip to content

Commit

Permalink
AU: 3 updated - mpc-hc-clsid2 vscode vscode.install
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Feb 15, 2024
1 parent 30ea2e6 commit a050e31
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions automatic/mpc-hc-clsid2/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software have been downloaded from the listed download
location on <https://github.com/clsid2/mpc-hc/releases/tag/2.1.4>
location on <https://github.com/clsid2/mpc-hc/releases/tag/2.1.5>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://github.com/clsid2/mpc-hc/releases/download/2.1.4/MPC-HC.2.1.4.x86.exe>
64-Bit software: <https://github.com/clsid2/mpc-hc/releases/download/2.1.4/MPC-HC.2.1.4.x64.exe>
32-Bit software: <https://github.com/clsid2/mpc-hc/releases/download/2.1.5/MPC-HC.2.1.5.x86.exe>
64-Bit software: <https://github.com/clsid2/mpc-hc/releases/download/2.1.5/MPC-HC.2.1.5.x64.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: A3F34BD1B8D081671FC45EE381902542E2BDE1403971088D61A715D85AAF123C
checksum64: 13A6ED1DD19667B6C1786988F97ADD9459C94F184BD74A7DBFE42FFE11A3DE79
checksum32: 66588BA3FD7EC524F06A84869E71D71A8781A79319008866EF2AAA9E9651E5C0
checksum64: F9FAD3475DC4C7B7211DA27FFEE3734AA2AD5B86198D853FDE058F8CB2E33A0D

The file 'LICENSE.txt' has been obtained from <https://www.gnu.org/licenses/gpl.txt>
2 changes: 1 addition & 1 deletion automatic/mpc-hc-clsid2/mpc-hc-clsid2.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>mpc-hc-clsid2</id>
<version>2.1.4</version>
<version>2.1.5</version>
<title>MPC-HC (fork by clsid2)</title>
<owners>chocolatey-community,jack1142</owners>
<authors>clsid2, MPC-HC Team</authors>
Expand Down
4 changes: 2 additions & 2 deletions automatic/mpc-hc-clsid2/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsPath\MPC-HC.2.1.4.x86.exe"
file64 = "$toolsPath\MPC-HC.2.1.4.x64.exe"
file = "$toolsPath\MPC-HC.2.1.5.x86.exe"
file64 = "$toolsPath\MPC-HC.2.1.5.x64.exe"
softwareName = 'MPC-HC*'
silentArgs = "/VERYSILENT /NORESTART /SUPPRESSMSGBOXES /SP- /LOG=`"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).InnoInstall.log`""
validExitCodes = @(0)
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.86.1'
$version = '1.86.2'
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.86.1/win32-x64/stable'
url64bit = 'https://update.code.visualstudio.com/1.86.2/win32-x64/stable'

softwareName = "$softwareName"

checksum64 = 'a2342fb33fa5a9d91db4a913a1d2516fa4442e6dd85615d9796137f9ccc66453'
checksum64 = 'b8524d2e12d6c16a7ff80442acdfab63e8063791c6c35668d401b02cb90436ed'
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.86.1</version>
<version>1.86.2</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.86.1</version>
<version>1.86.2</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.86.1]" />
<dependency id="vscode.install" version="[1.86.2]" />
</dependencies>
<releaseNotes>https://code.visualstudio.com/Updates</releaseNotes>
</metadata>
Expand Down

0 comments on commit a050e31

Please sign in to comment.