Fixed a stupid copy&paste error, which caused the configuration files to be stored in the wrong directory (regression in v2.50).
This commit is contained in:
parent
8aa4768004
commit
dc1630485e
@ -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
|
||||
|
@ -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<QApplication> application(MUtils::Startup::create_qt(argc, argv, QLatin1String("LameXP - Audio Encoder Front-End")));
|
||||
QScopedPointer<QApplication> application(MUtils::Startup::create_qt(argc, argv, QLatin1String("Simple x264 Launcher")));
|
||||
if(application.isNull())
|
||||
{
|
||||
return EXIT_FAILURE;
|
||||
|
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user