Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package haruna for openSUSE:Factory checked in at 2021-04-08 21:32:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/haruna (Old) and /work/SRC/openSUSE:Factory/.haruna.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "haruna" Thu Apr 8 21:32:09 2021 rev:3 rq:883582 version:0.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/haruna/haruna.changes 2021-04-01 14:19:03.060135030 +0200 +++ /work/SRC/openSUSE:Factory/.haruna.new.2401/haruna.changes 2021-04-08 21:32:16.531814368 +0200 @@ -1,0 +2,9 @@ +Wed Apr 7 10:49:52 UTC 2021 - Luigi Baldoni <aloi...@gmx.com> + +- Update to version 0.6.1 + * Update desktop file + * add link to flathub page + * MpvObject + * Playlist model + +------------------------------------------------------------------- Old: ---- haruna-0.6.0.tar.gz New: ---- haruna-0.6.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ haruna.spec ++++++ --- /var/tmp/diff_new_pack.vGacFa/_old 2021-04-08 21:32:17.039814926 +0200 +++ /var/tmp/diff_new_pack.vGacFa/_new 2021-04-08 21:32:17.043814930 +0200 @@ -17,7 +17,7 @@ Name: haruna -Version: 0.6.0 +Version: 0.6.1 Release: 0 Summary: Video player built with Qt/QML on top of libmpv License: CC-BY-4.0 AND GPL-3.0-or-later AND WTFPL ++++++ haruna-0.6.0.tar.gz -> haruna-0.6.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.0/README.md new/haruna-0.6.1/README.md --- old/haruna-0.6.0/README.md 2021-03-31 01:55:16.000000000 +0200 +++ new/haruna-0.6.1/README.md 2021-04-07 01:30:19.000000000 +0200 @@ -12,6 +12,7 @@ # Install +https://flathub.org/apps/details/com.georgefb.haruna ### Stable ``` flatpak install flathub com.georgefb.haruna diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.0/data/com.georgefb.haruna.appdata.xml new/haruna-0.6.1/data/com.georgefb.haruna.appdata.xml --- old/haruna-0.6.0/data/com.georgefb.haruna.appdata.xml 2021-03-31 01:55:16.000000000 +0200 +++ new/haruna-0.6.1/data/com.georgefb.haruna.appdata.xml 2021-04-07 01:30:19.000000000 +0200 @@ -28,6 +28,15 @@ </ul> </description> <releases> + <release version="0.6.1" date="2021-04-06"> + <description> + <p>Bugfixes:</p> + <ul> + <li>Show loading indicator for online videos only.</li> + <li>Fixed not opening recent file from panel/task manager context menu.</li> + </ul> + </description> + </release> <release version="0.6.0" date="2021-03-30"> <description> <p>Features:</p> @@ -53,7 +62,6 @@ <li>Fixed menubar height being to small.</li> </ul> </description> - </release> <release version="0.5.0" date="2021-01-11"> <description> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.0/data/com.georgefb.haruna.desktop new/haruna-0.6.1/data/com.georgefb.haruna.desktop --- old/haruna-0.6.0/data/com.georgefb.haruna.desktop 2021-03-31 01:55:16.000000000 +0200 +++ new/haruna-0.6.1/data/com.georgefb.haruna.desktop 2021-04-07 01:30:19.000000000 +0200 @@ -6,7 +6,7 @@ [Desktop Entry] Name=Haruna Video Player -Exec=haruna +Exec=haruna %u Icon=com.georgefb.haruna Type=Application Categories=Qt;KDE;AudioVideo;Player;Video;TV; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.0/src/application.cpp new/haruna-0.6.1/src/application.cpp --- old/haruna-0.6.0/src/application.cpp 2021-03-31 01:55:16.000000000 +0200 +++ new/haruna-0.6.1/src/application.cpp 2021-04-07 01:30:19.000000000 +0200 @@ -250,7 +250,7 @@ QString Application::version() { - return QStringLiteral("0.6.0"); + return QStringLiteral("0.6.1"); } bool Application::hasYoutubeDl() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.0/src/playlist/playlistmodel.cpp new/haruna-0.6.1/src/playlist/playlistmodel.cpp --- old/haruna-0.6.0/src/playlist/playlistmodel.cpp 2021-03-31 01:55:16.000000000 +0200 +++ new/haruna-0.6.1/src/playlist/playlistmodel.cpp 2021-04-07 01:30:19.000000000 +0200 @@ -162,6 +162,9 @@ { // when restoring a youtube playlist // ensure the requested path is valid + if (m_playList.isEmpty()) { + return QString(); + } if (m_playList.size() <= i) { return m_playList[0]->filePath(); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.0/src/qml/MpvVideo.qml new/haruna-0.6.1/src/qml/MpvVideo.qml --- old/haruna-0.6.0/src/qml/MpvVideo.qml 2021-03-31 01:55:16.000000000 +0200 +++ new/haruna-0.6.1/src/qml/MpvVideo.qml 2021-04-07 01:30:19.000000000 +0200 @@ -80,7 +80,9 @@ } onFileStarted: { - loadingIndicatorParent.visible = true + if (typeof getProperty("path") === "string" && getProperty("path").startsWith("http")) { + loadingIndicatorParent.visible = true + } } onFileLoaded: {