Hello community, here is the log from the commit of package kwin5 for openSUSE:Factory checked in at 2014-12-21 11:59:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kwin5 (Old) and /work/SRC/openSUSE:Factory/.kwin5.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kwin5" Changes: -------- --- /work/SRC/openSUSE:Factory/kwin5/kwin5.changes 2014-11-13 09:22:02.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kwin5.new/kwin5.changes 2014-12-21 11:59:52.000000000 +0100 @@ -1,0 +2,14 @@ +Thu Dec 11 17:59:58 UTC 2014 - [email protected] + +- Update to 5.1.2: + * Bugfix release + * Drop check whether Compositing is enabled + * Cleanup electric border handling in leaveMoveResize, kde#341673 + * Fix ui files + * Require OpenGL 2.0 in the SceneOpenGL2 constructor, kde#340254 + * For more details please see: + https://www.kde.org/announcements/plasma-5.1.2.php +- Added fixed-data-type-for_KDE_NET_WM_BLUR_BEHIND_REGION.patch, + kde#328817 + +------------------------------------------------------------------- Old: ---- kwin-5.1.1.tar.xz New: ---- fixed-data-type-for_KDE_NET_WM_BLUR_BEHIND_REGION.patch kwin-5.1.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kwin5.spec ++++++ --- /var/tmp/diff_new_pack.QlOHNF/_old 2014-12-21 11:59:53.000000000 +0100 +++ /var/tmp/diff_new_pack.QlOHNF/_new 2014-12-21 11:59:53.000000000 +0100 @@ -17,7 +17,7 @@ Name: kwin5 -Version: 5.1.1 +Version: 5.1.2 Release: 0 Summary: KDE Window Manager License: GPL-2.0+ @@ -26,6 +26,8 @@ Source: kwin-%{version}.tar.xz Source1: baselibs.conf Source99: %{name}-rpmlintrc +# PATCH-FIX-UPSTREAM fixed-data-type-for_KDE_NET_WM_BLUR_BEHIND_REGION.patch +Patch0: fixed-data-type-for_KDE_NET_WM_BLUR_BEHIND_REGION.patch BuildRequires: extra-cmake-modules >= 0.0.11 BuildRequires: kactivities5-devel >= 5.3.0 BuildRequires: kcmutils-devel >= 5.3.0 @@ -125,6 +127,7 @@ %lang_package %prep %setup -q -n kwin-%{version} +%patch0 -p1 %build %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=share/locale/kf5 ++++++ fixed-data-type-for_KDE_NET_WM_BLUR_BEHIND_REGION.patch ++++++ From: Hugo Pereira Da Costa <[email protected]> Date: Fri, 12 Dec 2014 09:03:34 +0000 Subject: Fixed data type for _KDE_NET_WM_BLUR_BEHIND_REGION X-Git-Url: http://quickgit.kde.org/?p=kwin.git&a=commitdiff&h=1e0346cd1df696eb3ee11657be3e6b6393f3d3f9 --- Fixed data type for _KDE_NET_WM_BLUR_BEHIND_REGION REVIEW: 121459 --- --- a/effects/blur/blur.cpp +++ b/effects/blur/blur.cpp @@ -98,9 +98,9 @@ QRegion region; const QByteArray value = w->readProperty(net_wm_blur_region, XCB_ATOM_CARDINAL, 32); - if (value.size() > 0 && !(value.size() % (4 * sizeof(unsigned long)))) { - const unsigned long *cardinals = reinterpret_cast<const unsigned long*>(value.constData()); - for (unsigned int i = 0; i < value.size() / sizeof(unsigned long);) { + if (value.size() > 0 && !(value.size() % (4 * sizeof(uint32_t)))) { + const uint32_t *cardinals = reinterpret_cast<const uint32_t*>(value.constData()); + for (unsigned int i = 0; i < value.size() / sizeof(uint32_t);) { int x = cardinals[i++]; int y = cardinals[i++]; int w = cardinals[i++]; ++++++ kwin-5.1.1.tar.xz -> kwin-5.1.2.tar.xz ++++++ ++++ 21228 lines of diff (skipped) -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
