Skip to content

Commit

Permalink
Update Processing to version 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
codingjoe committed Jan 5, 2019
1 parent f6164f9 commit 4d38734
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION ?= $(shell read -p "Enter version number: " version; echo $$version)
BASE_DIR := $(shell pwd)
BUILD_DIR := $(BASE_DIR)/builds
BUILD_DIR := $(BASE_DIR)/MusicBeam
SOURCE_DIR := $(BASE_DIR)/MusicBeam

ARCHS = macosx windows32 windows64 linux32 linux64
Expand Down Expand Up @@ -34,4 +34,4 @@ release: builds

clean:
rm -rf $(SOURCE_DIR)/application.*
rm -rf $(BUILD_DIR)
rm $(ZIPS)
4 changes: 2 additions & 2 deletions MusicBeam/MusicBeam.pde
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import controlP5.*;
import ddf.minim.*;
import ddf.minim.analysis.*;

String version = "2.4.0";
String version = "2.4.1";

public Boolean debugMode = false;

Expand Down Expand Up @@ -356,4 +356,4 @@ private void initAudioInput()

bdFreq = new BeatDetect(in.bufferSize(), in.sampleRate());
bdSound = new BeatDetect();
}
}

0 comments on commit 4d38734

Please sign in to comment.