Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion automatic/crystaldiskmark.install/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The installer has been downloaded from the official download link listed on <htt
and can be verified like this:

1. Download the following installers:
32-Bit: <https://netcologne.dl.sourceforge.net/project/crystaldiskmark/9.0.1/CrystalDiskMark9_0_1.exe>
32-Bit: <https://downloads.sourceforge.net/project/crystaldiskmark/9.0.1/CrystalDiskMark9_0_1.exe>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'
Expand Down
2 changes: 1 addition & 1 deletion automatic/crystaldiskmark.install/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function global:au_GetLatest {
}

return @{
URL32 = "https://netcologne.dl.sourceforge.net/project/crystaldiskmark/$versionMajor$versionMinor/CrystalDiskMark$versionDL.exe"
URL32 = "https://downloads.sourceforge.net/project/crystaldiskmark/$versionMajor$versionMinor/CrystalDiskMark$versionDL.exe"
Version = $versionChoco
FileType = 'exe'
}
Expand Down
2 changes: 1 addition & 1 deletion automatic/crystaldiskmark.portable/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The installer has been downloaded from the official download link listed on <htt
and can be verified like this:

1. Download the following package:
URL: <https://netcologne.dl.sourceforge.net/project/crystaldiskmark/9.0.1/CrystalDiskMark9_0_1.zip>
URL: <https://downloads.sourceforge.net/project/crystaldiskmark/9.0.1/CrystalDiskMark9_0_1.zip>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'
Expand Down
2 changes: 1 addition & 1 deletion automatic/crystaldiskmark.portable/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function global:au_GetLatest {
$versionChoco = $versionMajor
}

$url = "https://netcologne.dl.sourceforge.net/project/crystaldiskmark/$versionMajor$versionMinor/CrystalDiskMark$versionDL.zip"
$url = "https://downloads.sourceforge.net/project/crystaldiskmark/$versionMajor$versionMinor/CrystalDiskMark$versionDL.zip"

$checksum = Get-RemoteChecksum $url

Expand Down
2 changes: 1 addition & 1 deletion automatic/crystaldiskmark/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The installer has been downloaded from the official download link listed on <htt
and can be verified like this:

1. Download the following installers:
32-Bit: <https://netcologne.dl.sourceforge.net/project/crystaldiskmark/9.0.1/CrystalDiskMark9_0_1.exe>
32-Bit: <https://downloads.sourceforge.net/project/crystaldiskmark/9.0.1/CrystalDiskMark9_0_1.exe>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'
Expand Down
2 changes: 1 addition & 1 deletion automatic/crystaldiskmark/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function global:au_GetLatest {
}

return @{
URL32 = "https://netcologne.dl.sourceforge.net/project/crystaldiskmark/$versionMajor$versionMinor/CrystalDiskMark$versionDL.exe"
URL32 = "https://downloads.sourceforge.net/project/crystaldiskmark/$versionMajor$versionMinor/CrystalDiskMark$versionDL.exe"
Version = $versionChoco
FileType = 'exe'
}
Expand Down
2 changes: 1 addition & 1 deletion automatic/pidgin/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

$packageArgs = @{
packageName = $env:ChocolateyPackageName
url = 'https://netcologne.dl.sourceforge.net/project/pidgin/Pidgin/2.14.14/pidgin-2.14.14-offline.exe'
url = 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.14.14/pidgin-2.14.14-offline.exe'
checksum = '7551389982bd9a85991df7436ca1776e68bdc057374c03e8018173e95162bc84'
checksumType = 'sha256'
fileType = 'EXE'
Expand Down
4 changes: 2 additions & 2 deletions automatic/pidgin/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ function global:au_GetLatest {

$page.links | Where-Object href -match $regexVersion | Select-Object -First 1 -expand href
$version = $matches.version

return @{
URL32 = "https://netcologne.dl.sourceforge.net/project/pidgin/Pidgin/$version/pidgin-$version-offline.exe"
URL32 = "https://downloads.sourceforge.net/project/pidgin/Pidgin/$version/pidgin-$version-offline.exe"
Version = $version
}
}
Expand Down
Loading