Hello community,

here is the log from the commit of package kdebase4-workspace for 
openSUSE:Factory checked in at 2013-02-04 21:11:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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-01-29 06:56:25.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdebase4-workspace.new/kdebase4-workspace.changes   
    2013-02-04 21:11:51.000000000 +0100
@@ -1,0 +2,20 @@
+Mon Feb  4 13:22:25 UTC 2013 - [email protected]
+
+- Add 0001-Tweak-the-locker-wallpaper.patch, to fix locker's
+  wallpaper rendering
+
+-------------------------------------------------------------------
+Thu Jan 31 17:43:25 UTC 2013 - [email protected]
+
+- Update to 4.10.0
+ * This is the final release for 4.10. Contains bugfixes 
+
+-------------------------------------------------------------------
+Thu Jan 31 12:07:28 UTC 2013 - [email protected]
+
+- changed plasma-kickoff-newly-collapsing.diff:
+  * in config dialog: connect added options to settingsModified()
+    slot so that "Apply" button gets activated when they are changed
+    by the user (bnc#801416)
+
+-------------------------------------------------------------------

Old:
----
  kde-workspace-4.9.98.tar.xz

New:
----
  0001-Tweak-the-locker-wallpaper.patch
  kde-workspace-4.10.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kdebase4-workspace.spec ++++++
--- /var/tmp/diff_new_pack.VDMGNe/_old  2013-02-04 21:11:55.000000000 +0100
+++ /var/tmp/diff_new_pack.VDMGNe/_new  2013-02-04 21:11:55.000000000 +0100
@@ -23,7 +23,7 @@
 %endif
 
 Name:           kdebase4-workspace
-Version:        4.9.98
+Version:        4.10.0
 Release:        0
 Summary:        The KDE Workspace Components
 License:        GPL-2.0+
@@ -131,6 +131,8 @@
 Patch402:       opensuse-kinfocenter.diff
 # PATCH-FIX-OPENSUSE storage.diff (created by Alin M. Elena to add unique 
names for partitions in kinfocenter)
 Patch403:       storage.diff
+# PATCH-FIX-OPENSUSE 0001-Tweak-the-locker-wallpaper.patch patch fixes 
locker's wallpaper rendering
+Patch404:       0001-Tweak-the-locker-wallpaper.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 %if %suse_version > 1200
 Requires:       %{name}-branding = %{version}
@@ -379,6 +381,7 @@
 %patch401 -p1
 %patch402 -p1
 %patch403 -p1
+%patch404 -p1
 cp %{SOURCE3} kwin/effects/cube/data/cubecap.png
 
 %build

++++++ 0001-Tweak-the-locker-wallpaper.patch ++++++
>From d06b717ba281d035315c8cad503572182e084a26 Mon Sep 17 00:00:00 2001
From: Hrvoje Senjan <[email protected]>
Date: Mon, 4 Feb 2013 01:26:02 +0100
Subject: [PATCH 1/1] Tweak the locker wallpaper

---
 .../greeter/themes/org.kde.passworddialog/contents/ui/main.qml          | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/ksmserver/screenlocker/greeter/themes/org.kde.passworddialog/contents/ui/main.qml
 
b/ksmserver/screenlocker/greeter/themes/org.kde.passworddialog/contents/ui/main.qml
index 57c0415..a26c529 100644
--- 
a/ksmserver/screenlocker/greeter/themes/org.kde.passworddialog/contents/ui/main.qml
+++ 
b/ksmserver/screenlocker/greeter/themes/org.kde.passworddialog/contents/ui/main.qml
@@ -42,6 +42,8 @@ Item {
     Image {
         id: background
         anchors.fill: parent
+        smooth: true
+        fillMode: Image.PreserveAspectFit
         source: theme.wallpaperPathForSize(parent.width, parent.height)
     }
 
-- 
1.8.1.1


++++++ plasma-kickoff-newly-collapsing.diff ++++++
--- /var/tmp/diff_new_pack.VDMGNe/_old  2013-02-04 21:11:55.000000000 +0100
+++ /var/tmp/diff_new_pack.VDMGNe/_new  2013-02-04 21:11:55.000000000 +0100
@@ -2,7 +2,7 @@
 ===================================================================
 --- plasma/desktop/applets/kickoff/applet/applet.cpp.orig
 +++ plasma/desktop/applets/kickoff/applet/applet.cpp
-@@ -166,6 +166,8 @@ void LauncherApplet::createConfiguration
+@@ -166,9 +166,13 @@ void LauncherApplet::createConfiguration
      d->ui.iconButton->setIcon(popupIcon());
      d->ui.switchOnHoverCheckBox->setChecked(d->launcher->switchTabsOnHover());
      d->ui.appsByNameCheckBox->setChecked(d->launcher->showAppsByName());
@@ -11,7 +11,12 @@
      connect(d->ui.iconButton, SIGNAL(iconChanged(QString)), parent, 
SLOT(settingsModified()));
      connect(d->ui.switchOnHoverCheckBox, SIGNAL(toggled(bool)), parent, 
SLOT(settingsModified()));
      connect(d->ui.appsByNameCheckBox, SIGNAL(toggled(bool)), parent, 
SLOT(settingsModified()));
-@@ -208,6 +210,9 @@ void LauncherApplet::configAccepted()
++    connect(d->ui.showRecentlyInstalledCheckBox, SIGNAL(toggled(bool)), 
parent, SLOT(settingsModified()));
++    connect(d->ui.reduceMenuDepthCheckBox, SIGNAL(toggled(bool)), parent, 
SLOT(settingsModified()));
+ }
+ 
+ void LauncherApplet::popupEvent(bool show)
+@@ -208,6 +212,9 @@ void LauncherApplet::configAccepted()
      bool switchTabsOnHover = d->ui.switchOnHoverCheckBox->isChecked();
      bool showAppsByName = d->ui.appsByNameCheckBox->isChecked();
  
