diff --git a/gui/win_main.ui b/gui/win_main.ui index b0317c7..4b4968f 100644 --- a/gui/win_main.ui +++ b/gui/win_main.ui @@ -339,21 +339,33 @@ :/buttons/setup.png:/buttons/setup.png - + + + + Download Avisynth + + + + :/buttons/setup.png:/buttons/setup.png + + + + - - + + + @@ -421,13 +433,13 @@ Komisar's Web-Site - + :/buttons/world_link.png:/buttons/world_link.png - Jarod's Web-Site + VideoLAN Builds @@ -532,19 +544,19 @@ - :/buttons/setup.png:/buttons/setup.png + :/buttons/world_link.png:/buttons/world_link.png - Download Avisynth (32-Bit) + 32-Bit Avisynth (Stable) - :/buttons/setup.png:/buttons/setup.png + :/buttons/world_link.png:/buttons/world_link.png - Download Avisynth (64-Bit) + 64-Bit Avisynth (Experimental) @@ -562,7 +574,7 @@ :/buttons/book_open.png:/buttons/book_open.png - Secret Recipe - Shush! + Secret Recipe - Shush! @@ -604,6 +616,34 @@ Open... + + + Download Avisynth + + + + + utz + + + + + + :/buttons/setup.png:/buttons/setup.png + + + Download VapourSynth + + + + + + :/buttons/book_open.png:/buttons/book_open.png + + + VapourSynth Manual + + buttonAddJob diff --git a/src/version.h b/src/version.h index cd2bff5..7688970 100644 --- a/src/version.h +++ b/src/version.h @@ -22,7 +22,7 @@ #define VER_X264_MAJOR 2 #define VER_X264_MINOR 1 #define VER_X264_PATCH 9 -#define VER_X264_BUILD 548 +#define VER_X264_BUILD 552 #define VER_X264_MINIMUM_REV 2339 #define VER_X264_CURRENT_API 135 diff --git a/src/win_main.cpp b/src/win_main.cpp index b1b9245..df25901 100644 --- a/src/win_main.cpp +++ b/src/win_main.cpp @@ -161,10 +161,12 @@ MainWindow::MainWindow(const x264_cpu_t *const cpuFeatures) connect(actionWebMulder, SIGNAL(triggered()), this, SLOT(showWebLink())); connect(actionWebX264, SIGNAL(triggered()), this, SLOT(showWebLink())); connect(actionWebKomisar, SIGNAL(triggered()), this, SLOT(showWebLink())); - connect(actionWebJarod, SIGNAL(triggered()), this, SLOT(showWebLink())); + connect(actionWebVideoLAN, SIGNAL(triggered()), this, SLOT(showWebLink())); connect(actionWebJEEB, SIGNAL(triggered()), this, SLOT(showWebLink())); connect(actionWebAvisynth32, SIGNAL(triggered()), this, SLOT(showWebLink())); connect(actionWebAvisynth64, SIGNAL(triggered()), this, SLOT(showWebLink())); + connect(actionWebVapourSynth, SIGNAL(triggered()), this, SLOT(showWebLink())); + connect(actionWebVapourSynthDocs, SIGNAL(triggered()), this, SLOT(showWebLink())); connect(actionWebWiki, SIGNAL(triggered()), this, SLOT(showWebLink())); connect(actionWebBluRay, SIGNAL(triggered()), this, SLOT(showWebLink())); connect(actionWebAvsWiki, SIGNAL(triggered()), this, SLOT(showWebLink())); @@ -493,7 +495,7 @@ void MainWindow::showAbout(void) text2 += tr("Copyright (c) 2000 Ben Rudiak-Gould and all subsequent developers.
"); text2 += tr("Released under the terms of the GNU General Public License.

