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-17 23:25:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/haruna (Old) and /work/SRC/openSUSE:Factory/.haruna.new.12324 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "haruna" Sat Apr 17 23:25:19 2021 rev:4 rq:886315 version:0.6.2 Changes: -------- --- /work/SRC/openSUSE:Factory/haruna/haruna.changes 2021-04-08 21:32:16.531814368 +0200 +++ /work/SRC/openSUSE:Factory/.haruna.new.12324/haruna.changes 2021-04-17 23:25:28.569646308 +0200 @@ -1,0 +2,7 @@ +Sat Apr 17 15:18:20 UTC 2021 - Luigi Baldoni <aloi...@gmx.com> + +- Update to version 0.6.2 + * MpvObject: set youtube-dl format before loading file + * Bundle ssl certs from certify + +------------------------------------------------------------------- Old: ---- haruna-0.6.1.tar.gz New: ---- haruna-0.6.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ haruna.spec ++++++ --- /var/tmp/diff_new_pack.gbVHML/_old 2021-04-17 23:25:28.957646969 +0200 +++ /var/tmp/diff_new_pack.gbVHML/_new 2021-04-17 23:25:28.961646976 +0200 @@ -17,7 +17,7 @@ Name: haruna -Version: 0.6.1 +Version: 0.6.2 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.1.tar.gz -> haruna-0.6.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.1/appimage-amd64.yaml new/haruna-0.6.2/appimage-amd64.yaml --- old/haruna-0.6.1/appimage-amd64.yaml 2021-04-07 01:30:19.000000000 +0200 +++ new/haruna-0.6.2/appimage-amd64.yaml 2021-04-17 14:34:29.000000000 +0200 @@ -88,9 +88,9 @@ - usr/share/doc/*/TODO.* after_bundle: # workaround libcrypt.so.2 binary still name as libcrypt.so.1 in debian systems - - ln -s /usr/lib/libcrypt.so.2 $APPDIR/usr/lib/libcrypt.so.1 + - ln -fs /usr/lib/libcrypt.so.2 $APPDIR/usr/lib/libcrypt.so.1 # deploy the latest youtube-dl - - python3.8 -m pip install --ignore-installed --prefix=/usr --root=$APPDIR install youtube-dl + - python3.8 -m pip install --ignore-installed --prefix=/usr --root=$APPDIR install youtube-dl certifi runtime: env: @@ -100,6 +100,8 @@ # Path to the site-packages dir or other modules dirs # See https://docs.python.org/3/using/cmdline.html#envvar-PYTHONPATH PYTHONPATH: '${APPDIR}/usr/lib/python3.8/site-packages' + # SSL Certificates are placed in a different location for every system therefore we ship our own copy + SSL_CERT_FILE: '${APPDIR}/usr/lib/python3.8/site-packages/certifi/cacert.pem' test: debian: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.1/data/com.georgefb.haruna.appdata.xml new/haruna-0.6.2/data/com.georgefb.haruna.appdata.xml --- old/haruna-0.6.1/data/com.georgefb.haruna.appdata.xml 2021-04-07 01:30:19.000000000 +0200 +++ new/haruna-0.6.2/data/com.georgefb.haruna.appdata.xml 2021-04-17 14:34:29.000000000 +0200 @@ -28,6 +28,14 @@ </ul> </description> <releases> + <release version="0.6.2" date="2021-04-17"> + <description> + <p>Bugfixes:</p> + <ul> + <li>Fixed youtube-dl format selection not working.</li> + </ul> + </description> + </release> <release version="0.6.1" date="2021-04-06"> <description> <p>Bugfixes:</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.1/src/application.cpp new/haruna-0.6.2/src/application.cpp --- old/haruna-0.6.1/src/application.cpp 2021-04-07 01:30:19.000000000 +0200 +++ new/haruna-0.6.2/src/application.cpp 2021-04-17 14:34:29.000000000 +0200 @@ -250,7 +250,7 @@ QString Application::version() { - return QStringLiteral("0.6.1"); + return QStringLiteral("0.6.2"); } bool Application::hasYoutubeDl() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.1/src/mpvobject.cpp new/haruna-0.6.2/src/mpvobject.cpp --- old/haruna-0.6.1/src/mpvobject.cpp 2021-04-07 01:30:19.000000000 +0200 +++ new/haruna-0.6.2/src/mpvobject.cpp 2021-04-17 14:34:29.000000000 +0200 @@ -376,6 +376,7 @@ void MpvObject::loadFile(const QString &file, bool updateLastPlayedFile) { + setProperty("ytdl-format", PlaybackSettings::ytdlFormat()); command(QStringList() << "loadfile" << file); if (updateLastPlayedFile) {