Skip to content

Commit

Permalink
Merge pull request #4 from axelberndt/develop
Browse files Browse the repository at this point in the history
Version 1.0.2
  • Loading branch information
Murivan authored Sep 2, 2024
2 parents 0e4266a + 9af36b8 commit 0f28911
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ javafx {

application {
group = 'com.github.axelberndt'
version = '1.0.1'
version = '1.0.2'
mainClass.set("arpeggiatorum.Launcher")
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/arpeggiatorum/Arpeggiator.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @author Axel Berndt
*/
public class Arpeggiator implements Receiver, Transmitter {
public static final String version = "1.0.1";
public static final String version = "1.0.2";
public static final int ARPEGGIO_CHANNEL_PRESET = 1;
public static final int HELD_NOTES_CHANNEL_PRESET = 2;
public static final int BASS_CHANNEL_PRESET = 0;
Expand Down
5 changes: 5 additions & 0 deletions src/main/java/arpeggiatorum/Arpeggiatorum.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import arpeggiatorum.gui.LogGUIController;
import arpeggiatorum.microphoneControl.*;
import arpeggiatorum.supplementary.EventMaker;
import arpeggiatorum.supplementary.TonalEnrichmentChooserItem;
import arpeggiatorum.supplementary.Tools;
import com.jsyn.JSyn;
import com.jsyn.Synthesizer;
Expand All @@ -24,6 +25,7 @@
import java.time.Duration;
import java.time.Instant;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Objects;
import java.util.Properties;
import java.util.logging.Level;
Expand Down Expand Up @@ -74,6 +76,7 @@ public class Arpeggiatorum implements Receiver {
public static Stage stagePerformance;
private static int instancePerformance = 0;


public Arpeggiatorum() {
super();
synchronized (Arpeggiatorum.class) {
Expand Down Expand Up @@ -652,6 +655,8 @@ public void Upload() {
Integer.parseInt(ArpeggiatorumGUI.controllerHandle.e15.getText()),
Integer.parseInt(ArpeggiatorumGUI.controllerHandle.e16.getText()),
};

ArpeggiatorumGUI.controllerHandle.comboEnrichment.getItems().getLast().setValue(intervals);
this.arpeggiator.setTonalEnrichment(intervals);
}

Expand Down

0 comments on commit 0f28911

Please sign in to comment.