Skip to content

Commit

Permalink
Advance version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Murivan committed Sep 2, 2024
1 parent be829c8 commit 9af36b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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
2 changes: 1 addition & 1 deletion src/main/java/arpeggiatorum/Arpeggiatorum.java
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public static void SaveNClose(ArpeggiatorumGUI arpeggiatorumGUI) {
prop.setProperty("MIDI Input", String.valueOf(ArpeggiatorumGUI.controllerHandle.comboMIDIIn.getValue().toString()));
prop.setProperty("MIDI Output", String.valueOf(ArpeggiatorumGUI.controllerHandle.comboMIDIOut.getValue().toString()));
prop.setProperty("Audio Input", ArpeggiatorumGUI.controllerHandle.comboAudioIn.getValue());

// Save properties to project root folder
prop.store(output, null);

Expand Down

0 comments on commit 9af36b8

Please sign in to comment.