Skip to content

Commit

Permalink
v0.6.18
Browse files Browse the repository at this point in the history
- Adaptations to meico update v0.8.40.
  • Loading branch information
axelberndt committed Aug 30, 2022
1 parent 77754bf commit 5f11eaa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
Binary file modified externals/meico.jar
Binary file not shown.
4 changes: 4 additions & 0 deletions history.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
### Version History


#### v0.6.18
- Adaptations to meico update v0.8.40.


#### v0.6.17
- Bugfix in method `mpmToolbox.gui.audio.TempoMapPanel.retrieveTempoMap()`.

Expand Down
2 changes: 1 addition & 1 deletion src/mpmToolbox/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @author Axel Berndt
*/
public class Main {
public static final String version = "0.1.17";
public static final String version = "0.1.18";

public static void main(String[] args) {
// read the application settings from file
Expand Down
2 changes: 1 addition & 1 deletion src/mpmToolbox/gui/mpmTree/MpmTreeNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ private void generateMyName() {

case temporalSpread:
OrnamentDef.TemporalSpread temporalSpread = (OrnamentDef.TemporalSpread) this.getUserObject();
this.name = "temporalSpread [" + temporalSpread.frameStart + ", " + temporalSpread.frameEnd + "]";
this.name = "temporalSpread [" + temporalSpread.frameStart + ", " + temporalSpread.getFrameLength() + "]";
switch (temporalSpread.frameDomain) {
case Milliseconds:
this.name = this.name.concat(" ms");
Expand Down

0 comments on commit 5f11eaa

Please sign in to comment.