-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Fix #321960: [MusicXML export] Tempo beating at the whole does not ex… #8793
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #321960: [MusicXML export] Tempo beating at the whole does not ex… #8793
Conversation
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
Test failure seems completely unrelated to the change in this pull request: |
Yes, those do happen at times and seemingly random. |
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
I guess after re-running the vtests this one should be ready for merge? |
Most likely. Is there any way to achieve that (besides updating the branch, e.g. by rebasing) ? |
Not for mere mortals like us . |
c5cb07c
to
b03bbff
Compare
rebase needed |
Will do |
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
b03bbff
to
2d6f109
Compare
QString unit; | ||
findUnit(dur.type(), unit); | ||
xml.tag("beat-unit", unit); | ||
xml.tag("beat-unit", dur.name()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method doesn't exist (anymore?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apparently to be replaced by TConv::toXml().
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp.
2d6f109
to
52f8a34
Compare
…port in .musicxml format Caused by superfluous and incomplete findUnit() function in exportxml.cpp. Backport of musescore#8793
…port in .musicxml format
Resolves: https://musescore.org/en/node/321960
Issue leads to invalid and incomplete MusicXML export. Trivial bug, caused by superfluous and incomplete findUnit() function in exportxml.cpp. Solution supports all tempo text note values supported by MuseScore.