Skip to content

Commit

Permalink
Update now we have code cert
Browse files Browse the repository at this point in the history
Use https for perl installers
  • Loading branch information
WinterMute committed Mar 6, 2018
1 parent 1d8fedc commit 58295b1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions nsis/INIfiles/devkitProUpdate.ini
@@ -1,7 +1,7 @@
[devkitProUpdate]
Build=49
Build=50
URL=http://downloads.devkitpro.org
Filename=devkitProUpdater-2.1.0.exe
Filename=devkitProUpdater-2.1.1.exe

[msys]
Version=1.0.17-1
Expand Down
4 changes: 2 additions & 2 deletions nsis/devkitPro.nsi
Expand Up @@ -12,13 +12,13 @@ RequestExecutionLevel admin ;Require admin rights on NT6+ (When UAC is turned on

; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "devkitProUpdater"
!define PRODUCT_VERSION "2.1.0"
!define PRODUCT_VERSION "2.1.1"
!define PRODUCT_PUBLISHER "devkitPro"
!define PRODUCT_WEB_SITE "http://www.devkitpro.org"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
!define PRODUCT_STARTMENU_REGVAL "NSIS:StartMenuDir"
!define BUILD "49"
!define BUILD "50"

SetCompressor /SOLID lzma

Expand Down
4 changes: 2 additions & 2 deletions perl/devkitA64update.pl
Expand Up @@ -98,7 +98,7 @@
unlink("devkitProUpdate.ini") or die $!;
}
printf("Downloading update file...");
system($downloader . " http://downloads.devkitpro.org/devkitProUpdate.ini") and die "Failed to download!";
system($downloader . " https://downloads.devkitpro.org/devkitProUpdate.ini") and die "Failed to download!";
printf("OK!\n");

# Initialize versions & newVersions
Expand Down Expand Up @@ -181,7 +181,7 @@
unlink($updates{$key});
}

my $cmd = sprintf("%s http://downloads.devkitpro.org/%s", $downloader, $updates{$key});
my $cmd = sprintf("%s https://downloads.devkitpro.org/%s", $downloader, $updates{$key});
printf(" Downloading...");
system($cmd) and die "Failed to download $updates{$key}\n";
printf("OK!\n");
Expand Down
4 changes: 2 additions & 2 deletions perl/devkitARMupdate.pl
Expand Up @@ -122,7 +122,7 @@
unlink("devkitProUpdate.ini") or die $!;
}
printf("Downloading update file...");
system($downloader . " http://downloads.devkitpro.org/devkitProUpdate.ini") and die "Failed to download!";
system($downloader . " https://downloads.devkitpro.org/devkitProUpdate.ini") and die "Failed to download!";
printf("OK!\n");

# Initialize versions & newVersions
Expand Down Expand Up @@ -219,7 +219,7 @@
unlink($updates{$key});
}

my $cmd = sprintf("%s http://downloads.devkitpro.org/%s", $downloader, $updates{$key});
my $cmd = sprintf("%s https://downloads.devkitpro.org/%s", $downloader, $updates{$key});
printf(" Downloading...");
system($cmd) and die "Failed to download $updates{$key}\n";
printf("OK!\n");
Expand Down
4 changes: 2 additions & 2 deletions perl/devkitPPCupdate.pl
Expand Up @@ -102,7 +102,7 @@
unlink("devkitProUpdate.ini") or die $!;
}
printf("Downloading update file...");
system($downloader . " http://downloads.devkitpro.org/devkitProUpdate.ini") and die "Failed to download!";
system($downloader . " https://downloads.devkitpro.org/devkitProUpdate.ini") and die "Failed to download!";
printf("OK!\n");

# Initialize versions & newVersions
Expand Down Expand Up @@ -187,7 +187,7 @@
unlink($updates{$key});
}

my $cmd = sprintf("%s http://downloads.devkitpro.org/%s", $downloader, $updates{$key});
my $cmd = sprintf("%s https://downloads.devkitpro.org/%s", $downloader, $updates{$key});
printf(" Downloading...");
system($cmd) and die "Failed to download $updates{$key}\n";
printf("OK!\n");
Expand Down

0 comments on commit 58295b1

Please sign in to comment.