Hello community, here is the log from the commit of package kdebase4-workspace for openSUSE:Factory checked in at 2013-04-18 10:20:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdebase4-workspace (Old) and /work/SRC/openSUSE:Factory/.kdebase4-workspace.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdebase4-workspace", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/kdebase4-workspace/kdebase4-workspace.changes 2013-03-23 07:40:55.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kdebase4-workspace.new/kdebase4-workspace.changes 2013-04-18 10:20:44.000000000 +0200 @@ -1,0 +2,13 @@ +Wed Apr 10 13:45:58 UTC 2013 - [email protected] + +- Added url as source. + Please see http://en.opensuse.org/SourceUrls + +------------------------------------------------------------------- +Mon Apr 1 19:15:48 UTC 2013 - [email protected] + +- Update to 4.10.2 + * Bugfixes +- Drop validate_systemd_version_for_upower.diff, it is pushed upstream + +------------------------------------------------------------------- Old: ---- kde-workspace-4.10.1.tar.xz validate_systemd_version_for_upower.diff New: ---- kde-workspace-4.10.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdebase4-workspace.spec ++++++ --- /var/tmp/diff_new_pack.qtvP48/_old 2013-04-18 10:20:49.000000000 +0200 +++ /var/tmp/diff_new_pack.qtvP48/_new 2013-04-18 10:20:49.000000000 +0200 @@ -23,7 +23,7 @@ %endif Name: kdebase4-workspace -Version: 4.10.1 +Version: 4.10.2 Release: 0 Summary: The KDE Workspace Components License: GPL-2.0+ @@ -72,7 +72,7 @@ %if %suse_version > 1220 BuildRequires: pkgconfig(glu) %endif -Source0: kde-workspace-%{version}.tar.xz +Source0: http://download.kde.org/stable/%{version}/src/kde-workspace-%{version}.tar.xz Source1: rcksysguardd Source2: titlebar_decor.png Source3: kwin-cubecap.png @@ -141,8 +141,6 @@ Patch404: pager.diff # PATCH-FIX-UPSTREAM fix-plasma-theme-workaround-tabbox.patch -- Fix tabbox drawing (exposed in default openSUSE 12.3 plasma theme) Patch405: fix-plasma-theme-workaround-tabbox.patch -# PATCH-FIX-UPSTREAM validate_systemd_version_for_upower.diff -- Check if systemd really supports suspend/hibernate -Patch900: validate_systemd_version_for_upower.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build %if %suse_version > 1200 Requires: %{name}-branding = %{version} @@ -391,7 +389,6 @@ %patch403 -p1 %patch404 -p1 %patch405 -p1 -%patch900 -p1 cp %{SOURCE3} kwin/effects/cube/data/cubecap.png %build ++++++ fix-plasma-theme-workaround-tabbox.patch ++++++ --- /var/tmp/diff_new_pack.qtvP48/_old 2013-04-18 10:20:49.000000000 +0200 +++ /var/tmp/diff_new_pack.qtvP48/_new 2013-04-18 10:20:49.000000000 +0200 @@ -1,20 +1,21 @@ -From 1f414ec2c5a98ffd9ed83713a8c89d4d337df7e8 Mon Sep 17 00:00:00 2001 +From e486dee0f3ce0da3d19b376432e3fb51cbf9cf32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= <[email protected]> Date: Wed, 13 Feb 2013 22:14:29 +0100 -Subject: [PATCH] fix plasma theme workaround (tabbox) +Subject: [PATCH] TabBox: fix plasma theme workaround (tabbox) BUG: 315064 -FIXED-IN: 4.10.1 +FIXED-IN: 4.10.3 +REVIEW: 108947 --- kwin/tabbox/declarative.cpp | 31 ++++++++++++++++++++----------- kwin/tabbox/qml/ShadowedSvgItem.qml | 15 ++++++++++++--- 2 files changed, 32 insertions(+), 14 deletions(-) diff --git a/kwin/tabbox/declarative.cpp b/kwin/tabbox/declarative.cpp -index 5beaf1b..61e377d 100644 +index 31e23a0..b6ae22f 100644 --- a/kwin/tabbox/declarative.cpp +++ b/kwin/tabbox/declarative.cpp -@@ -102,17 +102,20 @@ QPixmap ImageProvider::requestPixmap(const QString &id, QSize *size, const QSize +@@ -112,17 +112,20 @@ QPixmap ImageProvider::requestPixmap(const QString &id, QSize *size, const QSize return icon; } @@ -40,7 +41,7 @@ } DeclarativeView::DeclarativeView(QAbstractItemModel *model, TabBoxConfig::TabBoxMode mode, QWidget *parent) -@@ -145,7 +148,7 @@ DeclarativeView::DeclarativeView(QAbstractItemModel *model, TabBoxConfig::TabBox +@@ -155,7 +158,7 @@ DeclarativeView::DeclarativeView(QAbstractItemModel *model, TabBoxConfig::TabBox kdeclarative.setupBindings(); qmlRegisterType<ThumbnailItem>("org.kde.kwin", 0, 1, "ThumbnailItem"); rootContext()->setContextProperty("viewId", static_cast<qulonglong>(winId())); @@ -49,7 +50,7 @@ if (m_mode == TabBoxConfig::ClientTabBox) { rootContext()->setContextProperty("clientModel", model); } else if (m_mode == TabBoxConfig::DesktopTabBox) { -@@ -188,8 +191,10 @@ void DeclarativeView::showEvent(QShowEvent *event) +@@ -198,8 +201,10 @@ void DeclarativeView::showEvent(QShowEvent *event) item->setProperty("currentIndex", tabBox->first().row()); connect(item, SIGNAL(currentIndexChanged(int)), SLOT(currentIndexChanged(int))); } @@ -61,7 +62,7 @@ QGraphicsView::showEvent(event); } -@@ -210,11 +215,15 @@ void DeclarativeView::resizeEvent(QResizeEvent *event) +@@ -220,11 +225,15 @@ void DeclarativeView::resizeEvent(QResizeEvent *event) m_frame->setImagePath(maskImagePath); m_frame->resizeFrame(QSizeF(maskWidth, maskHeight)); QRegion mask = m_frame->mask().translated(maskLeftMargin, maskTopMargin); @@ -75,14 +76,14 @@ + Plasma::WindowEffects::enableBlurBehind(winId(), static_cast<EffectsHandlerImpl*>(effects)->provides(Effect::Blur), mask); clearMask(); - } else { -+ } else ++ } else +#endif + { // do not trim to mask with compositing enabled, otherwise shadows are cropped setMask(mask); } diff --git a/kwin/tabbox/qml/ShadowedSvgItem.qml b/kwin/tabbox/qml/ShadowedSvgItem.qml -index 8bf76c8..9ebe39f 100644 +index 8bf76c8..ad92cab 100644 --- a/kwin/tabbox/qml/ShadowedSvgItem.qml +++ b/kwin/tabbox/qml/ShadowedSvgItem.qml @@ -32,16 +32,25 @@ Item { @@ -92,8 +93,8 @@ + PlasmaCore.FrameSvg { + id: themeInfo + imagePath: plasmaThemeVariant + "dialogs/background" -+ // NOTICE: the followin plasmaThemeVariant access causes necessary re-evaluation! -+ property bool hasNewShadows: plasmaThemeVariant != "opaque/" && hasElementPrefix("shadow") ++ // NOTICE: the following plasmaThemeVariant access causes necessary re-evaluation! ++ property bool hasNewShadows: plasmaThemeVariant != "reEvaluateMe" && hasElementPrefix("shadow") + } + PlasmaCore.FrameSvgItem { @@ -115,5 +116,4 @@ fill: parent leftMargin: shadow.margins.left -- -1.8.1.2 - +1.8.1.5 ++++++ kde-workspace-4.10.1.tar.xz -> kde-workspace-4.10.2.tar.xz ++++++ /work/SRC/openSUSE:Factory/kdebase4-workspace/kde-workspace-4.10.1.tar.xz /work/SRC/openSUSE:Factory/.kdebase4-workspace.new/kde-workspace-4.10.2.tar.xz differ: char 26, line 1 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
