Skip to content

Commit

Permalink
AU: 3 updated - mixxx thunderbird vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Oct 8, 2021
1 parent 8797442 commit 8201c0b
Show file tree
Hide file tree
Showing 8 changed files with 141 additions and 141 deletions.
4 changes: 2 additions & 2 deletions automatic/mixxx/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ Package can be verified like this:
1. Go to <https://www.mixxx.org/download>

x32: No longer being provided
x64: https://downloads.mixxx.org/snapshots/main/mixxx-2.4-alpha-868-g64a90497fc-win64.msi
x64: https://downloads.mixxx.org/snapshots/main/mixxx-2.4-alpha-870-g7618abfad7-win64.msi

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'

checksum64: 777763ECCC07DBDACA56A6E404F5EDD53584D96C9D26569AE8E94A19DA01E621
checksum64: 50147765ED291CF791A8A6D2DEFF42507D00FF5DD21B8E561CE1E2828305EB57

File 'license.txt' is obtained from:
https://www.gnu.org/licenses/gpl-2.0.html
2 changes: 1 addition & 1 deletion automatic/mixxx/mixxx.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"stable": "2.3.1",
"alpha": "2.4-alpha-868"
"alpha": "2.4-alpha-870"
}
2 changes: 1 addition & 1 deletion automatic/mixxx/mixxx.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>mixxx</id>
<version>2.4-alpha-868</version>
<version>2.4-alpha-870</version>
<title>Mixxx</title>
<owners>chocolatey-community</owners>
<authors>Mixxx Development Team</authors>
Expand Down
2 changes: 1 addition & 1 deletion automatic/mixxx/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if ((Get-OSArchitectureWidth 32) -or ($env:chocolateyForceX86 -eq 'true')) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'msi'
file64 = "$toolsPath\mixxx-2.4-alpha-868-g64a90497fc-win64.msi"
file64 = "$toolsPath\mixxx-2.4-alpha-870-g7618abfad7-win64.msi"

softwareName = 'Mixxx *'

Expand Down
2 changes: 1 addition & 1 deletion automatic/thunderbird/thunderbird.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>thunderbird</id>
<version>91.1.2</version>
<version>91.2.0</version>
<title>Mozilla Thunderbird</title>
<owners>chocolatey-community</owners>
<authors>Mozilla</authors>
Expand Down
260 changes: 130 additions & 130 deletions automatic/thunderbird/tools/LanguageChecksums.csv

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions automatic/thunderbird/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ $softwareName = 'Mozilla Thunderbird'

if (Get-32bitOnlyInstalled -product $softwareName) { Write-Host 'Detected the 32-bit version of Thunderbird on a 64-bit system. This package will continue to install the 32-bit version of Thunderbird unless the 32-bit version is uninstalled.' }

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '91.1.2')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '91.2.0')
if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {
Write-Host "Thunderbird is already installed. No need to download and re-install."
return
Expand All @@ -35,7 +35,7 @@ $packageArgs = @{

Checksum = $checksums.Win32
ChecksumType = 'sha512'
Url = "https://download.mozilla.org/?product=thunderbird-91.1.2-SSL&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=thunderbird-91.2.0-SSL&os=win&lang=${locale}"

silentArgs = '-ms'
validExitCodes = @(0)
Expand All @@ -44,7 +44,7 @@ $packageArgs = @{
if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
$packageArgs.Checksum64 = $checksums.Win64
$packageArgs.ChecksumType64 = 'sha512'
$packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-91.1.2-SSL&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-91.2.0-SSL&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
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.60.2</version>
<version>1.61.0</version>
<authors>Microsoft</authors>
<owners>chocolatey-community</owners>
<projectUrl>https://code.visualstudio.com</projectUrl>
Expand Down Expand Up @@ -44,7 +44,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.60.2]" />
<dependency id="vscode.install" version="[1.61.0]" />
</dependencies>
<releaseNotes>https://code.visualstudio.com/Updates</releaseNotes>
</metadata>
Expand Down

0 comments on commit 8201c0b

Please sign in to comment.