Hello community,
here is the log from the commit of package plymouth-theme-breeze for
openSUSE:Factory checked in at 2017-12-04 10:01:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plymouth-theme-breeze (Old)
and /work/SRC/openSUSE:Factory/.plymouth-theme-breeze.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plymouth-theme-breeze"
Mon Dec 4 10:01:59 2017 rev:20 rq:547179 version:5.11.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/plymouth-theme-breeze/plymouth-theme-breeze.changes
2017-11-08 15:15:31.314246399 +0100
+++
/work/SRC/openSUSE:Factory/.plymouth-theme-breeze.new/plymouth-theme-breeze.changes
2017-12-04 10:02:04.737062780 +0100
@@ -1,0 +2,10 @@
+Thu Nov 30 10:47:45 CET 2017 - [email protected]
+
+- Update to 5.11.4
+ * New bugfix release
+ * For more details please see:
+ * https://www.kde.org/announcements/plasma-5.11.4.php
+- Changes since 5.11.3:
+ * fix overlapping labels on systems with different window sizes
+
+-------------------------------------------------------------------
Old:
----
breeze-plymouth-5.11.3.tar.xz
New:
----
breeze-plymouth-5.11.4.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ plymouth-theme-breeze.spec ++++++
--- /var/tmp/diff_new_pack.zk2TSc/_old 2017-12-04 10:02:05.585032002 +0100
+++ /var/tmp/diff_new_pack.zk2TSc/_new 2017-12-04 10:02:05.589031857 +0100
@@ -34,7 +34,7 @@
Name: plymouth-theme-breeze
-Version: 5.11.3
+Version: 5.11.4
Release: 0
BuildRequires: cmake >= 2.8.12
BuildRequires: extra-cmake-modules >= 1.8.0
++++++ breeze-plymouth-5.11.3.tar.xz -> breeze-plymouth-5.11.4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/breeze-plymouth-5.11.3/CMakeLists.txt
new/breeze-plymouth-5.11.4/CMakeLists.txt
--- old/breeze-plymouth-5.11.3/CMakeLists.txt 2017-11-07 13:29:18.000000000
+0100
+++ new/breeze-plymouth-5.11.4/CMakeLists.txt 2017-11-28 13:00:48.000000000
+0100
@@ -1,5 +1,5 @@
project(breeze-plymouth)
-set(PROJECT_VERSION "5.11.3")
+set(PROJECT_VERSION "5.11.4")
set(PROJECT_VERSION_MAJOR 5)
cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/breeze-plymouth-5.11.3/breeze/breeze.script.cmake
new/breeze-plymouth-5.11.4/breeze/breeze.script.cmake
--- old/breeze-plymouth-5.11.3/breeze/breeze.script.cmake 2017-11-07
13:29:18.000000000 +0100
+++ new/breeze-plymouth-5.11.4/breeze/breeze.script.cmake 2017-11-28
13:00:48.000000000 +0100
@@ -201,7 +201,12 @@
text_height = first_line_height * 7.5;
// FIXME: why minimum?
- local.min_height = Window.GetHeight();
+ // The maximum Y we may end at, if we exceed this we'll try to scoot up
+ // a bit. This includes the Window offset itself as we position ourselves
+ // relative to the Spinner which is relative to the Logo which is relative
+ // to the center of the window TAKING INTO ACCOUNT the y offset of the
+ // window!
+ local.min_height = Window.GetHeight() + Window.GetY();
if (y + text_height > min_height)
y = min_height - text_height;