"); text2 += tr("Please visit the web-site %1 for more information.
").arg("http://avisynth.org/"); - text2 += tr("Read the guide to get started and use the support forum for help!
").arg("http://avisynth.org/mediawiki/First_script", "http://forum.doom9.org/forumdisplay.php?f=33"); + text2 += tr("Read the guide to get started and use the support forum for help!
").arg("http://avisynth.nl/index.php/First_script", "http://forum.doom9.org/forumdisplay.php?f=33"); QMessageBox x264Box(this); x264Box.setIconPixmap(QIcon(":/images/avisynth.png").pixmap(48,67)); @@ -536,18 +538,20 @@ void MainWindow::showAbout(void) */ void MainWindow::showWebLink(void) { - if(QObject::sender() == actionWebMulder) QDesktopServices::openUrl(QUrl(home_url)); - if(QObject::sender() == actionWebX264) QDesktopServices::openUrl(QUrl("http://www.x264.com/")); - if(QObject::sender() == actionWebKomisar) QDesktopServices::openUrl(QUrl("http://komisar.gin.by/")); - if(QObject::sender() == actionWebJarod) QDesktopServices::openUrl(QUrl("http://www.x264.nl/")); - if(QObject::sender() == actionWebJEEB) QDesktopServices::openUrl(QUrl("http://x264.fushizen.eu/")); - if(QObject::sender() == actionWebAvisynth32) QDesktopServices::openUrl(QUrl("http://sourceforge.net/projects/avisynth2/files/AviSynth%202.5/")); - if(QObject::sender() == actionWebAvisynth64) QDesktopServices::openUrl(QUrl("http://code.google.com/p/avisynth64/downloads/list")); - if(QObject::sender() == actionWebWiki) QDesktopServices::openUrl(QUrl("http://mewiki.project357.com/wiki/X264_Settings")); - if(QObject::sender() == actionWebBluRay) QDesktopServices::openUrl(QUrl("http://www.x264bluray.com/")); - if(QObject::sender() == actionWebAvsWiki) QDesktopServices::openUrl(QUrl("http://avisynth.org/mediawiki/Main_Page#Usage")); - if(QObject::sender() == actionWebSupport) QDesktopServices::openUrl(QUrl("http://forum.doom9.org/showthread.php?t=144140")); - if(QObject::sender() == actionWebSecret) QDesktopServices::openUrl(QUrl("http://www.youtube.com/watch_popup?v=AXIeHY-OYNI")); + if(QObject::sender() == actionWebMulder) QDesktopServices::openUrl(QUrl(home_url)); + if(QObject::sender() == actionWebX264) QDesktopServices::openUrl(QUrl("http://www.x264.com/")); + if(QObject::sender() == actionWebKomisar) QDesktopServices::openUrl(QUrl("http://komisar.gin.by/")); + if(QObject::sender() == actionWebVideoLAN) QDesktopServices::openUrl(QUrl("http://download.videolan.org/pub/x264/binaries/")); + if(QObject::sender() == actionWebJEEB) QDesktopServices::openUrl(QUrl("http://x264.fushizen.eu/")); + if(QObject::sender() == actionWebAvisynth32) QDesktopServices::openUrl(QUrl("http://sourceforge.net/projects/avisynth2/files/AviSynth%202.5/")); + if(QObject::sender() == actionWebAvisynth64) QDesktopServices::openUrl(QUrl("http://code.google.com/p/avisynth64/downloads/list")); + if(QObject::sender() == actionWebVapourSynth) QDesktopServices::openUrl(QUrl("http://www.vapoursynth.com/")); + if(QObject::sender() == actionWebVapourSynthDocs) QDesktopServices::openUrl(QUrl("http://www.vapoursynth.com/doc/")); + if(QObject::sender() == actionWebWiki) QDesktopServices::openUrl(QUrl("http://mewiki.project357.com/wiki/X264_Settings")); + if(QObject::sender() == actionWebBluRay) QDesktopServices::openUrl(QUrl("http://www.x264bluray.com/")); + if(QObject::sender() == actionWebAvsWiki) QDesktopServices::openUrl(QUrl("http://avisynth.nl/index.php/Main_Page#Usage")); + if(QObject::sender() == actionWebSupport) QDesktopServices::openUrl(QUrl("http://forum.doom9.org/showthread.php?t=144140")); + if(QObject::sender() == actionWebSecret) QDesktopServices::openUrl(QUrl("http://www.youtube.com/watch_popup?v=AXIeHY-OYNI")); } /*