Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
umjammer committed Nov 10, 2020
1 parent bbb3345 commit e05c3ed
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>vavi</groupId>
<artifactId>vavi-sound-dx7</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>

<build>
<plugins>
Expand Down Expand Up @@ -38,14 +38,14 @@

<dependencies>
<dependency>
<groupId>vavi</groupId>
<groupId>com.github.umjammer</groupId>
<artifactId>vavi-commons</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4</version>
</dependency>
<dependency>
<groupId>vavi</groupId>
<artifactId>vavi-sound-sandbox</artifactId>
<version>1.0.4-SNAPSHOT</version>
<groupId>com.github.umjammer</groupId>
<artifactId>vavi-sound</artifactId>
<version>1.0.10</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/vavi/sound/dx7/FmCore.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public FmAlgorithm(Integer... args) {
}
}

private static final FmAlgorithm[] algorithms = new FmAlgorithm[] {
private static final FmAlgorithm[] algorithms = {
new FmAlgorithm(0xc1, 0x11, 0x11, 0x14, 0x01, 0x14), // 1
new FmAlgorithm(0x01, 0x11, 0x11, 0x14, 0xc1, 0x14), // 2
new FmAlgorithm(0xc1, 0x11, 0x14, 0x01, 0x11, 0x14), // 3
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/vavi/sound/midi/dx7/Dx7Soundbank.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ public String getVersion() {

@Override
public String getVendor() {
return "vavisoft";
return "vavi";
}

@Override
public String getDescription() {
return "soundbank for DX7";
return "Soundbank for DX7";
}

@Override
Expand Down
3 changes: 3 additions & 0 deletions src/test/java/vavi/sound/dx7/Dx7SynthesizerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledIfEnvironmentVariable;

import com.sun.media.sound.ModelAbstractOscillator;

Expand All @@ -52,6 +53,7 @@ public class Dx7SynthesizerTest {

@Test
// @Disabled
@DisabledIfEnvironmentVariable(named = "GITHUB_WORKFLOW", matches = ".*")
void test() throws Exception {
Synthesizer synthesizer = new Dx7Synthesizer();
synthesizer.open();
Expand Down Expand Up @@ -129,6 +131,7 @@ void test4() throws Exception {

@Test
@Disabled
@DisabledIfEnvironmentVariable(named = "GITHUB_WORKFLOW", matches = ".*")
void test3() throws Exception {
Synthesizer synthesizer = MidiSystem.getSynthesizer();
Debug.println("synthesizer: " + synthesizer.getClass().getName());
Expand Down

0 comments on commit e05c3ed

Please sign in to comment.