Skip to content

Commit

Permalink
Merge pull request #10 from umjammer/1.0.14
Browse files Browse the repository at this point in the history
1.0.14
  • Loading branch information
umjammer authored Oct 27, 2022
2 parents d444d26 + e0fb3c0 commit 89aa671
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 26 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -45,7 +45,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -59,4 +59,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
8 changes: 5 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 1.8
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>vavi</groupId>
<artifactId>vavi-sound</artifactId>
<version>1.0.13</version>
<version>1.0.14</version>

<name>Vavi Sound API</name>
<url>https://github.com/umjammer/vavi-sound</url>
Expand Down Expand Up @@ -135,7 +135,7 @@ TODO
<dependency>
<groupId>com.github.umjammer</groupId>
<artifactId>klab-commons-cli</artifactId>
<version>1.3.0</version>
<version>1.3.2</version>
<exclusions>
<exclusion>
<groupId>com.github.umjammer</groupId>
Expand All @@ -157,7 +157,7 @@ TODO
<dependency>
<groupId>vavi</groupId>
<artifactId>vavi-sound-nda</artifactId>
<version>1.0.10</version>
<version>1.0.12</version>
<exclusions>
<exclusion>
<groupId>com.github.umjammer</groupId>
Expand Down
6 changes: 3 additions & 3 deletions src/test/java/wave.java → src/test/java/ExtractWave.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@


/**
* wave ファイルからデータだけを抜き出すプログラム.
* extract data from .wav file.
*
* @author <a href="mailto:[email protected]">Naohide Sano</a> (nsano)
* @version 0.00 020708 nsano initial version <br>
* 0.01 030711 nsano new version compliant <br>
* 0.02 030715 nsano fix <br>
*/
public class wave {
public class ExtractWave {
/**
* usage: java wave in_file out_file
* usage: java ExtractWave in_file out_file
*/
public static void main(String[] args) throws Exception {
InputStream is = new BufferedInputStream(Files.newInputStream(Paths.get(args[0])));
Expand Down
6 changes: 3 additions & 3 deletions src/test/java/t150_1.java → src/test/java/PlayLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
* @author <a href="mailto:[email protected]">Naohide Sano</a> (nsano)
* @version 0.00 030711 nsano initial version <br>
*/
public class t150_1 {
public class PlayLine {

/**
* usage: java t150_1 file ...
* usage: java PlayLine file ...
*/
public static void main(String[] args) throws Exception {

Expand All @@ -35,7 +35,7 @@ public static void main(String[] args) throws Exception {
}

// play
t150_1 player = new t150_1();
PlayLine player = new PlayLine();
for (String arg : args) {
player.play(arg);
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/Test1.java → src/test/java/PlayMFi.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author <a href="mailto:[email protected]">Naohide Sano</a> (nsano)
* @version 0.00 090913 nsano initial version <br>
*/
public class Test1 {
public class PlayMFi {

/**
*
Expand Down
6 changes: 3 additions & 3 deletions src/test/java/t150_3.java → src/test/java/PlayPCM.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
* @author <a href="mailto:[email protected]">Naohide Sano</a> (nsano)
* @version 0.00 030714 nsano initial version <br>
*/
public class t150_3 {
public class PlayPCM {

/**
* usage: java t150_3 pcm_file [sampleRate] [byteOrder(le,be)]
* usage: java PlayPCM pcm_file [sampleRate] [byteOrder(le,be)]
*/
public static void main(String[] args) throws Exception {

Expand All @@ -48,7 +48,7 @@ public static void main(String[] args) throws Exception {
System.err.println("byteOrder: " + byteOrder);
}

t150_3 player = new t150_3();
PlayPCM player = new PlayPCM();
player.play(file, sampleRate, byteOrder);
}

Expand Down
6 changes: 3 additions & 3 deletions src/test/java/t150_4.java → src/test/java/PlayPCM2.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
* @author <a href="mailto:[email protected]">Naohide Sano</a> (nsano)
* @version 0.00 030714 nsano initial version <br>
*/
public class t150_4 {
public class PlayPCM2 {

/**
* usage: java t150_4 pcm_file
* usage: java PlayPCM2 pcm_file
*/
public static void main(String[] args) throws Exception {

Expand All @@ -44,7 +44,7 @@ public static void main(String[] args) throws Exception {

// 2

t150_4 player = new t150_4();
PlayPCM2 player = new PlayPCM2();
player.play(file, sampleRate, byteOrder);
}

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/Test2.java → src/test/java/PlaySMAF.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author <a href="mailto:[email protected]">Naohide Sano</a> (nsano)
* @version 0.00 090913 nsano initial version <br>
*/
public class Test2 {
public class PlaySMAF {

/**
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* @author <a href="mailto:[email protected]">Naohide Sano</a> (umjammer)
* @version 0.00 2019/04/08 umjammer initial version <br>
*/
public class Test3 {
public class ShowMIDIProviders {

/**
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @version 0.00 080701 nsano initial version <br>
* @see "https://stackoverflow.com/a/45119638/6102938"
*/
public class Test {
public class SoundFontTest {

/**
* @param args 0: midi
Expand Down

0 comments on commit 89aa671

Please sign in to comment.