diffstat of debian/ for lxqt-notificationd_0.12.0-4 lxqt-notificationd_0.13.0-0ubuntu2 changelog | 15 +++++++++++++++ control | 15 +++++++++------ patches/fix-notification-height-changing.patch | 15 +++++++++++++++ patches/series | 1 + 4 files changed, 40 insertions(+), 6 deletions(-) diff -Nru lxqt-notificationd-0.12.0/debian/changelog lxqt-notificationd-0.13.0/debian/changelog --- lxqt-notificationd-0.12.0/debian/changelog 2018-04-28 12:57:08.000000000 +0000 +++ lxqt-notificationd-0.13.0/debian/changelog 2018-07-14 06:45:12.000000000 +0000 @@ -1,3 +1,18 @@ +lxqt-notificationd (0.13.0-0ubuntu2) cosmic; urgency=medium + + * Bump Standards-version to 4.1.5, no changes needed. + * Keep notification height when others are added and/or removed. + + -- Simon Quigley Sat, 14 Jul 2018 01:45:12 -0500 + +lxqt-notificationd (0.13.0-0ubuntu1) cosmic; urgency=medium + + * New upstream release. + * Update Vcs-* and Maintainer to Lubuntu values. + * Update build dependencies. + + -- Simon Quigley Tue, 22 May 2018 23:38:43 -0500 + lxqt-notificationd (0.12.0-4) unstable; urgency=medium * Bumped compat to 11 diff -Nru lxqt-notificationd-0.12.0/debian/control lxqt-notificationd-0.13.0/debian/control --- lxqt-notificationd-0.12.0/debian/control 2018-04-28 12:51:47.000000000 +0000 +++ lxqt-notificationd-0.13.0/debian/control 2018-07-14 06:38:30.000000000 +0000 @@ -1,20 +1,23 @@ Source: lxqt-notificationd -Maintainer: LXQt Packaging Team +Maintainer: Lubuntu Developers +XSBC-Original-Maintainer: LXQt Packaging Team Uploaders: Alf Gaida , ChangZhuo Chen (陳昌倬) , Andrew Lee (李健秋) Section: x11 Priority: optional -Build-Depends: debhelper (>= 11~), +Build-Depends: debhelper (>= 11), libkf5windowsystem-dev, - liblxqt0-dev (>= 0.12.0), + liblxqt0-dev (>= 0.13.0), libqt5svg5-dev, libqt5x11extras5-dev, libx11-dev, qtbase5-private-dev -Standards-Version: 4.1.4 -Vcs-Browser: https://salsa.debian.org/lxqt-team/lxqt-notificationd -Vcs-Git: https://salsa.debian.org/lxqt-team/lxqt-notificationd.git +Standards-Version: 4.1.5 +Vcs-Browser: https://phab.lubuntu.me/source/lxqt-notificationd/ +Vcs-Git: https://phab.lubuntu.me/source/lxqt-notificationd.git +XS-Debian-Vcs-Browser: https://salsa.debian.org/lxqt-team/lxqt-notificationd +XS-Debian-Vcs-Git: https://salsa.debian.org/lxqt-team/lxqt-notificationd.git Homepage: https://github.com/lxqt/lxqt-notificationd Package: lxqt-notificationd diff -Nru lxqt-notificationd-0.12.0/debian/patches/fix-notification-height-changing.patch lxqt-notificationd-0.13.0/debian/patches/fix-notification-height-changing.patch --- lxqt-notificationd-0.12.0/debian/patches/fix-notification-height-changing.patch 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.13.0/debian/patches/fix-notification-height-changing.patch 2018-07-14 06:44:18.000000000 +0000 @@ -0,0 +1,15 @@ +Description: Keep notification height when others are added and/or removed +Author: Piotr Wójcik +Origin: upstream +Applied-Upstream: commit:db5707d +Last-Update: 2018-07-14 +--- a/src/notification.cpp ++++ b/src/notification.cpp +@@ -60,6 +60,7 @@ Notification::Notification(const QString + + setMaximumWidth(parent->width()); + setMinimumWidth(parent->width()); ++ setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed); + + setValues(application, summary, body, icon, timeout, actions, hints); + diff -Nru lxqt-notificationd-0.12.0/debian/patches/series lxqt-notificationd-0.13.0/debian/patches/series --- lxqt-notificationd-0.12.0/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.13.0/debian/patches/series 2018-07-14 06:41:05.000000000 +0000 @@ -0,0 +1 @@ +fix-notification-height-changing.patch