Added support for Visual Studio 2013 with Update-4.

This commit is contained in:
LoRd_MuldeR 2014-11-19 02:06:42 +01:00
parent c57c027aac
commit db3b152415
5 changed files with 4 additions and 3 deletions

View File

@ -18,6 +18,7 @@ a:visited { color: #0000EE; }
<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>
<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 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)

View File

@ -35,7 +35,7 @@
#define VER_LAMEXP_MINOR_LO 1
#define VER_LAMEXP_TYPE Beta
#define VER_LAMEXP_PATCH 1
#define VER_LAMEXP_BUILD 1582
#define VER_LAMEXP_BUILD 1583
#define VER_LAMEXP_CONFG 1558
///////////////////////////////////////////////////////////////////////////////

View File

@ -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";
#elif (_MSC_FULL_VER == 180030723)
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
#error Compiler version is not supported yet!
#endif

View File

@ -323,7 +323,6 @@ static const lamexp_os_info_t lamexp_winver_lut[] =
{ lamexp_winver_error, "" }
};
//GURU MEDITATION
static const char *GURU_MEDITATION = "\n\nGURU MEDITATION !!!\n\n";

View File

@ -517,7 +517,6 @@ bool UpdateCheckThread::getUpdateInfo(const QString &url, const QString &outFile
return true;
}
bool UpdateCheckThread::getFile(const QString &url, const QString &outFile, unsigned int maxRedir, bool *httpOk)
{
QFileInfo output(outFile);