* make sure that any code is downloaded securely via https

This commit is contained in:
Reinhard Pointner 2014-10-20 18:05:50 +00:00
parent 5cfece44b5
commit 603c109ca6
3 changed files with 5 additions and 5 deletions

View File

@ -102,9 +102,9 @@ Section MAIN
DetailPrint "Downloading latest version..."
${if} ${RunningX64}
inetc::get /USERAGENT "nsis" /caption "Downloading FileBot (64-bit)" "http://www.filebot.net/download.php?mode=nsis&type=msi&arch=x64" "$PLUGINSDIR\FileBot.msi" /end
inetc::get /USERAGENT "nsis" /caption "Downloading FileBot (64-bit)" "https://www.filebot.net/download.php?mode=nsis&type=msi&arch=x64" "$PLUGINSDIR\FileBot.msi" /end
${else}
inetc::get /USERAGENT "nsis" /caption "Downloading FileBot (32-bit)" "http://www.filebot.net/download.php?mode=nsis&type=msi&arch=x86" "$PLUGINSDIR\FileBot.msi" /end
inetc::get /USERAGENT "nsis" /caption "Downloading FileBot (32-bit)" "https://www.filebot.net/download.php?mode=nsis&type=msi&arch=x86" "$PLUGINSDIR\FileBot.msi" /end
${endif}
DetailPrint "Installing latest version..."

View File

@ -1,7 +1,7 @@
/**
* Just add http://packages.filebot.net/syno/ in Package Sources ;)
* Just add https://packages.filebot.net/syno/ in Package Sources ;)
*
* Package Center -> Settings -> Package Sources -> Add -> Name: FileBot and Location: http://packages.filebot.net/syno/ -> OK
* Package Center -> Settings -> Package Sources -> Add -> Name: FileBot and Location: https://packages.filebot.net/syno/ -> OK
*/
[
{

View File

@ -1,4 +1,4 @@
<?php
header('HTTP/1.1 302 Found');
header('Location: http://packages.filebot.net/syno/index.json');
header('Location: https://packages.filebot.net/syno/index.json');
?>