@@ -21,7 +26,7 @@
      const QString iconname = d->ui.iconButton->icon();
  
      // TODO: should this be moved into Launcher as well? perhaps even the 
config itself?
-@@ -232,6 +237,9 @@ void LauncherApplet::configAccepted()
+@@ -232,6 +239,9 @@ void LauncherApplet::configAccepted()
  
      d->launcher->setSwitchTabsOnHover(switchTabsOnHover);
      d->launcher->setShowAppsByName(showAppsByName);
@@ -616,7 +621,7 @@
                switcher(0),
                contextMenuFactory(0)
      {}
-@@ -489,7 +496,19 @@ void MenuLauncherApplet::createConfigura
+@@ -489,15 +496,29 @@ void MenuLauncherApplet::createConfigura
      d->showMenuTitlesCheckBox->setChecked(d->showMenuTitles);
      grid->addWidget(d->showMenuTitlesCheckBox, 3, 1);
  
@@ -637,7 +642,17 @@
      parent->addPage(p, i18n("Options"), "configure");
  
      connect(parent, SIGNAL(applyClicked()), this, SLOT(configAccepted()));
-@@ -555,6 +574,19 @@ void MenuLauncherApplet::configAccepted(
+     connect(parent, SIGNAL(okClicked()), this, SLOT(configAccepted()));
+     connect(d->iconButton, SIGNAL(iconChanged(QString)), parent, 
SLOT(settingsModified()));
+     connect(d->formatComboBox, SIGNAL(currentIndexChanged(QString)), parent, 
SLOT(settingsModified()));
+     connect(d->recentApplicationsSpinBox, SIGNAL(valueChanged(int)), parent, 
SLOT(settingsModified()));
+     connect(d->showMenuTitlesCheckBox, SIGNAL(toggled(bool)), parent, 
SLOT(settingsModified()));
++    connect(d->showRecentlyInstalledCheckBox, SIGNAL(toggled(bool)), parent, 
SLOT(settingsModified()));
++    connect(d->reduceMenuDepthCheckBox, SIGNAL(toggled(bool)), parent, 
SLOT(settingsModified()));
+     connect(d->view, SIGNAL(currentTextChanged(QString)), parent, 
SLOT(settingsModified()));    
+ }
+ 
+@@ -555,6 +576,19 @@ void MenuLauncherApplet::configAccepted(
          d->showMenuTitles = showMenuTitles;
          cg.writeEntry("showMenuTitles", showMenuTitles);
      }
@@ -657,7 +672,7 @@
  
      if (needssaving) {
          d->updateTooltip();
-@@ -622,6 +654,9 @@ void MenuLauncherApplet::showMenu(bool p
+@@ -622,6 +656,9 @@ void MenuLauncherApplet::showMenu(bool p
                  }
                  
appModel->setSystemApplicationPolicy(Kickoff::ApplicationModel::ShowApplicationAndSystemPolicy);
  
@@ -667,7 +682,7 @@
                  menuview->addModel(appModel, Kickoff::MenuView::None, 
d->relativePath);
  
                  if (d->relativePath.isEmpty()) {
-@@ -877,6 +912,8 @@ void MenuLauncherApplet::configChanged()
+@@ -877,6 +914,8 @@ void MenuLauncherApplet::configChanged()
  
      d->setMaxRecentApps(cg.readEntry("maxRecentApps", qMin(5, 
Kickoff::RecentApplications::self()->maximum())));
      d->showMenuTitles = cg.readEntry("showMenuTitles", false);


-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to