From 03b081ef789d5fb77dc274048dd024202e49a564 Mon Sep 17 00:00:00 2001
From: Reinhard Pointner
- filebot -rename "One Piece" --db anidb
- Rename given episodes using AniDB episode info.
+ filebot -rename "One Piece" --db anidb -non-strict
+ Rename given episodes using AniDB episode info. Enable comprehensive Episode/File matching.
filebot -rename "Generation Kill" --format "{n} E{e} [{t}]" -non-strict
diff --git a/website/download.php b/website/download.php
index 53f2f3b8..5c445336 100644
--- a/website/download.php
+++ b/website/download.php
@@ -5,19 +5,23 @@ $type = $_GET['type'];
$folder = 'http://sourceforge.net/projects/filebot/files/filebot/FileBot_'.$version;
$file = 'undefined';
-if ($type == 'msi')
+
+if ($type == 'nsis') {
+ $folder = 'http://sourceforge.net/projects/filebot/files/filebot/HEAD';
+ $file = 'FileBot-setup.exe';
+} else if ($type == 'msi')
$file = 'FileBot_'.$version.'_'.$arch.'.msi';
-if ($type == 'deb')
+else if ($type == 'deb')
$file = 'filebot_'.$version.'_'.$arch.'.deb';
-if ($type == 'app')
+else if ($type == 'app')
$file = 'FileBot_'.$version.'.app.tar.gz';
-if ($type == 'jar')
+else if ($type == 'jar')
$file = 'FileBot_'.$version.'.jar';
-if ($type == 'portable')
+else if ($type == 'portable')
$file = 'FileBot_'.$version.'-portable.zip';
-if ($type == 'ipkg')
+else if ($type == 'ipkg')
$file = 'filebot_'.$version.'_'.$arch.'.ipk';
-if ($type == 'src')
+else if ($type == 'src')
$file = 'filebot-'.$version.'-src.zip';
diff --git a/website/index.html b/website/index.html
index febfcb64..7322367b 100644
--- a/website/index.html
+++ b/website/index.html
@@ -335,7 +335,7 @@