OSDN Git Service

Fixed stupid copy&paste error. Fixes error about missing VapourSynth when Avisynth...
authorlordmulder <mulder2@gmx.de>
Thu, 28 Apr 2016 17:28:51 +0000 (19:28 +0200)
committerlordmulder <mulder2@gmx.de>
Thu, 28 Apr 2016 17:28:51 +0000 (19:28 +0200)
HISTORY.txt
src/version.h
src/win_addJob.cpp

index 8d2d3b2..57d27f0 100644 (file)
@@ -2,6 +2,9 @@
 Simple x264/x265 Launcher version history 
 ----------------------------------------- 
 
+Version 2.69 [2016-04-28]
+* Fixed a VapourSynth error, when Avisynth is *not* installed
+
 Version 2.69 [2016-04-23]
 * Updated x264 to revision 2692
 * Updated x265 to version 1.9+140
index 3d7fd42..fe13c9a 100644 (file)
@@ -26,7 +26,7 @@
 #define VER_X264_MAJOR 2
 #define VER_X264_MINOR 6
 #define VER_X264_PATCH 9
-#define VER_X264_BUILD 1024
+#define VER_X264_BUILD 1025
 
 #define VER_X264_PORTABLE_EDITION (0)
 
index 2f7caf9..f503ca0 100644 (file)
@@ -680,7 +680,7 @@ void AddJobDialog::accept(void)
        }
        else if(sourceType == MediaInfo::FILETYPE_VAPOURSYNTH)
        {
-               if(!m_sysinfo->hasAvisynth())
+               if(!m_sysinfo->hasVapourSynth())
                {
                        if(QMessageBox::warning(this, tr("VapurSynth unsupported!"), tr("<nobr>A VapourSynth script was selected as input, although VapourSynth is <b>not/<b> available!</nobr>"), tr("Abort"), tr("Ignore (at your own risk!)")) != 1)
                        {