Skip to content

Commit

Permalink
AU: 1 updated - sdio
Browse files Browse the repository at this point in the history
  • Loading branch information
tunisiano187 committed Sep 6, 2021
1 parent c1af901 commit 574cabf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions automatic/sdio/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ Package can be verified like this:

1. Go to

x32: https://www.snappy-driver-installer.org/downloads/SDIO_1.11.1.736.zip
x32: https://www.snappy-driver-installer.org/downloads/SDIO_1.11.2.737.zip

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'

checksum32: 4c2debfb6900cec773e7a2d2132beeddacc49afa4b1a21c708ab68bca517c187
checksum32: a39205668ab53799e93493747c719dc43b8358d304b768119a7ae9d31e46d14b

Using AU:

Get-RemoteChecksum32 https://www.snappy-driver-installer.org/downloads/SDIO_1.11.1.736.zip
Get-RemoteChecksum32 https://www.snappy-driver-installer.org/downloads/SDIO_1.11.2.737.zip

2 changes: 1 addition & 1 deletion automatic/sdio/sdio.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>sdio</id>
<version>1.11.1.736</version>
<version>1.11.2.737</version>
<title>Snappy Driver Installer Origin</title>
<authors>Glenn Delahoy</authors>
<owners>tunisiano</owners>
Expand Down
10 changes: 5 additions & 5 deletions automatic/sdio/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ $packageArgs = @{
packageName = 'sdio'
unzipLocation = $toolsDir
fileType = 'ZIP'
url = 'https://www.snappy-driver-installer.org/downloads/SDIO_1.11.1.736.zip'
checksum = '4c2debfb6900cec773e7a2d2132beeddacc49afa4b1a21c708ab68bca517c187'
url = 'https://www.snappy-driver-installer.org/downloads/SDIO_1.11.2.737.zip'
checksum = 'a39205668ab53799e93493747c719dc43b8358d304b768119a7ae9d31e46d14b'
checksumType = 'sha256'
}

Expand All @@ -24,9 +24,9 @@ if (!(Test-Path -path "$ENV:ALLUSERSPROFILE\SDIO")) {
}

$shortcutName = 'Snappy Driver Installer Origin'
$fileName32 = 'SDIO_R736.exe'
$fileName64 = 'SDIO_x64_R736.exe'
$fullVersion = '1.11.1.736'
$fileName32 = 'SDIO_R737.exe'
$fileName64 = 'SDIO_x64_R737.exe'
$fullVersion = '1.11.2.737'
$FileFullpath32 = Join-Path $ToolsDir\SDIO_$fullVersion $fileName32
$FileFullpath64 = Join-Path $ToolsDir\SDIO_$fullVersion $fileName64

Expand Down

0 comments on commit 574cabf

Please sign in to comment.