Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
gregrecco67 committed Jul 10, 2024
1 parent c6cf3e8 commit 42db705
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ foreach(module_name IN ITEMS gin gin_dsp gin_graphics gin_gui gin_plugin gin_sim
set_property (TARGET "${module_name}" APPEND PROPERTY LABELS Gin)
endforeach()

set(VersionString 1.1.1)
set(VersionString 1.1.2)

juce_add_plugin (${PROJECT_NAME}
PRODUCT_NAME "Audible Planets"
Expand Down
11 changes: 6 additions & 5 deletions Source/Synth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,15 @@ std::vector<float> APSynth::getMSEG4Phases() {
void APSynth::handleMidiEvent(const juce::MidiMessage& m) {
MPESynthesiser::handleMidiEvent(m);

if (m.isNoteOn()) {
proc.newRand();
}

if (m.isSysEx()) {
MTS_ParseMIDIDataU(proc.client, m.getSysExData(), m.getSysExDataSize());
if (MTS_HasMaster(proc.client))
MTS_ParseMIDIDataU(proc.client, m.getSysExData(), m.getSysExDataSize());
}

if (m.isNoteOn()) {
proc.newRand();
}

if (m.isController()) {
if (m.getControllerNumber() == 1) {
proc.modMatrix.setMonoValue(proc.modSrcModwheel, float(m.getControllerValue()) / 127.0f);
Expand Down

0 comments on commit 42db705

Please sign in to comment.