diff --git a/Changelog b/Changelog index 2b57c7e00..4eddb80be 100644 --- a/Changelog +++ b/Changelog @@ -4,6 +4,7 @@ yoshimi 1.5.1.1 * Improved handling of Vectors in state load * Loading large Midi-learn lists was overloading Gui so reduced Gui update rate. +* Misc image updates. 2017-4-18 Will * Corrected AddSynth sound/noise display. diff --git a/Miscellany/Images/AddSynth.png b/Miscellany/Images/AddSynth.png index f4e107794..d2e90d631 100644 Binary files a/Miscellany/Images/AddSynth.png and b/Miscellany/Images/AddSynth.png differ diff --git a/Miscellany/Images/AddSynthVoiceList.png b/Miscellany/Images/AddSynthVoiceList.png new file mode 100644 index 000000000..d594b2aa8 Binary files /dev/null and b/Miscellany/Images/AddSynthVoiceList.png differ diff --git a/Miscellany/Images/AddVoice.png b/Miscellany/Images/AddVoice.png index a63dc0cc4..4411532f0 100644 Binary files a/Miscellany/Images/AddVoice.png and b/Miscellany/Images/AddVoice.png differ diff --git a/Miscellany/Images/Bank.png b/Miscellany/Images/Bank.png index 3249f48a9..2fef5fb91 100644 Binary files a/Miscellany/Images/Bank.png and b/Miscellany/Images/Bank.png differ diff --git a/Miscellany/Images/Collage.png b/Miscellany/Images/Collage.png deleted file mode 100644 index 530d4c56a..000000000 Binary files a/Miscellany/Images/Collage.png and /dev/null differ diff --git a/Miscellany/Images/Front.png b/Miscellany/Images/Front.png index 43664d9a7..095775950 100644 Binary files a/Miscellany/Images/Front.png and b/Miscellany/Images/Front.png differ diff --git a/Miscellany/Images/Instrument.png b/Miscellany/Images/Instrument.png index fbcd958c5..22cc0d19a 100644 Binary files a/Miscellany/Images/Instrument.png and b/Miscellany/Images/Instrument.png differ diff --git a/Miscellany/Images/Keyboard.png b/Miscellany/Images/Keyboard.png index 8b304b312..3269e79b2 100644 Binary files a/Miscellany/Images/Keyboard.png and b/Miscellany/Images/Keyboard.png differ diff --git a/Miscellany/Images/Kit.png b/Miscellany/Images/Kit.png index 1d30f5721..9d29e5fad 100644 Binary files a/Miscellany/Images/Kit.png and b/Miscellany/Images/Kit.png differ diff --git a/Miscellany/Images/MidiLearn.png b/Miscellany/Images/MidiLearn.png new file mode 100644 index 000000000..e5c136a9d Binary files /dev/null and b/Miscellany/Images/MidiLearn.png differ diff --git a/Miscellany/Images/PadSynth.png b/Miscellany/Images/PadSynth.png index 025d50d60..f31186716 100644 Binary files a/Miscellany/Images/PadSynth.png and b/Miscellany/Images/PadSynth.png differ diff --git a/Miscellany/Images/Panel.png b/Miscellany/Images/Panel.png index b951138f9..760ca3a4e 100644 Binary files a/Miscellany/Images/Panel.png and b/Miscellany/Images/Panel.png differ diff --git a/Miscellany/Images/SubSynth.png b/Miscellany/Images/SubSynth.png index 65980aad7..80d7a8312 100644 Binary files a/Miscellany/Images/SubSynth.png and b/Miscellany/Images/SubSynth.png differ diff --git a/Miscellany/Images/Vectors.png b/Miscellany/Images/Vectors.png new file mode 100644 index 000000000..80068aed3 Binary files /dev/null and b/Miscellany/Images/Vectors.png differ diff --git a/src/Misc/ConfBuild.cpp b/src/Misc/ConfBuild.cpp index d05b5758d..94f5adb1a 100644 --- a/src/Misc/ConfBuild.cpp +++ b/src/Misc/ConfBuild.cpp @@ -3,4 +3,4 @@ */ -#define BUILD_NUMBER 1014 +#define BUILD_NUMBER 1015 diff --git a/src/Misc/Config.cpp b/src/Misc/Config.cpp index bc50e1af7..6f9205be1 100644 --- a/src/Misc/Config.cpp +++ b/src/Misc/Config.cpp @@ -737,18 +737,18 @@ bool Config::restoreSessionData(string sessionfile, bool startup) { ok = extractConfigData(xml); // this still needs improving if (ok) - { + { // mark as soon as anything changes + synth->getRuntime().stateChanged = true; for (int npart = 0; npart < NUM_MIDI_PARTS; ++ npart) { - //synth->part[npart]->defaults(); + synth->part[npart]->defaults(); synth->part[npart]->Prcvchn = npart % NUM_MIDI_CHANNELS; } ok = synth->getfromXML(xml); if (ok) { - xml->endbranch(); + xml->endbranch(); // we shouldn't need this here synth->setAllPartMaps(); - synth->getRuntime().stateChanged = true; } bool oklearn = synth->midilearn.extractMidiListData(true, xml); if (oklearn)