diff --git a/HISTORY.txt b/HISTORY.txt index 8d2d3b2..57d27f0 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -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 diff --git a/src/version.h b/src/version.h index 3d7fd42..fe13c9a 100644 --- a/src/version.h +++ b/src/version.h @@ -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) diff --git a/src/win_addJob.cpp b/src/win_addJob.cpp index 2f7caf9..f503ca0 100644 --- a/src/win_addJob.cpp +++ b/src/win_addJob.cpp @@ -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("A VapourSynth script was selected as input, although VapourSynth is not/ available!"), tr("Abort"), tr("Ignore (at your own risk!)")) != 1) {