Hi everyone, I'm back with a music sheet to write down using rosegarden (git master). Overall it's coming along quite nicely, well done. However I found the following issues, can you let me know if you want to fix them or if I should look into them myself (and in that case maybe you have hints about where I should look)?
1) In the Notation editor, press F3, move the mouse around on the segment (which shows a temporary green note), press F2 => the green note stays visible at the last position. Clearly it should be hidden at that point. 2) From F3/F8 mode, pressing Esc appears to go back to select mode like F2 would do (the mouse cursor changes, clicking works like in select mode), but the selected toolbar action still says F3/F8 mode rather than select mode. This made me think Esc didn't work, for a long time... 3) I can't open two rosegarden files at the same time, for comparison. If I open a second file in an existing process, it replaces the open one. If I try to launch a second rosegarden instance, it fails to start with: Cannot connect to server socket err = No such file or directory exec of JACK server (command = "/usr/bin/jackd") failed: No such file or directory I can't see a command-line option to disable connecting to the jack server (which I don't care about, I just want to write music, not play it). Easiest quick fix for me is to add a cmake option, patch attached, let me know what you think. This works, I can now launch a second rosegarden instance. But I guess a command-line option (to skip the code in AlsaDriver::initialiseAudio()) would be better for people who don't build rosegarden themselves :-) 4) After making a change in the notation editor, I press Ctrl+S to save. This appears to work, the "*" character disappears from the titlebar of the *main window*, but not from the titlebar of the notation editor window. I have to press Ctrl+S *again*, and then the "*" goes away. Minor, but not reassuring if one uses the notation editor fullscreen :) Thanks for the input! -- David Faure, fa...@kde.org, http://www.davidfaure.fr Working on KDE Frameworks 5
diff --git i/CMakeLists.txt w/CMakeLists.txt index 793259b9d..879857bb0 100644 --- i/CMakeLists.txt +++ w/CMakeLists.txt @@ -166,11 +166,16 @@ pkg_check_modules(SAMPLERATE REQUIRED samplerate>=0.1.2) pkg_check_modules(SNDFILE sndfile>=1.0.16) add_feature_info(SNDFILE SNDFILE_FOUND "Better support for WAV files") -pkg_check_modules(JACK jack) -if(JACK_FOUND) - add_feature_info(JACK JACK_FOUND "Library for accessing the JACK server (http://jackaudio.org).") +option(NO_JACK "Disable audio support. This allows to run multiple instances of rosegarden at the same time" OFF) +if (NO_JACK) + set(JACK_FOUND FALSE) else() - add_feature_info(JACK JACK_FOUND "WARNING: the library for accessing the JACK server (http://jackaudio.org) was not found. Audio will be unavailable!") + pkg_check_modules(JACK jack) + if(JACK_FOUND) + add_feature_info(JACK JACK_FOUND "Library for accessing the JACK server (http://jackaudio.org).") + else() + add_feature_info(JACK JACK_FOUND "WARNING: the library for accessing the JACK server (http://jackaudio.org) was not found. Audio will be unavailable!") + endif() endif() # Build with LIRC support if LIRC detected, unless DISABLE_LIRC is set
_______________________________________________ Rosegarden-devel mailing list Rosegarden-devel@lists.sourceforge.net - use the link below to unsubscribe https://lists.sourceforge.net/lists/listinfo/rosegarden-devel