• R/O
  • HTTP
  • SSH
  • HTTPS

x264-launcher: Commit

Simple x264 Launcher development repository


Commit MetaInfo

Revisióndc1630485e5ccb49804ee03f13c94e15fc11c3d9 (tree)
Tiempo2015-04-27 00:47:56
Autorlordmulder <mulder2@gmx....>
Commiterlordmulder

Log Message

Fixed a stupid copy&paste error, which caused the configuration files to be stored in the wrong directory (regression in v2.50).

Cambiar Resumen

Diferencia incremental

--- a/HISTORY.txt
+++ b/HISTORY.txt
@@ -2,7 +2,13 @@
22 Simple x264/x265 Launcher version history
33 -----------------------------------------
44
5+Version 2.51 [2015-04-26]
6+* Fixe regression: Config files were stored in a wrong directory
7+* Updated x265 to version 1.6+239
8+
59 Version 2.50 [2015-04-17]
10+* Simple x264/x265 Launcher is based on the MUtilities library
11+* Updated Qt runtime libraries to v4.8.7 snapshot-5 (2015-03-25)
612 * Overhauled startup code + show spinner while initializing
713 * Much improved Avisynth and VapourSynth detection code
814 * Added option to prefer 64-Bit VapourSynth, when available
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -144,7 +144,7 @@ static int simple_x264_main(int &argc, char **argv)
144144 qDebug(" Number of CPU's : %d\n", cpuFeatures.count);
145145
146146 //Initialize Qt
147- QScopedPointer<QApplication> application(MUtils::Startup::create_qt(argc, argv, QLatin1String("LameXP - Audio Encoder Front-End")));
147+ QScopedPointer<QApplication> application(MUtils::Startup::create_qt(argc, argv, QLatin1String("Simple x264 Launcher")));
148148 if(application.isNull())
149149 {
150150 return EXIT_FAILURE;
--- a/src/version.h
+++ b/src/version.h
@@ -25,8 +25,8 @@
2525
2626 #define VER_X264_MAJOR 2
2727 #define VER_X264_MINOR 5
28-#define VER_X264_PATCH 0
29-#define VER_X264_BUILD 948
28+#define VER_X264_PATCH 1
29+#define VER_X264_BUILD 950
3030
3131 #define VER_X264_PORTABLE_EDITION (0)
3232
Show on old repository browser