Fixed stupid copy&paste error. Fixes error about missing VapourSynth when Avisynth is *not* installed (but VapourSynth is).
This commit is contained in:
parent
669a915118
commit
f6e8d2e113
@ -2,6 +2,9 @@
|
|||||||
Simple x264/x265 Launcher version history
|
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]
|
Version 2.69 [2016-04-23]
|
||||||
* Updated x264 to revision 2692
|
* Updated x264 to revision 2692
|
||||||
* Updated x265 to version 1.9+140
|
* Updated x265 to version 1.9+140
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#define VER_X264_MAJOR 2
|
#define VER_X264_MAJOR 2
|
||||||
#define VER_X264_MINOR 6
|
#define VER_X264_MINOR 6
|
||||||
#define VER_X264_PATCH 9
|
#define VER_X264_PATCH 9
|
||||||
#define VER_X264_BUILD 1024
|
#define VER_X264_BUILD 1025
|
||||||
|
|
||||||
#define VER_X264_PORTABLE_EDITION (0)
|
#define VER_X264_PORTABLE_EDITION (0)
|
||||||
|
|
||||||
|
@ -680,7 +680,7 @@ void AddJobDialog::accept(void)
|
|||||||
}
|
}
|
||||||
else if(sourceType == MediaInfo::FILETYPE_VAPOURSYNTH)
|
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)
|
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)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user