From: <rel...@us...> - 2010-05-23 21:49:10
|
Revision: 607 http://modplug.svn.sourceforge.net/modplug/?rev=607&view=rev Author: relabsoluness Date: 2010-05-23 21:49:03 +0000 (Sun, 23 May 2010) Log Message: ----------- [Mod] Version: Changed to 1.18.02.00, increased mptm file version. [Mod] General: Removed changes-dialog since there are separate release notes. Modified Paths: -------------- trunk/OpenMPT/mptrack/Mptrack.cpp trunk/OpenMPT/mptrack/version.h trunk/OpenMPT/packageTemplate/History.txt trunk/OpenMPT/soundlib/Load_it.cpp Modified: trunk/OpenMPT/mptrack/Mptrack.cpp =================================================================== --- trunk/OpenMPT/mptrack/Mptrack.cpp 2010-05-23 15:32:59 UTC (rev 606) +++ trunk/OpenMPT/mptrack/Mptrack.cpp 2010-05-23 21:49:03 UTC (rev 607) @@ -236,28 +236,6 @@ static void ShowChangesDialog() //----------------------------- { - const char* const firstOpenMessage = "OpenMPT build " MPT_VERSION_STR ".\n\n" - "Some changes since version 1.17.02.54:\n\n" - "[New] Pattern tab: New paste modes: overflow, push forward and flood.\n" - "[Mod] Pattern tab: Keyboard split is now accessible from key shortcut or menu.\n" - "[Imp] Pattern tab: Numerous improvements including better effect descriptions in note properties.\n" - "[New] Sequence editor: Can now handle order selections including delete/copy/cut/paste functionality.\n" - "[New] Sequence editor: Can render selected patterns to wave directly from orderlist.\n" - "[New] Envelope editor: Numerous improvements including ability to insert and remove points easily and editing envelopes with the keyboard.\n" - "[New] Sample tab: sample undo, sample draw, resize sample, DC offset removal, batch export, better loop point handling when deleting selections. Play sample from given position with Ctrl + left mouse button.\n" - "[New] MPTM: New parameter controls for controlling plug params from pattern.\n" - "[New] MPTM: Can have envelope points up to 240 and multiple sequences.\n" - "[New] MIDI mapping: Editing a plug param in its editor while holding shift key will now open MIDI mapping dialog.\n" - "[New] MIDI mapping: Can now record MIDI mapping changes to pattern.\n" - "[Imp] MOD/S3M/XM/IT: Numerous improvements to load, save and playback compatibility.\n" - "[New] Input: Can import J2B (RIFF AM / RIFF AMFF), PSM16, IMF, GDM and SCL files. Improved PSM and ULT import.\n" - "[New] Setup: New default directories: plugins and plugin presets, sharable colour schemes\n" - "[New] Cleanup: New option compo cleanup, rearrange samples is back, can merge sequences.\n" - "[Mod] Misc: Program settings are now by default stored in %APPDATA%\\OpenMPT\n" - "\n" - "and many more. See history.txt for more details."; - - CMainFrame::GetMainFrame()->MessageBox(firstOpenMessage, "OpenMPT " MPT_VERSION_STR, MB_ICONINFORMATION); } Modified: trunk/OpenMPT/mptrack/version.h =================================================================== --- trunk/OpenMPT/mptrack/version.h 2010-05-23 15:32:59 UTC (rev 606) +++ trunk/OpenMPT/mptrack/version.h 2010-05-23 21:49:03 UTC (rev 607) @@ -14,7 +14,7 @@ //Version definitions. The only thing that needs to be changed when changing version number. #define VER_MAJORMAJOR 1 #define VER_MAJOR 18 -#define VER_MINOR 01 +#define VER_MINOR 02 #define VER_MINORMINOR 00 //Creates version number from version parts that appears in version string. Modified: trunk/OpenMPT/packageTemplate/History.txt =================================================================== --- trunk/OpenMPT/packageTemplate/History.txt 2010-05-23 15:32:59 UTC (rev 606) +++ trunk/OpenMPT/packageTemplate/History.txt 2010-05-23 21:49:03 UTC (rev 607) @@ -9,9 +9,10 @@ [Var]: other (tx XYZ): thanks to XYZ for telling us about the bug -Changes from revisions [476, 606] ---------------------------------- +v1.18.02.00 (May 2010) +---------------------- + General tab [Imp] <Jojo> Disabled tempo slider for MOD files (it was just confusing) [Imp] <Jojo> Disabled global volume slider for MOD files, instead enabled the sample pre-amp slider (so it is also possible to make output louder) Modified: trunk/OpenMPT/soundlib/Load_it.cpp =================================================================== --- trunk/OpenMPT/soundlib/Load_it.cpp 2010-05-23 15:32:59 UTC (rev 606) +++ trunk/OpenMPT/soundlib/Load_it.cpp 2010-05-23 21:49:03 UTC (rev 607) @@ -31,13 +31,14 @@ #define str_LoadingIncompatibleVersion TEXT("The file informed that it is incompatible with this version of OpenMPT. Loading was terminated.") #define str_LoadingMoreRecentVersion TEXT("The loaded file was made with a more recent OpenMPT version and this version may not be able to load all the features or play the file correctly.") -const uint16 verMptFileVer = 0x88F; +const uint16 verMptFileVer = 0x890; const uint16 verMptFileVerLoadLimit = 0x1000; // If cwtv-field is greater or equal to this value, // the MPTM file will not be loaded. /* MPTM version history for cwtv-field in IT header: -0x88E(1.17.02.50) -> 0x88F(1.18.01.00): +0x88F(1.18.01.00) -> 0x890(1.18.02.00): Removed volume command velocity :xy, added delay-cut command :xy. +0x88E(1.17.02.50) -> 0x88F(1.18.01.00): Numerous changes 0x88D(1.17.02.49) -> 0x88E(1.17.02.50): Changed ID to that of IT and undone the orderlist change done in 0x88A->0x88B. Now extended orderlist is saved as extension. 0x88C(1.17.02.48) -> 0x88D(1.17.02.49): Some tuning related changes - that part fails to read on older versions. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |