-
Notifications
You must be signed in to change notification settings - Fork 2.9k
[MU4] Allow ledgerlines exactly as wide as the noteheads #6705
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
[MU4] Allow ledgerlines exactly as wide as the noteheads #6705
Conversation
vtest failures expected |
and fix the vtest bat files to use MuseScore4
80a1278
to
40bc83d
Compare
@@ -1,7 +1,7 @@ | |||
|
|||
rem create reference | |||
|
|||
set MSCORE=..\msvc.install_x64\bin\musescore.exe |
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.
@igorkorsukov take a look on that
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.
oops
Was not 100% right before (and apparently hadn't been used since MuseScore3!), and still isn't ;-) But now should work on a 64bit MSVC build.
It is a much simpler script than gen.bat
and not meant to be run automatically, and so %INSTALL_PATH% is not set, so I guess we can let this pass for now?
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.
I think yes, we can pass this (only I would rename to MuseScore4.exe)
This is files not used on CI, as I understand, they for local testing on Windows?
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.
Yes. And Windows is not case sensitive nor needs the extension when resolving the name of an executable
@@ -1,7 +1,7 @@ | |||
|
|||
rem create reference | |||
|
|||
set MSCORE=..\msvc.install_x64\bin\musescore.exe | |||
set MSCORE=..\msvc.install_x64\bin\musescore4.exe | |||
set DPI=130 | |||
|
|||
%MSCORE% %1.mscz -r %DPI% -o %1.png |
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.
Also here it needs to be %MSCORE% %1.mscx -r %DPI% -o %1.png
, mscx vs. mscz, as I just found out.
Still doesn't work though :-(, I can't seem to get MuseScore 4 to run in converter mode.
and fix the vtest bat files to use MuseScore4
Counterpart to #6359