diff --git a/vtest/README.md b/vtest/README.md index 0a93e1a90c..1b10fbda3f 100644 --- a/vtest/README.md +++ b/vtest/README.md @@ -20,4 +20,8 @@ Add a new test mscore xxx.mscx -o -r 130 xxx-ref.png - add the file to `gen` and `gen.bat` - +How to use on Windows +--- +- Install *Image Magick*, add it to PATH +- Run `gen.bat`. It will use msvc.install as a default folder to search MuseScore.exe. If you use mingw build, specify the path to install folder manually: + `gen.bat win32install` diff --git a/vtest/chord-layout-17.mscx b/vtest/chord-layout-17.mscx new file mode 100644 index 0000000000..c1a3bed553 --- /dev/null +++ b/vtest/chord-layout-17.mscx @@ -0,0 +1,207 @@ + + + 3.0.0 + 3543170 + + + 0 + + + 480 + + 1 + 1 + 1 + 0 + + + + 2013-09-17 + + + + X11 + + + + + + + + + stdNormal + + + + + stdNormal + + F + + Piano + + Pno. + Piano + 21 + 108 + 21 + 108 + + 100 + 70 + + + 100 + 40 + + + 100 + 100 + + + 120 + 100 + + + + Fluid + + + + + + + 4 + 4 + + + 1 + whole + + 79 + 15 + + + + half + + 0/1 + + 1 + 2 + whole + + 1 + 62 + 16 + + + + 1 + quarter + + + + + 1 + whole + + 62 + 16 + + + + half + + + end + + + + + + + 4 + 4 + + + 1 + quarter + + 59 + 19 + + + + eighth + + + 1 + quarter + + 41 + 13 + + + + eighth + + + whole + + + + + 2 + whole + + 59 + 19 + + + + quarter + + + end + + 0/1 + + 5 + 2 + whole + + 5 + 41 + 13 + + + + 5 + quarter + + + + + diff --git a/vtest/chord-layout-17.mscz b/vtest/chord-layout-17.mscz deleted file mode 100644 index 2cfb621b5d..0000000000 Binary files a/vtest/chord-layout-17.mscz and /dev/null differ diff --git a/vtest/gen.bat b/vtest/gen.bat index 2afeccbab7..e27c675038 100644 --- a/vtest/gen.bat +++ b/vtest/gen.bat @@ -38,7 +38,20 @@ set SRC=mmrest-1,bravura-mmrest,gonville-mmrest,mmrest-2,mmrest-4,mmrest-5,mmres slashed_chord-layout-12, slashed_chord-layout-7, slashed_grace-3, slashed_noteheadposition-1, ^ drumset-custom-1, read-206-custom-drumset-1 -set MSCORE=..\win32install\bin\musescore.exe +IF NOT "%1"=="" ( + SET INSTALL_PATH=%1 + ) ELSE ( + SET INSTALL_PATH=msvc.install + ) + +set MSCORE=..\%INSTALL_PATH%\bin\musescore.exe + +IF NOT EXIST ..\%INSTALL_PATH%\nul ( + echo "Current folder: ..\%INSTALL_PATH%" + echo "MuseScore install folder not found" + goto :ERROR + ) + set DPI=130 set F=vtest.html @@ -91,3 +104,5 @@ echo ^ >> %F% %F% cd .. @echo on + +:ERROR \ No newline at end of file