Skip to content

Commit

Permalink
AU: 4 updated - gimp GoogleChrome nexus-repository thunderbird
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Nov 8, 2023
1 parent 56be1ab commit 1cda8de
Show file tree
Hide file tree
Showing 10 changed files with 149 additions and 149 deletions.
2 changes: 1 addition & 1 deletion automatic/gimp/gimp.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>gimp</id>
<version>2.10.34</version>
<version>2.10.36</version>
<title>GIMP</title>
<owners>chocolatey-community</owners>
<authors>GIMP Team</authors>
Expand Down
6 changes: 3 additions & 3 deletions automatic/gimp/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
$ErrorActionPreference = 'Stop'

$fallbackUrl32 = 'https://download.gimp.org/gimp/v2.10/windows/gimp-2.10.34-setup.exe'
$fallbackUrl32 = 'https://download.gimp.org/gimp/v2.10/windows/gimp-2.10.36-setup.exe'

$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
url = 'https://download.gimp.org/gimp/v2.10/windows/gimp-2.10.34-setup.exe'
url = 'https://download.gimp.org/gimp/v2.10/windows/gimp-2.10.36-setup.exe'
softwareName = 'GIMP'
checksum = '1cf2f422e4ab887415222d736313a38372012c5f3f46a2d2cff18245b22d04cd'
checksum = '947efa2397f7a17b8e4f4c9689e4ab67f00ca220ac1aa0ae0c1e179ccfc4fc10'
checksumType = 'sha256'
silentArgs = "/VERYSILENT /NORESTART /RESTARTEXITCODE=3010 /SUPPRESSMSGBOXES /SP- /LOG=`"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).InnoInstall.log`""
validExitCodes = @(0)
Expand Down
2 changes: 1 addition & 1 deletion automatic/gimp/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function global:au_GetLatest {
$download_page = Invoke-WebRequest -Uri $releases -UseBasicParsing

$re = '\.exe$'
$url32 = $download_page.Links | ? href -match $re | select -first 1 -expand href | % { 'https:' + $_ }
$url32 = $download_page.Links | Where-Object href -match $re | Select-Object -first 1 -expand href | ForEach-Object { 'https:' + $_ }

$fallbackUrl32 = $url32 -replace "download.gimp.org/mirror", "download.gimp.org"

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>119.0.6045.106</version>
<version>119.0.6045.124</version>
<title>Google Chrome</title>
<owners>chocolatey-community</owners>
<authors>Google LLC.</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 = '119.0.6045.106'
$version = '119.0.6045.124'
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 = '2bf8e0a9a57c537e0def3a5c9a2619c4a9c15989e775290d575f3714289795d0'
checksum64 = 'f6e8b755895ccaf15690b56a336e325054b3a3269b51d9918352a01ae252b7fb'
checksum = '4a5c337fa6518598424c3b58d12418d2b7a77674efcf99fb05da45402d32da1d'
checksum64 = '0814fb8b126fddb7cbe1c82a03ff0785d13ac408adb6ae8e13f27f6913af48b8'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down
2 changes: 1 addition & 1 deletion automatic/nexus-repository/nexus-repository.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>nexus-repository</id>
<title>Nexus Repository OSS</title>
<version>3.61.0.02</version>
<version>3.62.0.01</version>
<authors>Sonatype</authors>
<owners>chocolatey-community,DarwinJS</owners>
<summary>Free open source version of popular Nexus Repository for binary artifacts including first class Nuget support.</summary>
Expand Down
6 changes: 3 additions & 3 deletions automatic/nexus-repository/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if (Get-OSArchitectureWidth 32) {
throw "Sonatype Nexus Repository 3.0 and greater only supports 64-bit Windows."
}

$Version = '3.61.0-02'
$Version = '3.62.0-01'
$NexusVersionedFolder = "nexus-$Version"
$TargetFolder = "$env:ProgramData\nexus"
$ExtractFolder = "$env:TEMP\NexusExtract"
Expand Down Expand Up @@ -55,8 +55,8 @@ if (Test-Path "$ExtractFolder") {
$PackageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $ExtractFolder
url64 = 'https://sonatype-download.global.ssl.fastly.net/repository/downloads-prod-group/3/nexus-3.61.0-02-win64.zip'
checksum64 = 'ea0aac881f3219d34ee6fd714fc6a65d69777e692a332a05b5a37f0021a360b7'
url64 = 'https://sonatype-download.global.ssl.fastly.net/repository/downloads-prod-group/3/nexus-3.62.0-01-win64.zip'
checksum64 = 'a0481ec976602fd631ee5b66d55878553ba630f6155d24acd0ac0f0c757c1c17'
checksumType64 = 'SHA256'
}

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>115.4.1</version>
<version>115.4.2</version>
<title>Mozilla Thunderbird</title>
<owners>chocolatey-community</owners>
<authors>Mozilla</authors>
Expand Down
Loading

0 comments on commit 1cda8de

Please sign in to comment.