Skip to content

Commit

Permalink
AU: 3 updated - ccleaner jenkins thunderbird
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Nov 15, 2023
1 parent 6a57471 commit e156c79
Show file tree
Hide file tree
Showing 7 changed files with 142 additions and 142 deletions.
2 changes: 1 addition & 1 deletion automatic/ccleaner/ccleaner.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>ccleaner</id>
<title>CCleaner</title>
<version>6.17.10746</version>
<version>6.18.10824</version>
<authors>Piriform</authors>
<owners>chocolatey-community,maartenba, tonigellida</owners>
<summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/ccleaner/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ if ($Env:ChocolateyPackageParameters -match '/UseSystemLocale') {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'EXE'
url = 'https://download.ccleaner.com/ccsetup617.exe'
checksum = 'C54DAF4F3E982AA7F065EF9413F29433D5414E02A9063F91B00CF37998A8A456'
url = 'https://download.ccleaner.com/ccsetup618.exe'
checksum = '3339875939414F8DDB3418DDE7702B3474A84F3DEB241BAE061BFCB525F29323'
checksumType = 'sha256'
silentArgs = "/S $locale"
validExitCodes = @(0)
Expand Down
2 changes: 1 addition & 1 deletion automatic/jenkins/jenkins.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>jenkins</id>
<version>2.414.3</version>
<version>2.426.1</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/jenkins</packageSourceUrl>
<owners>chocolatey-community,pauby,johnypony3</owners>
<title>Jenkins</title>
Expand Down
4 changes: 2 additions & 2 deletions automatic/jenkins/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ in verifying that this package's contents are trustworthy.
The installer has been downloaded from their official download link from <https://www.jenkins.io/download/>

1. Download the file via:
64-Bit: <http://mirrors.jenkins-ci.org/windows-stable/2.414.3/jenkins.msi>
64-Bit: <http://mirrors.jenkins-ci.org/windows-stable/2.426.1/jenkins.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
checksum64: 49C5379ABD6FCF57A4443F14371B844D4950C9729DE1D2B0E7CC76BE2B9D0AC6
checksum64: 77E0B34285FDE612B7F712184BC89782D4070AB146530C52627754621A080ABF

File 'LICENSE.txt' is obtained from <https://github.com/jenkinsci/jenkins/blob/master/LICENSE.txt>
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>115.4.2</version>
<version>115.4.3</version>
<title>Mozilla Thunderbird</title>
<owners>chocolatey-community</owners>
<authors>Mozilla</authors>
Expand Down
264 changes: 132 additions & 132 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 @@ -39,7 +39,7 @@ $sa += if ($pp.RemoveDistributionDir) { " /RemoveDistributionDir=true" }

$sa += if ($pp.NoAutoUpdate) { " /MaintenanceService=false" }

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

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

silentArgs = "$sa /S"
validExitCodes = @(0)
Expand All @@ -78,7 +78,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-115.4.2-SSL&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-115.4.3-SSL&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
Expand Down

0 comments on commit e156c79

Please sign in to comment.