From: <sag...@us...> - 2015-06-06 18:34:44
|
Revision: 5259 http://sourceforge.net/p/modplug/code/5259 Author: saga-games Date: 2015-06-06 18:34:38 +0000 (Sat, 06 Jun 2015) Log Message: ----------- [Mod] Song Cleanup: "Reset all variables" now also clears artist name. [Mod] Default keybindinds: New default shortcut Ctrl+Shift+C for Copy Orders [Doc] Steinberg slightly changed their developer page path again (old URL still works but redirects) Modified Paths: -------------- trunk/OpenMPT/README.md trunk/OpenMPT/mptrack/CleanupSong.cpp trunk/OpenMPT/mptrack/res/defaultKeybindings.mkb Modified: trunk/OpenMPT/README.md =================================================================== --- trunk/OpenMPT/README.md 2015-06-06 15:40:21 UTC (rev 5258) +++ trunk/OpenMPT/README.md 2015-06-06 18:34:38 UTC (rev 5259) @@ -61,7 +61,7 @@ folder. Please visit - [steinberg.net](http://www.steinberg.net/en/company/developer.html) to + [steinberg.net](http://www.steinberg.net/en/company/developers.html) to download the SDK. - VST: @@ -77,7 +77,7 @@ have the old VST 2.4 SDK laying around, this should also work fine. Please visit - [steinberg.net](http://www.steinberg.net/en/company/developer.html) to + [steinberg.net](http://www.steinberg.net/en/company/developers.html) to download the SDK. Alternatively, both, the ASIO and the VST SDK, can be downloaded Modified: trunk/OpenMPT/mptrack/CleanupSong.cpp =================================================================== --- trunk/OpenMPT/mptrack/CleanupSong.cpp 2015-06-06 15:40:21 UTC (rev 5258) +++ trunk/OpenMPT/mptrack/CleanupSong.cpp 2015-06-06 18:34:38 UTC (rev 5259) @@ -813,6 +813,7 @@ // convert to IT... modDoc.ChangeModType(MOD_TYPE_IT); sndFile.SetMixLevels(mixLevelsCompatible); + sndFile.songArtist.clear(); sndFile.m_nTempoMode = tempoModeClassic; sndFile.m_SongFlags = SONG_LINEARSLIDES; sndFile.m_MidiCfg.Reset(); Modified: trunk/OpenMPT/mptrack/res/defaultKeybindings.mkb =================================================================== --- trunk/OpenMPT/mptrack/res/defaultKeybindings.mkb 2015-06-06 15:40:21 UTC (rev 5258) +++ trunk/OpenMPT/mptrack/res/defaultKeybindings.mkb 2015-06-06 18:34:38 UTC (rev 5259) @@ -373,6 +373,7 @@ //----( Orderlist (19) )------------ 19:1802:0:46:5 //Delete Order: DELETE (KeyDown|KeyHold) 19:1803:0:45:5 //Insert Order: INSERT (KeyDown|KeyHold) +19:1950:3:67:1 //Copy Orders: Shift+Ctrl+C (KeyDown) 19:1804:0:13:5 //Edit Pattern: ENTER (KeyDown|KeyHold) 19:1805:0:9:5 //Switch to pattern editor: TAB (KeyDown|KeyHold) 19:1794:0:37:5 //Previous Order: LEFT (KeyDown|KeyHold) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |