Dave Plater
Dave Plater
Master hasn't been ported to qt5 yet: playlistWidget.cpp: In member function 'virtual void NPlaylistWidget::mouseMoveEvent(QMouseEvent*)': playlistWidget.cpp:727:32: error: invalid use of incomplete type 'class QDrag' m_itemDrag = new QDrag(this); ^ In file...
Make the branch available, I tried master with a small patch for configure and it seems to only need a few include changes.
Build fails on: In file included from playbackEngineVlc.cpp:16:0: playbackEngineVlc.h:75:21: error: ‘N::MessageBox’ has not been declared void message(N::MessageBox::Icon icon, const QString &title, const QString &msg); ^~~~~~~~~~ playbackEngineVlc.h:75:38: error: expected ‘,’ or...
BTW this patch was used on the qt4 version, I've rebased it for the qt5 branch: [fix-library-directory.patch.txt](https://github.com/nulloy/nulloy/files/3137210/fix-library-directory.patch.txt) See: https://build.opensuse.org/package/show/home:plater/nulloy
It builds with rpmbuild without the --vlc flag, I've included --gstreamer-tagreader. I need to patch "/usr/nulloy/plugins/" to become /usr/lib64/nulloy/plugins and find the qt package that's missing in the obs build....
Got the obs build working, needed libqt5-qttools-devel and two private header devel poackages. I've put it in multimedia:apps.
Never having used nulloy before, the qt5 version works fine drag and drop and all. The Native and Silver skins don't have a menu icon but have a much bigger...
Added two patches to bring it up to date. Both phonon and vlc plugins build.
You missed this: "- if command -v realpath &> /dev/null && -d $(dirname "$1"); then "+ if command -v realpath &> /dev/null && [ -d $(dirname "$1") ]; then Which...
Other remaining issue is: usr/bin/qmake-qt5 -install qinstall -exe ../../../plugins/libplugin_gstreamer.so /home/abuild/rpmbuild/BUILDROOT/nulloy-0.8.2.pre61qt5-0.x86_64/usr/nulloy/plugins/libplugin_gstreamer.so The plugins are installed under /usr/nulloy/plugins/ and I physically move them to /usr/l$LIBDIR/nulloy/plugins/ using mv. They function correctly, I can't...