Skip to content

Commit 1e63b89

Browse files
committed
Merge branch 'master' of [email protected]:mhroth/jvsthost
Conflicts: JVstHost.jar build.properties src/com/synthbot/minihost/GuiMiniHost.java src/com/synthbot/minihost/PluginStringGui.java src/com/synthbot/minihost/PluginStringGuiListener.java src/com/synthbot/minihost/RandomMiniHost.java
2 parents c04d36e + 38d4e38 commit 1e63b89

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

build.properties

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
jar.name=JVstHost.jar
2+
<<<<<<< HEAD:build.properties
23
jar.main-class=com.synthbot.minihost.RandomMiniHost
34
#jar.main-class=com.synthbot.minihost.GuiMiniHost
5+
=======
6+
#jar.main-class=com.synthbot.minihost.RandomMiniHost
7+
jar.main-class=com.synthbot.minihost.GuiMiniHost
8+
>>>>>>> 38d4e38f121fc5dfbecfaa62bf906c7c7ca8072d:build.properties
49
jar.version=0.1
510
args=/home/matthew/Documents/Research/TestVsts/jvstwrapper-0.9g.so
611
#args=./mdaDX10.so

jvsthost.dll

0 Bytes
Binary file not shown.

src/com/synthbot/audioplugin/vst/JVstHost.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,10 @@ void opcode2string(VstInt32 opcode, VstIntPtr value, JNIEnv *env) {
261261
message = env->NewStringUTF("audioMasterWantMidi: DEPRECATED in VST 2.4");
262262
break;
263263
}
264+
case 14: { // audioMasterNeedIdle
265+
message = env->NewStringUTF("audioMasterNeedIdle: DEPRECATED in VST 2.4");
266+
break;
267+
}
264268
default: {
265269
char *str = (char *) malloc(sizeof(char) * 100);
266270
sprintf(str, "Opcode not recognized: %i", opcode);

src/com/synthbot/audioplugin/vst/buildJvh_win.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
gcc -mno-cygwin -D__int64="long long" -o jvsthost.dll -shared -O3 -w -Wl,--add-stdcall-alias \
1+
gcc -mno-cygwin -D__int64="long long" -o jvsthost.dll -shared -O3 -w -Wl,--add-stdcall-alias \
22
-I. \
33
-I/cygdrive/c/Java/jdk1.6.0_10/include \
44
-I/cygdrive/c/Java/jdk1.6.0_10/include/win32 \
@@ -11,3 +11,4 @@ JVstHost.cpp \
1111
ls -l jvsthost.dll
1212
echo copying jvsthost.dll to C:/WINDOWS/system32
1313
cp jvsthost.dll /cygdrive/c/WINDOWS/system32
14+
mv jvsthost.dll ../../../../../

0 commit comments

Comments
 (0)