Skip to content

Commit

Permalink
fixing windows problems
Browse files Browse the repository at this point in the history
- avoiding DLS as it's not yet implemented
- removing JARSoundbankReader (not used but causes problems in higher Java versions)
- #71
  • Loading branch information
truj committed Jun 7, 2021
1 parent b09fe43 commit d8805f8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 123 deletions.
Binary file modified midica.jar
Binary file not shown.
122 changes: 0 additions & 122 deletions src/com/sun/gervill/JARSoundbankReader.java

This file was deleted.

8 changes: 8 additions & 0 deletions src/com/sun/gervill/SoftSynthesizer.java
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,14 @@ public InputStream run() {
SF2SoundbankReader reader = new SF2SoundbankReader();
sbk = reader.getSoundbank(is);
}
else if ("com.sun.media.sound.DLSSoundbank".equals(sbk.getClass().getCanonicalName())) {
// DLS: not yet implemented
continue;
}
else {
// JARSoundbank or something else: not yet implemented
continue;
}
} finally {
is.close();
}
Expand Down
2 changes: 1 addition & 1 deletion src/org/midica/Midica.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class Midica {
private static final int VERSION_MINOR = 1;

/** UNIX timestamp of the last commit */
public static final int COMMIT_TIME = 1623072255;
public static final int COMMIT_TIME = 1623078409;

/** Branch name. Automatically changed by precommit.pl */
public static final String BRANCH = "master";
Expand Down

0 comments on commit d8805f8

Please sign in to comment.