From cd1ff3b5dabe9a453aeba9a3d79668faba6ff8d9 Mon Sep 17 00:00:00 2001 From: Chocolatey Community Date: Fri, 7 Jul 2023 12:14:19 +0000 Subject: [PATCH] AU: 3 updated - 360ts graphviz spotify [skip ci] https://gist.github.com/choco-bot/a14b1e5bfaf70839b338eb1ab7f8226f/a90b2e80494654fc46ecfa384ba5a631eae224d2 --- automatic/360ts/360ts.json | 2 +- automatic/360ts/360ts.nuspec | 2 +- automatic/360ts/tools/chocolateyInstall.ps1 | 4 ++-- automatic/graphviz/graphviz.nuspec | 2 +- automatic/graphviz/legal/VERIFICATION.txt | 4 ++-- automatic/graphviz/tools/chocolateyInstall.ps1 | 2 +- automatic/graphviz/update.ps1 | 6 +++--- automatic/spotify/info | 2 +- automatic/spotify/spotify.nuspec | 2 +- automatic/spotify/tools/ChocolateyInstall.ps1 | 2 +- 10 files changed, 14 insertions(+), 14 deletions(-) diff --git a/automatic/360ts/360ts.json b/automatic/360ts/360ts.json index 0b21ae0e35f..49c2c4c6d5d 100644 --- a/automatic/360ts/360ts.json +++ b/automatic/360ts/360ts.json @@ -1,4 +1,4 @@ { - "ts": "11.0.0.1020", + "ts": "11.0.0.1022", "tse": "8.8.0.1119" } diff --git a/automatic/360ts/360ts.nuspec b/automatic/360ts/360ts.nuspec index 2f7d1a9479e..3aa306d39cf 100644 --- a/automatic/360ts/360ts.nuspec +++ b/automatic/360ts/360ts.nuspec @@ -3,7 +3,7 @@ 360ts - 11.0.0.1020 + 11.0.0.1022 360 Total Security Qihu 360 Software chocolatey-community,adgellida diff --git a/automatic/360ts/tools/chocolateyInstall.ps1 b/automatic/360ts/tools/chocolateyInstall.ps1 index 67d0fd44b6a..f2413d11d57 100644 --- a/automatic/360ts/tools/chocolateyInstall.ps1 +++ b/automatic/360ts/tools/chocolateyInstall.ps1 @@ -3,8 +3,8 @@ $packageArgs = @{ packageName = '360ts' fileType = 'exe' - url = 'https://free.360totalsecurity.com/totalsecurity/360TS_Setup_11.0.0.1020.exe' - checksum = 'dddc006f7e833598d26dcb381df191425aec0209f1b5878532502706b1762c50' + url = 'https://free.360totalsecurity.com/totalsecurity/360TS_Setup_11.0.0.1022.exe' + checksum = '82522183e0c27f2d3047e1645bab04a4a6cbc17ced50cbf7c29f2cb51b827a46' checksumType = 'sha256' silentArgs = '/S' validExitCodes = @(0) diff --git a/automatic/graphviz/graphviz.nuspec b/automatic/graphviz/graphviz.nuspec index d8ee53e3239..15bf90d42ff 100644 --- a/automatic/graphviz/graphviz.nuspec +++ b/automatic/graphviz/graphviz.nuspec @@ -2,7 +2,7 @@ graphviz - 8.0.5 + 8.1.0 Graphviz Arif Bilgin, graphviz committers chocolatey, Jason Denizac, Friedrich von Never diff --git a/automatic/graphviz/legal/VERIFICATION.txt b/automatic/graphviz/legal/VERIFICATION.txt index fea5bb9ab54..5ec41c23dbf 100644 --- a/automatic/graphviz/legal/VERIFICATION.txt +++ b/automatic/graphviz/legal/VERIFICATION.txt @@ -7,7 +7,7 @@ Package can be verified like this: 1. Go to - x64: https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/8.0.5/windows_10_cmake_Release_graphviz-install-8.0.5-win64.exe + x64: https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/8.1.0/windows_10_cmake_Release_graphviz-install-8.1.0-win64.exe to download the installer. @@ -15,7 +15,7 @@ Package can be verified like this: - Use powershell function 'Get-FileHash' - Use Chocolatey utility 'checksum.exe' - checksum64: F9B69DB90A8538E411499F8D55B356A092611581F6F201599C0CECE1B9061AB9 + checksum64: E8F18A59A3C4A7B9D8F00C203D1C3CECB8B2353D79BA6546E78084796E36F56F File 'license.txt' is a copy of file 'share\license.rtf' obtained from the installation directory diff --git a/automatic/graphviz/tools/chocolateyInstall.ps1 b/automatic/graphviz/tools/chocolateyInstall.ps1 index adc6b4d04ef..c1bef6ac52b 100644 --- a/automatic/graphviz/tools/chocolateyInstall.ps1 +++ b/automatic/graphviz/tools/chocolateyInstall.ps1 @@ -5,7 +5,7 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition $packageArgs = @{ packageName = 'graphviz' fileType = 'exe' - file64 = "$toolsPath\graphviz-8.0.5 (64-bit) EXE installer.exe" + file64 = "$toolsPath\graphviz-8.1.0 (64-bit) EXE installer.exe" silentArgs = '/S' validExitCodes = @(0) softwareName = 'Graphviz*' diff --git a/automatic/graphviz/update.ps1 b/automatic/graphviz/update.ps1 index 645b866fc82..61b63749a94 100644 --- a/automatic/graphviz/update.ps1 +++ b/automatic/graphviz/update.ps1 @@ -1,4 +1,4 @@ -import-module au +import-module au $releases = "https://graphviz.org/download" @@ -21,12 +21,12 @@ function global:au_GetLatest { $download_page = Invoke-WebRequest -UseBasicParsing -Uri $releases $re = "windows_10_cmake_Release.+-win64\.exe" - $link = $download_page.links | ? outerHtml -match $re | select -first 1 + $link = $download_page.links | Where-Object outerHtml -match $re | Select-Object -first 1 $link.outerHtml -match '>(.+)' | Out-Null $fileName = $Matches[1] @{ - Version = $filename -split '-| ' | select -First 1 -Skip 1 + Version = $filename -split '-| ' | Select-Object -First 1 -Skip 1 URL64 = $link.href FileName = $fileName FileType = 'exe' diff --git a/automatic/spotify/info b/automatic/spotify/info index 99d526b8016..ccd9f20e3d0 100644 --- a/automatic/spotify/info +++ b/automatic/spotify/info @@ -1 +1 @@ -"cd34d01b7a01c7df53f9384e06ae6e76"|1.2.14.1149 +"638760427d2d4e7d4727271957eb1378"|1.2.15.828 diff --git a/automatic/spotify/spotify.nuspec b/automatic/spotify/spotify.nuspec index f2c11b48c15..30cf8c82a64 100644 --- a/automatic/spotify/spotify.nuspec +++ b/automatic/spotify/spotify.nuspec @@ -3,7 +3,7 @@ spotify - 1.2.14.1149 + 1.2.15.828 Spotify Spotify http://spotify.com diff --git a/automatic/spotify/tools/ChocolateyInstall.ps1 b/automatic/spotify/tools/ChocolateyInstall.ps1 index 9706076aacc..9eded797f92 100644 --- a/automatic/spotify/tools/ChocolateyInstall.ps1 +++ b/automatic/spotify/tools/ChocolateyInstall.ps1 @@ -5,7 +5,7 @@ $arguments = @{ softwareName = 'Spotify' file = Join-Path $downloadDir $installer url = 'https://download.scdn.co/SpotifySetup.exe' - checksum = 'ABE109BE1C7321D712EF841E49270987327BE8B7AA5AAC091EE34AE01347C6040A4C8956606A69B1C6D72A7D89ADFFB1C3036B75ACADDE1CB33DE6CA64DD36CE' + checksum = '6FCB04CAA61448E176A4C45E580A1620A3507AA59C8C8F64536262E5588F841E96AED9F4A445368A161924E18A9FBDC485B6C389888A85370EA683BC73045538' fileType = 'exe' checksumType = 'sha512' silentArgs = '/silent'