Skip to content

Commit

Permalink
Merge branch 'release/v0.1.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
kshoji committed Feb 25, 2022
2 parents 8318162 + 9c59741 commit 407f66c
Show file tree
Hide file tree
Showing 13 changed files with 45 additions and 9 deletions.
2 changes: 1 addition & 1 deletion MIDIDriver/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ group = 'jp.kshoji'
uploadArchives {
repositories.mavenDeployer {
repository url: 'file://' + file('snapshots').absolutePath
pom.version = '0.1.5'
pom.version = '0.1.6'
pom.artifactId = 'midi-driver'
}
}
Expand Down
2 changes: 1 addition & 1 deletion MIDIDriver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>jp.kshoji</groupId>
<artifactId>midi-driver</artifactId>
<version>0.1.5</version>
<version>0.1.6</version>
<packaging>aar</packaging>
<name>Android USB MIDI Driver Library</name>
<description>USB MIDI Driver for Android tablets(3.1 or higher)</description>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
561def0409e756e194d5dba5bfc1182e
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5a7f5986762b4cf71ee33880a3cb550f34adbfd6
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>jp.kshoji</groupId>
<artifactId>midi-driver</artifactId>
<version>0.1.6</version>
<packaging>aar</packaging>
<dependencies>
<dependency>
<groupId>jp.kshoji</groupId>
<artifactId>javax-sound-midi</artifactId>
<version>0.0.4</version>
<type>aar</type>
<classifier></classifier>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>support-annotations</artifactId>
<version>28.0.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6f3f52f6f4896ebf35776a4e281ce0f6
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cad8e227cdc82d43ee9e05f1057600e71a3e0f8e
5 changes: 3 additions & 2 deletions MIDIDriver/snapshots/jp/kshoji/midi-driver/maven-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>jp.kshoji</groupId>
<artifactId>midi-driver</artifactId>
<versioning>
<release>0.1.5</release>
<release>0.1.6</release>
<versions>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
Expand All @@ -19,7 +19,8 @@
<version>0.1.4</version>
<version>0.1.5-SNAPSHOT</version>
<version>0.1.5</version>
<version>0.1.6</version>
</versions>
<lastUpdated>20210701045157</lastUpdated>
<lastUpdated>20220225035526</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
997bf89c462f40a89a44c0b9006b5b63
fc7971bdc9541438475d1e91bf3c2a56
Original file line number Diff line number Diff line change
@@ -1 +1 @@
bb8df741b2fc8f0771a6fcdfa28c7a64adb9320b
e09ec8d361a31f2577d54de75ae2c9684317517c
4 changes: 2 additions & 2 deletions MIDIDriver/src/jp/kshoji/unity/midi/UsbMidiUnityPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -181,12 +181,12 @@ public void onMidiReset(@NonNull MidiInputDevice sender, int cable) {

@Override
public void onMidiMiscellaneousFunctionCodes(@NonNull final MidiInputDevice sender, int cable, int byte1, int byte2, int byte3) {
UnityPlayer.UnitySendMessage(GAME_OBJECT_NAME, "OnMidiMiscellaneousFunctionCodes", serializeMidiMessage(sender.getDeviceAddress(), new int[] {cable}));
UnityPlayer.UnitySendMessage(GAME_OBJECT_NAME, "OnMidiMiscellaneousFunctionCodes", serializeMidiMessage(sender.getDeviceAddress(), new int[] {cable, byte1, byte2, byte3}));
}

@Override
public void onMidiCableEvents(@NonNull final MidiInputDevice sender, int cable, int byte1, int byte2, int byte3) {
UnityPlayer.UnitySendMessage(GAME_OBJECT_NAME, "OnMidiCableEvents", serializeMidiMessage(sender.getDeviceAddress(), new int[] {cable}));
UnityPlayer.UnitySendMessage(GAME_OBJECT_NAME, "OnMidiCableEvents", serializeMidiMessage(sender.getDeviceAddress(), new int[] {cable, byte1, byte2, byte3}));
}
};
usbMidiDriver.open();
Expand Down
2 changes: 1 addition & 1 deletion MIDIDriverSample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
<dependency>
<groupId>jp.kshoji</groupId>
<artifactId>midi-driver-library</artifactId>
<version>0.1.5</version>
<version>0.1.6</version>
<type>apklib</type>
</dependency>

Expand Down

0 comments on commit 407f66c

Please sign in to comment.