Added support for Visual Studio 2013 with Update-4.
This commit is contained in:
parent
c57c027aac
commit
db3b152415
@ -18,6 +18,7 @@ a:visited { color: #0000EE; }
|
|||||||
<h3>LameXP - Version History</h3><br>
|
<h3>LameXP - Version History</h3><br>
|
||||||
|
|
||||||
<a name="4.11"></a>Changes between v4.10 and v4.11 [<font color="darkred">unreleased</font>]:<br><ul>
|
<a name="4.11"></a>Changes between v4.10 and v4.11 [<font color="darkred">unreleased</font>]:<br><ul>
|
||||||
|
<li>Upgraded build environment to Microsoft Visual Studio 2013 with Update-4
|
||||||
<li>Updated MediaInfo to v0.7.71 (2014-11-09), compiled with ICL 15.0 and MSVC 12.0
|
<li>Updated MediaInfo to v0.7.71 (2014-11-09), compiled with ICL 15.0 and MSVC 12.0
|
||||||
<li>Updated SoX to v14.4.2-Git (2012-10-06), compiled with ICL 15.0 and MSVC 12.0
|
<li>Updated SoX to v14.4.2-Git (2012-10-06), compiled with ICL 15.0 and MSVC 12.0
|
||||||
<li>Updated Opus libraries to v1.1.x and Opus-Tools v0.1.9 to latest Git Master (2014-10-04)
|
<li>Updated Opus libraries to v1.1.x and Opus-Tools v0.1.9 to latest Git Master (2014-10-04)
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
#define VER_LAMEXP_MINOR_LO 1
|
#define VER_LAMEXP_MINOR_LO 1
|
||||||
#define VER_LAMEXP_TYPE Beta
|
#define VER_LAMEXP_TYPE Beta
|
||||||
#define VER_LAMEXP_PATCH 1
|
#define VER_LAMEXP_PATCH 1
|
||||||
#define VER_LAMEXP_BUILD 1582
|
#define VER_LAMEXP_BUILD 1583
|
||||||
#define VER_LAMEXP_CONFG 1558
|
#define VER_LAMEXP_CONFG 1558
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -111,6 +111,8 @@ static const unsigned int g_lamexp_toolver_coreaudio = VER_LAMEXP_TOOL_COREAUDIO
|
|||||||
static const char *g_lamexp_version_compiler = "MSVC 2013.2";
|
static const char *g_lamexp_version_compiler = "MSVC 2013.2";
|
||||||
#elif (_MSC_FULL_VER == 180030723)
|
#elif (_MSC_FULL_VER == 180030723)
|
||||||
static const char *g_lamexp_version_compiler = "MSVC 2013.3";
|
static const char *g_lamexp_version_compiler = "MSVC 2013.3";
|
||||||
|
#elif (_MSC_FULL_VER == 180031101)
|
||||||
|
static const char *g_lamexp_version_compiler = "MSVC 2013.4";
|
||||||
#else
|
#else
|
||||||
#error Compiler version is not supported yet!
|
#error Compiler version is not supported yet!
|
||||||
#endif
|
#endif
|
||||||
|
@ -323,7 +323,6 @@ static const lamexp_os_info_t lamexp_winver_lut[] =
|
|||||||
{ lamexp_winver_error, "" }
|
{ lamexp_winver_error, "" }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
//GURU MEDITATION
|
//GURU MEDITATION
|
||||||
static const char *GURU_MEDITATION = "\n\nGURU MEDITATION !!!\n\n";
|
static const char *GURU_MEDITATION = "\n\nGURU MEDITATION !!!\n\n";
|
||||||
|
|
||||||
|
@ -517,7 +517,6 @@ bool UpdateCheckThread::getUpdateInfo(const QString &url, const QString &outFile
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool UpdateCheckThread::getFile(const QString &url, const QString &outFile, unsigned int maxRedir, bool *httpOk)
|
bool UpdateCheckThread::getFile(const QString &url, const QString &outFile, unsigned int maxRedir, bool *httpOk)
|
||||||
{
|
{
|
||||||
QFileInfo output(outFile);
|
QFileInfo output(outFile);
|
||||||
|
Loading…
Reference in New Issue
Block a user