diff --git a/Version History.txt b/Version History.txt index 2d9cf949..e3ab97a6 100644 --- a/Version History.txt +++ b/Version History.txt @@ -1,4 +1,4 @@ -v0.95 (Semantic version 0.12.0) [unreleased] +v0.95 (Semantic version 0.12.0) [current] Beta release - major functionality should be equivalent to and/or exceed that of MPC2.0. Added more support for external soundfonts (two instruments that used to be swapped are not swapped anymore) Import MPC files just by loading them. @@ -7,7 +7,7 @@ Slight update to song files which allows saving the parameters for note extensio Staff ledger lines Note: Arrangements only work if they are in the "Prefs" folder along with all of the songs. -v0.942 (Semantic version 0.11.2) [current] +v0.942 (Semantic version 0.11.2) Pre-Beta - Bugfix from v0.941 - arranger / song loop point fix. Automatic song length cleanup feature. Also, works on Java 7 again. diff --git a/src/smp/components/buttons/LoadButton.java b/src/smp/components/buttons/LoadButton.java index a22fa638..b47b0322 100644 --- a/src/smp/components/buttons/LoadButton.java +++ b/src/smp/components/buttons/LoadButton.java @@ -3,17 +3,12 @@ import java.io.EOFException; import java.io.StreamCorruptedException; import java.io.File; -import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; -import java.io.ObjectInputStream; -import java.util.ArrayList; - import javafx.scene.image.ImageView; import javafx.scene.input.MouseEvent; import javafx.stage.FileChooser; import smp.ImageLoader; -import smp.components.Values; import smp.components.general.ImagePushButton; import smp.components.general.Utilities; import smp.components.staff.sequences.StaffArrangement; diff --git a/src/smp/components/staff/Staff.java b/src/smp/components/staff/Staff.java index c8a31c71..1cc098ea 100644 --- a/src/smp/components/staff/Staff.java +++ b/src/smp/components/staff/Staff.java @@ -2,7 +2,6 @@ import java.io.EOFException; import java.io.File; -import java.io.FileNotFoundException; import java.io.IOException; import java.io.StreamCorruptedException; import java.text.ParseException;