Skip to content

Commit

Permalink
Fix missing elements, remove output files from repo
Browse files Browse the repository at this point in the history
  • Loading branch information
infojunkie committed Oct 28, 2024
1 parent 395c8c7 commit 602dbf2
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 3,302 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
node_modules
test/data/output/*
test/output/*
cache/*
!.gitkeep
*.log
Expand Down
2 changes: 1 addition & 1 deletion build/mscx.sef.json

Large diffs are not rendered by default.

12 changes: 2 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "musicxml-mscx",
"version": "0.2.0",
"version": "0.2.1",
"description": "MuseScore to MusicXML converter and back.",
"author": "Karim Ratib <[email protected]> (https://github.com/infojunkie)",
"license": "GPL-3.0-only",
Expand Down
4 changes: 2 additions & 2 deletions src/mscx.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@
</Dynamic>
</xsl:template>

<xsl:template match="sound[@dynamics]">
<xsl:template match="sound[@dynamics]" mode="noteSibling">
<Dynamic>
<velocity><xsl:value-of select="round(number(@dynamics) * 90 div 100)"/></velocity>
</Dynamic>
Expand Down Expand Up @@ -594,7 +594,7 @@
</Tempo>
</xsl:template>

<xsl:template match="sound[@tempo]">
<xsl:template match="sound[@tempo]" mode="noteSibling">
<Tempo>
<tempo><xsl:value-of select="@tempo div 60"/></tempo>
<followText>1</followText>
Expand Down
1,910 changes: 0 additions & 1,910 deletions test/output/9-20-special.mscx

This file was deleted.

Loading

0 comments on commit 602dbf2

Please sign in to comment.