From: <sag...@us...> - 2013-06-25 22:24:25
|
Revision: 2411 http://sourceforge.net/p/modplug/code/2411 Author: saga-games Date: 2013-06-25 22:24:19 +0000 (Tue, 25 Jun 2013) Log Message: ----------- [Fix] Fixed rare crash when switching between previewed files in treeview. [Mod] Added PMA and LZS to list of compressed file extensions (lhasa supports these variants of lha) [Mod] OpenMPT: Version is now 1.22.03.07 Modified Paths: -------------- trunk/OpenMPT/common/versionNumber.h trunk/OpenMPT/mptrack/MainFrm.cpp trunk/OpenMPT/mptrack/Mptrack.cpp Modified: trunk/OpenMPT/common/versionNumber.h =================================================================== --- trunk/OpenMPT/common/versionNumber.h 2013-06-25 20:49:41 UTC (rev 2410) +++ trunk/OpenMPT/common/versionNumber.h 2013-06-25 22:24:19 UTC (rev 2411) @@ -17,7 +17,7 @@ #define VER_MAJORMAJOR 1 #define VER_MAJOR 22 #define VER_MINOR 03 -#define VER_MINORMINOR 06 +#define VER_MINORMINOR 07 //Version string. For example "1.17.02.28" #define MPT_VERSION_STR VER_STRINGIZE(VER_MAJORMAJOR)"."VER_STRINGIZE(VER_MAJOR)"."VER_STRINGIZE(VER_MINOR)"."VER_STRINGIZE(VER_MINORMINOR) Modified: trunk/OpenMPT/mptrack/MainFrm.cpp =================================================================== --- trunk/OpenMPT/mptrack/MainFrm.cpp 2013-06-25 20:49:41 UTC (rev 2410) +++ trunk/OpenMPT/mptrack/MainFrm.cpp 2013-06-25 22:24:19 UTC (rev 2411) @@ -1576,6 +1576,7 @@ // so it's safe to replace the sample / instrument now. cs.Leave(); ok = m_WaveFile.ReadInstrumentFromFile(1, p, dwLen); + cs.Enter(); if(!ok) { // Try reading as sample if reading as instrument fails @@ -1930,8 +1931,6 @@ } -// -> CODE#0002 -// -> DESC="list box to choose VST plugin presets (programs)" void CMainFrame::OnPluginManager() //-------------------------------- { @@ -1965,7 +1964,6 @@ } #endif // NO_VST } -// -! NEW_FEATURE#0002 void CMainFrame::OnChannelManager() Modified: trunk/OpenMPT/mptrack/Mptrack.cpp =================================================================== --- trunk/OpenMPT/mptrack/Mptrack.cpp 2013-06-25 20:49:41 UTC (rev 2410) +++ trunk/OpenMPT/mptrack/Mptrack.cpp 2013-06-25 22:24:19 UTC (rev 2411) @@ -1140,7 +1140,7 @@ #ifndef NO_MO3 ";*.mo3" #endif - ")|*.mdz;*.s3z;*.xmz;*.itz;*.mdr;*.zip;*.rar;*.lha;*.gz" + ")|*.mdz;*.s3z;*.xmz;*.itz;*.mdr;*.zip;*.rar;*.lha;*.pma;*.lzs;*.gz" #ifndef NO_MO3 ";*.mo3" #endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |