Skip to content

Commit

Permalink
v0.8.43
Browse files Browse the repository at this point in the history
- Bugfix in class `meico.mpm.elements.styles.defs.OrnamentDef`, the attribute `time.units` of element `temporalSpread` is renamed to `time.unit` (without "s") in accordance to the MPM shema definition.
  • Loading branch information
axelberndt committed Oct 28, 2022
1 parent a06ea6f commit ea4cf58
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
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.8.43
- Bugfix in class `meico.mpm.elements.styles.defs.OrnamentDef`, the attribute `time.units` of element `temporalSpread` is renamed to `time.unit` (without "s") in accordance to the MPM shema definition.


#### v0.8.42
- Added all necessary functionality to handle IDs in MPM elements `temporalSpread` and `dynamicsGradient`.

Expand Down
2 changes: 1 addition & 1 deletion src/meico/Meico.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @author Axel Berndt
*/
public class Meico {
public static final String version = "0.8.42";
public static final String version = "0.8.43";

public static void main(String[] args) {
System.out.println("meico v" + Meico.version);
Expand Down
2 changes: 1 addition & 1 deletion src/meico/mpm/elements/styles/defs/OrnamentDef.java
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ public Element generateXML() {
// not necessary because this is the default value when absent
break;
case Milliseconds:
ts.addAttribute(new Attribute("time.units", "milliseconds"));
ts.addAttribute(new Attribute("time.unit", "milliseconds"));
break;
// case RelativeToNoteDuration:
// throw new UnsupportedDataTypeException("The feature TemporalSpread.FrameDomain.RelativeToNoteDuration is not yet supported.");
Expand Down

0 comments on commit ea4cf58

Please sign in to comment.