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-29 01:38:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/haruna (Old) and /work/SRC/openSUSE:Factory/.haruna.new.12324 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "haruna" Thu Apr 29 01:38:48 2021 rev:5 rq:889104 version:0.6.3 Changes: -------- --- /work/SRC/openSUSE:Factory/haruna/haruna.changes 2021-04-17 23:25:28.569646308 +0200 +++ /work/SRC/openSUSE:Factory/.haruna.new.12324/haruna.changes 2021-04-29 01:40:01.146715999 +0200 @@ -1,0 +2,6 @@ +Wed Apr 28 17:36:35 UTC 2021 - Luigi Baldoni <aloi...@gmx.com> + +- Update to version 0.6.3 + * Set breeze icon theme before QApplication creation + +------------------------------------------------------------------- Old: ---- haruna-0.6.2.tar.gz New: ---- haruna-0.6.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ haruna.spec ++++++ --- /var/tmp/diff_new_pack.Ed1YjA/_old 2021-04-29 01:40:01.638716695 +0200 +++ /var/tmp/diff_new_pack.Ed1YjA/_new 2021-04-29 01:40:01.642716701 +0200 @@ -17,7 +17,7 @@ Name: haruna -Version: 0.6.2 +Version: 0.6.3 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.2.tar.gz -> haruna-0.6.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.2/.github/workflows/appimage-release.yml new/haruna-0.6.3/.github/workflows/appimage-release.yml --- old/haruna-0.6.2/.github/workflows/appimage-release.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/haruna-0.6.3/.github/workflows/appimage-release.yml 2021-04-28 18:47:08.000000000 +0200 @@ -0,0 +1,48 @@ +# +# SPDX-FileCopyrightText: 2021 Alexis Lopez Zubieta <cont...@azubieta.net> +# SPDX-FileContributor: 2021 Shriraj Hegde <shriraj.he...@gmail.com> +# +# SPDX-License-Identifier: GPL-3.0-or-later +# + +name: Appimage Release Build + +on: + release: + types: [published] + +jobs: + build-appimage: + + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@v2 + - name: install dependencies + run: | + sudo apt-get update + sudo apt-get install -y qt5-default qtdeclarative5-dev gettext build-essential extra-cmake-modules \ + kirigami2-dev mpv libmpv-dev libkf5xmlgui-dev qtquickcontrols2-5-dev libkf5kio-dev libkf5iconthemes-dev \ + libkf5filemetadata-dev libkf5config-dev breeze-dev qtquickcontrols2-5-dev cmake g++ + - name: configure + run: cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr + - name: build + run: make -j`nproc` install DESTDIR=AppDir + - name: Resolve package version + id: resolve_version + run: | + echo "HARUNA_VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV + - name: pack + uses: docker://appimagecrafters/appimage-builder:0.8.4 + with: + entrypoint: appimage-builder + args: --recipe ./appimage-amd64.yaml --skip-test + + - name: Upload to Release + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: | + /home/runner/work/haruna/haruna/*.AppImage + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.2/README.md new/haruna-0.6.3/README.md --- old/haruna-0.6.2/README.md 2021-04-17 14:34:29.000000000 +0200 +++ new/haruna-0.6.3/README.md 2021-04-28 18:47:08.000000000 +0200 @@ -28,6 +28,13 @@ [Flatpak setup guide](https://flatpak.org/setup/) +# AppImage + +* Download appimage from [Releases](https://github.com/g-fb/haruna/releases) + * make executable with `chmod +x Haruna*.AppImage` + * run as executable + * Alternatively, use [AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher) (optional) + # Features these are just some features that set Haruna apart from others players diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.2/data/com.georgefb.haruna.appdata.xml new/haruna-0.6.3/data/com.georgefb.haruna.appdata.xml --- old/haruna-0.6.2/data/com.georgefb.haruna.appdata.xml 2021-04-17 14:34:29.000000000 +0200 +++ new/haruna-0.6.3/data/com.georgefb.haruna.appdata.xml 2021-04-28 18:47:08.000000000 +0200 @@ -28,6 +28,14 @@ </ul> </description> <releases> + <release version="0.6.3" date="2021-04-28"> + <description> + <p>Bugfixes:</p> + <ul> + <li>Fixed forcing breeze icons not working on Plasma, when system icon theme is not breeze.</li> + </ul> + </description> + </release> <release version="0.6.2" date="2021-04-17"> <description> <p>Bugfixes:</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/haruna-0.6.2/src/application.cpp new/haruna-0.6.3/src/application.cpp --- old/haruna-0.6.2/src/application.cpp 2021-04-17 14:34:29.000000000 +0200 +++ new/haruna-0.6.3/src/application.cpp 2021-04-28 18:47:08.000000000 +0200 @@ -68,6 +68,9 @@ QQuickStyle::setStyle(QStringLiteral("org.kde.desktop")); QQuickStyle::setFallbackStyle(QStringLiteral("Fusion")); + if (GeneralSettings::useBreezeIconTheme()) { + QIcon::setThemeName(QStringLiteral("breeze")); + } QApplication *app = new QApplication(argc, argv); return app; @@ -89,10 +92,6 @@ // org.mpris.MediaPlayer2 mpris2 interface new MediaPlayer2(this); - if (GeneralSettings::useBreezeIconTheme()) { - QIcon::setThemeName("breeze"); - } - if (GeneralSettings::guiStyle() != QStringLiteral("System")) { QApplication::setStyle(GeneralSettings::guiStyle()); } @@ -250,7 +249,7 @@ QString Application::version() { - return QStringLiteral("0.6.2"); + return QStringLiteral("0.6.3"); } bool Application::hasYoutubeDl()