diff --git a/gui/win_main.ui b/gui/win_main.ui index 0e1c449..794dd51 100644 --- a/gui/win_main.ui +++ b/gui/win_main.ui @@ -382,7 +382,8 @@ - + + @@ -465,13 +466,13 @@ VideoLAN Builds - + :/buttons/book_open.png:/buttons/book_open.png - MeWiki - x264 Settings + x264 Online Documentation @@ -480,7 +481,7 @@ :/buttons/book_open.png:/buttons/book_open.png - x264 BluRay Authoring + BluRay Authoring Guide @@ -768,6 +769,15 @@ Move Down + + + + :/buttons/book_open.png:/buttons/book_open.png + + + x265 Online Documentation + + buttonAddJob diff --git a/src/win_main.cpp b/src/win_main.cpp index 108e391..55058cd 100644 --- a/src/win_main.cpp +++ b/src/win_main.cpp @@ -209,7 +209,8 @@ MainWindow::MainWindow(const x264_cpu_t *const cpuFeatures, IPC *ipc) SETUP_WEBLINK(ui->actionWebAvisynthPlus, "http://www.avs-plus.net/"); SETUP_WEBLINK(ui->actionWebVapourSynth, "http://www.vapoursynth.com/"); SETUP_WEBLINK(ui->actionWebVapourSynthDocs, "http://www.vapoursynth.com/doc/"); - SETUP_WEBLINK(ui->actionWebWiki, "http://mewiki.project357.com/wiki/X264_Settings"); + SETUP_WEBLINK(ui->actionOnlineDocX264, "http://mewiki.project357.com/wiki/X264_Settings"); + SETUP_WEBLINK(ui->actionOnlineDocX265, "http://x265.readthedocs.org/en/default/"); SETUP_WEBLINK(ui->actionWebBluRay, "http://www.x264bluray.com/"); SETUP_WEBLINK(ui->actionWebAvsWiki, "http://avisynth.nl/index.php/Main_Page#Usage"); SETUP_WEBLINK(ui->actionWebSupport, "http://forum.doom9.org/showthread.php?t=144140"); @@ -957,7 +958,7 @@ void MainWindow::init(void) if(!m_preferences->getDisableWarnings()) { QString text = tr("It appears that VapourSynth is not currently installed on your computer.
Therefore VapourSynth (.vpy) input will not be working at all!").append("

"); - text += tr("Please download and install VapourSynth for Windows (R19 or later):").append("
").append(LINK(vsynth_url)).append("

"); + text += tr("Please download and install VapourSynth for Windows (R20 or later):").append("
").append(LINK(vsynth_url)).append("

"); text += tr("Note that Python v3.x is a prerequisite for installing VapourSynth:").append("
").append(LINK(python_url)).append("
"); const int val = QMessageBox::warning(this, tr("VapourSynth Missing"), QString("%1").arg(text).replace("-", "−"), tr("Close"), tr("Disable this Warning")); if(val == 1)