diff --git a/HISTORY.txt b/HISTORY.txt index 17ea755..9b4f5e0 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -2,7 +2,13 @@ Simple x264/x265 Launcher version history ----------------------------------------- +Version 2.51 [2015-04-26] +* Fixe regression: Config files were stored in a wrong directory +* Updated x265 to version 1.6+239 + Version 2.50 [2015-04-17] +* Simple x264/x265 Launcher is based on the MUtilities library +* Updated Qt runtime libraries to v4.8.7 snapshot-5 (2015-03-25) * Overhauled startup code + show spinner while initializing * Much improved Avisynth and VapourSynth detection code * Added option to prefer 64-Bit VapourSynth, when available diff --git a/src/main.cpp b/src/main.cpp index 59790c4..bfe1357 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -144,7 +144,7 @@ static int simple_x264_main(int &argc, char **argv) qDebug(" Number of CPU's : %d\n", cpuFeatures.count); //Initialize Qt - QScopedPointer application(MUtils::Startup::create_qt(argc, argv, QLatin1String("LameXP - Audio Encoder Front-End"))); + QScopedPointer application(MUtils::Startup::create_qt(argc, argv, QLatin1String("Simple x264 Launcher"))); if(application.isNull()) { return EXIT_FAILURE; diff --git a/src/version.h b/src/version.h index 6a1b7f1..0118de6 100644 --- a/src/version.h +++ b/src/version.h @@ -25,8 +25,8 @@ #define VER_X264_MAJOR 2 #define VER_X264_MINOR 5 -#define VER_X264_PATCH 0 -#define VER_X264_BUILD 948 +#define VER_X264_PATCH 1 +#define VER_X264_BUILD 950 #define VER_X264_PORTABLE_EDITION (0)