Updated LAME binary to v3.99 Beta-0 (2011-04-16), compiled with ICL 12.0.3. Also updated LAME switches accordingly.
This commit is contained in:
parent
7a0ef2a464
commit
60ac414c30
@ -20,7 +20,7 @@ a:visited { color: #0000EE; }
|
|||||||
<li>Upgraded build environment to Microsoft Visual Studio 2010
|
<li>Upgraded build environment to Microsoft Visual Studio 2010
|
||||||
<li>Dropping support for Windows 2000 and for Windows XP RTM/SP1, Windows XP needs SP2 or SP3 now!
|
<li>Dropping support for Windows 2000 and for Windows XP RTM/SP1, Windows XP needs SP2 or SP3 now!
|
||||||
<li>Added a new translation: Korean
|
<li>Added a new translation: Korean
|
||||||
<li>Updated LAME encoder to v3.99.0.16 (2011-04-09), compiled with ICL 12.0.3 and MSVC 10.0
|
<li>Updated LAME encoder to v3.99.1.0 (2011-04-15), compiled with ICL 12.0.3 and MSVC 10.0
|
||||||
<li>Updated MediaInfo to v0.7.43 (2011-04-10), compiled with ICL 12.0.3 and MSVC 10.0
|
<li>Updated MediaInfo to v0.7.43 (2011-04-10), compiled with ICL 12.0.3 and MSVC 10.0
|
||||||
<li>Updated language files (big thank-you to all contributors !!!)
|
<li>Updated language files (big thank-you to all contributors !!!)
|
||||||
</ul><br>
|
</ul><br>
|
||||||
|
Binary file not shown.
@ -29,8 +29,8 @@
|
|||||||
#define VER_LAMEXP_MINOR_HI 0
|
#define VER_LAMEXP_MINOR_HI 0
|
||||||
#define VER_LAMEXP_MINOR_LO 2
|
#define VER_LAMEXP_MINOR_LO 2
|
||||||
#define VER_LAMEXP_TYPE Alpha
|
#define VER_LAMEXP_TYPE Alpha
|
||||||
#define VER_LAMEXP_PATCH 3
|
#define VER_LAMEXP_PATCH 4
|
||||||
#define VER_LAMEXP_BUILD 442
|
#define VER_LAMEXP_BUILD 444
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// Tools versions
|
// Tools versions
|
||||||
|
@ -287,7 +287,7 @@ void AboutDialog::showMoreAbout(void)
|
|||||||
moreAboutText += makeToolText
|
moreAboutText += makeToolText
|
||||||
(
|
(
|
||||||
tr("LAME − OpenSource mp3 Encoder"),
|
tr("LAME − OpenSource mp3 Encoder"),
|
||||||
"lame.exe", "v?.??, Alpha-??",
|
"lame.exe", "v?.??, Beta-?",
|
||||||
tr("Released under the terms of the GNU Lesser General Public License."),
|
tr("Released under the terms of the GNU Lesser General Public License."),
|
||||||
"http://lame.sourceforge.net/"
|
"http://lame.sourceforge.net/"
|
||||||
);
|
);
|
||||||
|
@ -229,7 +229,17 @@ const char *lamexp_support_url(void) { return g_lamexp_support_url; }
|
|||||||
*/
|
*/
|
||||||
bool lamexp_version_demo(void)
|
bool lamexp_version_demo(void)
|
||||||
{
|
{
|
||||||
return LAMEXP_DEBUG || !(strstr(g_lamexp_version.ver_release_name, "Final") || strstr(g_lamexp_version.ver_release_name, "Hotfix"));
|
char buffer[128];
|
||||||
|
bool releaseVersion = false;
|
||||||
|
if(!strcpy_s(buffer, 128, g_lamexp_version.ver_release_name))
|
||||||
|
{
|
||||||
|
char *context, *prefix = strtok_s(buffer, "-,; ", &context);
|
||||||
|
if(prefix)
|
||||||
|
{
|
||||||
|
releaseVersion = (!_stricmp(prefix, "Final")) || (!_stricmp(prefix, "Hotfix"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return LAMEXP_DEBUG || (!releaseVersion);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -183,13 +183,16 @@ int lamexp_main(int argc, char* argv[])
|
|||||||
|
|
||||||
int main(int argc, char* argv[])
|
int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
#ifdef _DEBUG
|
if(LAMEXP_DEBUG)
|
||||||
|
{
|
||||||
int iResult = -1;
|
int iResult = -1;
|
||||||
qInstallMsgHandler(lamexp_message_handler);
|
qInstallMsgHandler(lamexp_message_handler);
|
||||||
LAMEXP_MEMORY_CHECK(iResult = lamexp_main(argc, argv));
|
LAMEXP_MEMORY_CHECK(iResult = lamexp_main(argc, argv));
|
||||||
lamexp_finalization();
|
lamexp_finalization();
|
||||||
return iResult;
|
return iResult;
|
||||||
#else
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
int iResult = -1;
|
int iResult = -1;
|
||||||
@ -222,7 +225,7 @@ int main(int argc, char* argv[])
|
|||||||
FatalAppExit(0, L"Unhandeled exception error, application will exit!");
|
FatalAppExit(0, L"Unhandeled exception error, application will exit!");
|
||||||
TerminateProcess(GetCurrentProcess(), -1);
|
TerminateProcess(GetCurrentProcess(), -1);
|
||||||
}
|
}
|
||||||
#endif
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C"
|
extern "C"
|
||||||
|
@ -58,7 +58,7 @@ g_lamexp_tools[] =
|
|||||||
{"d33cd86f04bd4067e244d2804466583c7b90a4e2", CPU_TYPE_ALL, "flac.exe", 121},
|
{"d33cd86f04bd4067e244d2804466583c7b90a4e2", CPU_TYPE_ALL, "flac.exe", 121},
|
||||||
{"9328a50e89b54ec065637496d9681a7e3eebf915", CPU_TYPE_ALL, "gpgv.exe", 1411},
|
{"9328a50e89b54ec065637496d9681a7e3eebf915", CPU_TYPE_ALL, "gpgv.exe", 1411},
|
||||||
{"d837bf6ee4dab557d8b02d46c75a24e58980fffa", CPU_TYPE_ALL, "gpgv.gpg", UINT_MAX},
|
{"d837bf6ee4dab557d8b02d46c75a24e58980fffa", CPU_TYPE_ALL, "gpgv.gpg", UINT_MAX},
|
||||||
{"b8800842893e2900eea7cda5c2556661333bc5db", CPU_TYPE_ALL, "lame.exe", 39916},
|
{"d5b3b80220d85a9fd2f486e37c1fb6511f3c2d72", CPU_TYPE_ALL, "lame.exe", 3990},
|
||||||
{"a4e929cfaa42fa2e61a3d0c6434c77a06d45aef3", CPU_TYPE_ALL, "mac.exe", 406},
|
{"a4e929cfaa42fa2e61a3d0c6434c77a06d45aef3", CPU_TYPE_ALL, "mac.exe", 406},
|
||||||
{"9ee3074dc3232c61c0ffd6ae6755f65974695c51", CPU_TYPE_GEN, "mediainfo.i386.exe", 743},
|
{"9ee3074dc3232c61c0ffd6ae6755f65974695c51", CPU_TYPE_GEN, "mediainfo.i386.exe", 743},
|
||||||
{"3691da33a4efd7625d1bd01cbf5ce6ffd8a12d19", CPU_TYPE_X64, "mediainfo.x64.exe", 743},
|
{"3691da33a4efd7625d1bd01cbf5ce6ffd8a12d19", CPU_TYPE_X64, "mediainfo.x64.exe", 743},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user