Skip to content

Commit 4d38734

Browse files
committed
Update Processing to version 3.4
1 parent f6164f9 commit 4d38734

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION ?= $(shell read -p "Enter version number: " version; echo $$version)
22
BASE_DIR := $(shell pwd)
3-
BUILD_DIR := $(BASE_DIR)/builds
3+
BUILD_DIR := $(BASE_DIR)/MusicBeam
44
SOURCE_DIR := $(BASE_DIR)/MusicBeam
55

66
ARCHS = macosx windows32 windows64 linux32 linux64
@@ -34,4 +34,4 @@ release: builds
3434

3535
clean:
3636
rm -rf $(SOURCE_DIR)/application.*
37-
rm -rf $(BUILD_DIR)
37+
rm $(ZIPS)

MusicBeam/MusicBeam.pde

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import controlP5.*;
1010
import ddf.minim.*;
1111
import ddf.minim.analysis.*;
1212

13-
String version = "2.4.0";
13+
String version = "2.4.1";
1414

1515
public Boolean debugMode = false;
1616

@@ -356,4 +356,4 @@ private void initAudioInput()
356356

357357
bdFreq = new BeatDetect(in.bufferSize(), in.sampleRate());
358358
bdSound = new BeatDetect();
359-
}
359+
}

0 commit comments

Comments
 (0)