diff --git a/debian/changelog b/debian/changelog index 790d713..a8a2344 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +lxqt-qtplugin (0.12.0-5) unstable; urgency=medium + + * Backported colorize-at-start patch + * Bumped debhelper to >= 11 + * Bumped Standards to 4.1.3, no changes needed + * Changed VCS fields for salsa + * Bumped compat to 11 + * Bumped years in copyright + + -- Alf Gaida Mon, 12 Feb 2018 19:52:16 +0100 + lxqt-qtplugin (0.12.0-4) unstable; urgency=medium * Bumped Standards to 4.1.2, no changes needed diff --git a/debian/compat b/debian/compat index f599e28..b4de394 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -10 +11 diff --git a/debian/control b/debian/control index 401c223..ab116d9 100644 --- a/debian/control +++ b/debian/control @@ -5,7 +5,7 @@ Uploaders: Alf Gaida , Yukiharu YABUKI Section: x11 Priority: optional -Build-Depends: debhelper (>= 10), +Build-Depends: debhelper (>= 11), libdbusmenu-qt5-dev, libfm-qt-dev (>= 0.12.0), libkf5windowsystem-dev, @@ -14,9 +14,9 @@ Build-Depends: debhelper (>= 10), libx11-dev, lxqt-build-tools (>= 0.4.0), qtbase5-private-dev -Standards-Version: 4.1.2 -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-lxqt/lxqt-qtplugin.git -Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/lxqt-qtplugin.git +Standards-Version: 4.1.3 +Vcs-Browser: https://salsa.debian.org/team-lxqt/lxqt-qtplugin.git +Vcs-Git: https://salsa.debian.org/team-lxqt/lxqt-qtplugin.git Homepage: https://github.com/lxde/lxqt-qtplugin Package: lxqt-qtplugin diff --git a/debian/copyright b/debian/copyright index 6f04447..1662b20 100644 --- a/debian/copyright +++ b/debian/copyright @@ -3,12 +3,12 @@ Upstream-Name: lxqt-qtplugin Source: https://github.com/lxde/lxqt-qtplugin Files: * -Copyright: 2013-2017 LXQt team +Copyright: 2013-2018 LXQt team 2010-2012 Razor team License: LGPL-2.1+ Files: debian/* -Copyright: 2014-2017 Alf Gaida +Copyright: 2014-2018 Alf Gaida 2015 ChangZhuo Chen (陳昌倬) 2015 Yukiharu YABUKI License: LGPL-2.1+ diff --git a/debian/patches/colorizing-at-startup.patch b/debian/patches/colorizing-at-startup.patch new file mode 100644 index 0000000..772fae2 --- /dev/null +++ b/debian/patches/colorizing-at-startup.patch @@ -0,0 +1,20 @@ +commit 2283f5ee3c344fc62a74e41a127e3eee53fb2c37 +Author: Tsu Jan +Date: Mon Feb 12 13:10:02 2018 +0330 + + Fix icon colorizing at startup + + Fixes https://github.com/lxde/lxqt/issues/1445. + +diff --git a/src/lxqtplatformtheme.cpp b/src/lxqtplatformtheme.cpp +index 83786f0..8291eab 100644 +--- a/src/lxqtplatformtheme.cpp ++++ b/src/lxqtplatformtheme.cpp +@@ -315,6 +315,7 @@ QVariant LXQtPlatformTheme::themeHint(ThemeHint hint) const { + + QIconEngine *LXQtPlatformTheme::createIconEngine(const QString &iconName) const + { ++ XdgIconLoader::instance()->setFollowColorScheme(iconFollowColorScheme_); + return new XdgIconLoaderEngine(iconName); + } + diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..41fa686 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +colorizing-at-startup.patch