Skip to content

Commit

Permalink
AU: 2 updated - chromium smartftp
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed May 23, 2023
1 parent 5aad1ab commit 74f1445
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"snapshots": "115.0.5789.0-snapshots",
"snapshots": "115.0.5790.0-snapshots",
"stable": "113.0.5672.127"
}
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>chromium</id>
<version>115.0.5789.0-snapshots</version>
<version>115.0.5790.0-snapshots</version>
<title>Chromium Snapshots</title>
<owners>chocolatey-community</owners>
<authors>The Chromium Authors</authors>
Expand Down
8 changes: 4 additions & 4 deletions automatic/chromium/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://github.com/henrypp/chromium/releases/> (the listed mirrors
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1147730/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1147719/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1148015/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1148033/mini_installer.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: 1A208C0173778BE086801D7A49B0D26F391BA119AFF4B56DC080445F05C5AF5A
checksum64: D4B8E75C9971466648819BACA16930C963E4CC0B8C8EED5693EF99156E216E8D
checksum32: 1A618B1A4ADA29542DB6FDC0305280A34D2C44C4736D72C524CBE3F52B23083A
checksum64: 3F7AEEE620C0F37A878CFA53B243D6232D5BC06135D1B8D2784162297500E514

The file 'LICENSE.txt' has been obtained from <https://chromium.googlesource.com/chromium/src.git/+/master/LICENSE>
2 changes: 1 addition & 1 deletion automatic/chromium/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$scriptDir=$toolsDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
. (Join-Path $scriptDir 'helper.ps1')

$version = "115.0.5789.0-snapshots"
$version = "115.0.5790.0-snapshots"
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
Expand Down
2 changes: 1 addition & 1 deletion automatic/smartftp/smartftp.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<id>smartftp</id>
<title>SmartFTP</title>
<owners>chocolatey-community</owners>
<version>10.0.3106.0</version>
<version>10.0.3107.0</version>
<authors>SmartSoft</authors>
<summary>FTP, FTPS, SFTP, HTTP, Amazon S3, WebDAV, Google Drive, Google Cloud Storage, Microsoft OneDrive, Telnet, Terminal client.</summary>
<description><![CDATA[SmartFTP is a fast and reliable FTP, FTPS, SFTP, HTTP, Amazon S3, WebDAV, Google Drive, Google Cloud Storage, Microsoft OneDrive, Backblaze B2, Telnet, Terminal client with lots of features and a modern user interface.
Expand Down
2 changes: 1 addition & 1 deletion automatic/smartftp/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $packageArgs = @{
url = 'https://www.smartftp.com/get/SmartFTP86.msi'
url64bit = 'https://www.smartftp.com/get/SmartFTP64.msi'
checksum = '8d885003aa204d160b3cfab01f7f686126dddc0e25d171ec7dd14bf3b369e85e'
checksum64 = '7ff11a3b6154a1d1c55f93a3fbc4590a897cba44b803f44f86f602601a26172d'
checksum64 = '48fadade326d0901eefdb6c2e7d16777ab563e9c4626f8181ebaf095a99580c4'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/quiet'
Expand Down
8 changes: 4 additions & 4 deletions automatic/smartftp/update.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import-module au
import-module au

$releases = 'https://www.smartftp.com/download'

Expand All @@ -24,10 +24,10 @@ function global:au_GetLatest {
$download_page = Invoke-WebRequest -Uri $releases -UseBasicParsing

$re = '\.exe$'
$url = $download_page.links | ? href -match $re
$url = $download_page.links | Where-Object href -match $re

$url = $url | ? OuterHTML -match '64-bit' | select -First 1
$version = $url.OuterHTML -split ' ' | ? { [version]::TryParse($_, [ref]($__)) }
$url = $url | Where-Object OuterHTML -match '64-bit' | Select-Object -First 1
$version = $url.OuterHTML -split ' ' | Where-Object { [version]::TryParse($_, [ref]($__)) }
@{
Version = $version
URL32 = 'https://www.smartftp.com/get/SmartFTP86.msi'
Expand Down

0 comments on commit 74f1445

Please sign in to comment.