Hello community,

here is the log from the commit of package kdebase4-workspace for openSUSE:11.4
checked in at Sun Feb 27 14:48:13 CET 2011.



--------
--- old-versions/11.4/all/kdebase4-workspace/kdebase4-wallpapers.changes        
2011-02-21 00:26:51.000000000 +0100
+++ 11.4/kdebase4-workspace/kdebase4-wallpapers.changes 2011-02-27 
14:47:41.311984000 +0100
@@ -1,0 +2,10 @@
+Sat Feb 26 18:02:50 UTC 2011 - [email protected]
+
+- simplify perl update script for blur blacklist (bnc#675388)
+
+-------------------------------------------------------------------
+Thu Feb 24 15:03:07 UTC 2011 - [email protected]
+
+- readd global shortcut Alt+f1 for launcher (bnc#637583)
+
+-------------------------------------------------------------------
kdebase4-workspace.changes: same change
python-kdebase4.changes: same change

calling whatdependson for 11.4-i586


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

Other differences:
------------------
++++++ kdebase4-workspace.spec ++++++
--- /var/tmp/diff_new_pack.5S4PrE/_old  2011-02-27 14:47:53.000000000 +0100
+++ /var/tmp/diff_new_pack.5S4PrE/_new  2011-02-27 14:47:53.000000000 +0100
@@ -23,7 +23,7 @@
 Summary:        The KDE Workspace Components
 Url:            http://www.kde.org/
 Version:        4.6.0
-Release:        10.<RELEASE2>
+Release:        10.<RELEASE3>
 BuildRequires:  audit-devel
 BuildRequires:  bluez-devel
 BuildRequires:  ConsoleKit-devel


++++++ kwin-update-blacklist-11.4.diff ++++++
--- /var/tmp/diff_new_pack.5S4PrE/_old  2011-02-27 14:47:53.000000000 +0100
+++ /var/tmp/diff_new_pack.5S4PrE/_new  2011-02-27 14:47:53.000000000 +0100
@@ -6,64 +6,48 @@
 
     Add blacklist updater for Blur on Intel 945GM on openSUSE 11.4
 
-diff --git a/kwin/data/CMakeLists.txt b/kwin/data/CMakeLists.txt
-index ca6ff12..f1f314e 100644
---- a/kwin/data/CMakeLists.txt
-+++ b/kwin/data/CMakeLists.txt
-@@ -38,5 +38,5 @@ install( TARGETS kwin_update_tabbox_settings DESTINATION 
${LIB_INSTALL_DIR}/kcon
+Index: kdebase-workspace-4.6.0/kwin/data/CMakeLists.txt
+===================================================================
+--- kdebase-workspace-4.6.0.orig/kwin/data/CMakeLists.txt      2011-01-19 
23:05:20.000000000 +0100
++++ kdebase-workspace-4.6.0/kwin/data/CMakeLists.txt   2011-02-26 
19:00:17.413355775 +0100
+@@ -38,5 +38,5 @@ install( TARGETS kwin_update_tabbox_sett
  install( FILES fsp_workarounds_1.kwinrules  DESTINATION  
${DATA_INSTALL_DIR}/kwin/default_rules )
  install( FILES pop.wav  DESTINATION  ${SOUND_INSTALL_DIR} )
  install( FILES kwin.upd kwinsticky.upd kwiniconify.upd kwin3_plugin.upd 
kwin_focus1.upd kwinupdatewindowsettings.upd kwin_focus2.upd 
kwin_fsp_workarounds_1.upd kwin_on_off.upd kwin_window_shortcuts.upd 
kwin_update_tabbox_settings.upd kwin_blacklist.upd DESTINATION  
${KCONF_UPDATE_INSTALL_DIR} )
 -install( PROGRAMS pluginlibFix.pl kwin3_plugin.pl kwin_focus1.sh 
kwin_focus2.sh on-off_to_true-false.sh  kwin_window_shortcuts.sh 
kwin_blacklist.sh DESTINATION  ${KCONF_UPDATE_INSTALL_DIR} )
 +install( PROGRAMS pluginlibFix.pl kwin3_plugin.pl kwin_focus1.sh 
kwin_focus2.sh on-off_to_true-false.sh  kwin_window_shortcuts.sh 
kwin_blacklist.sh kwin_blacklist-opensuse-11.4.pl DESTINATION  
${KCONF_UPDATE_INSTALL_DIR} )
  
-diff --git a/kwin/data/kwin_blacklist-opensuse-11.4.pl 
b/kwin/data/kwin_blacklist-opensuse-11.4.pl
-new file mode 100755
-index 0000000..28a6e63
---- /dev/null
-+++ b/kwin/data/kwin_blacklist-opensuse-11.4.pl
-@@ -0,0 +1,32 @@
+Index: kdebase-workspace-4.6.0/kwin/data/kwin_blacklist-opensuse-11.4.pl
+===================================================================
+--- /dev/null  1970-01-01 00:00:00.000000000 +0000
++++ kdebase-workspace-4.6.0/kwin/data/kwin_blacklist-opensuse-11.4.pl  
2011-02-26 19:02:28.778969843 +0100
+@@ -0,0 +1,17 @@
 +#! /usr/bin/perl
 +
 +use strict;
 +
-+my $currentGroup = "";
-+my $key;
-+my $value;
-+my $i;
-+my $out;
-+my @blacklist;
-+my $found = 0;
-+my $toblacklist = "Mesa DRI Intel(R) 945GM GEM 20100330 DEVELOPMENT 
x86/MMX/SSE2:-:1.4 Mesa 7.10";
++my $out = "Mesa DRI Intel(R) 945GM GEM 20100330 DEVELOPMENT 
x86/MMX/SSE2:-:1.4 Mesa 7.10";
 +while (<>)
 +{
 +    chomp;
-+    ($key, $value) = ($_ =~ /([^=]+)=[ \t]*([^\n]+)/);
-+    if ($_ =~ /Intel/)
++    if ($_ =~ m/^Intel=[ \t]*([^\n]+)$/)
 +    {
-+        @blacklist = split(/,/, $value);
-+        push(@blacklist, $toblacklist);
-+        $value = join(',', @blacklist);
-+        $found = 1;
++        $out = "$out,$1";
 +    }
-+    if (not $found) {
-+        $value = $toblacklist;
-+    }
-+
 +}
 +
 +print("[Blacklist][Blur]\n");
-+print("Intel=$value\n");
++print("Intel=$out\n");
 +
-diff --git a/kwin/data/kwin_blacklist.upd b/kwin/data/kwin_blacklist.upd
-index 59bfda6..160ff9e 100644
---- a/kwin/data/kwin_blacklist.upd
-+++ b/kwin/data/kwin_blacklist.upd
+Index: kdebase-workspace-4.6.0/kwin/data/kwin_blacklist.upd
+===================================================================
+--- kdebase-workspace-4.6.0.orig/kwin/data/kwin_blacklist.upd  2011-01-19 
23:05:20.000000000 +0100
++++ kdebase-workspace-4.6.0/kwin/data/kwin_blacklist.upd       2011-02-26 
19:12:34.456575142 +0100
 @@ -1,3 +1,9 @@
  Id=Blacklist-4.5
  File=kwinrc
  Script=kwin_blacklist.sh,sh
-+Id=Blacklist-openSUSE-11.4
++Id=Blacklist-openSUSE-114
 +Group=[Blacklist][Blur]
 +Options=overwrite
 +File=kwinrc

++++++ plasma-branding-defaults-corona.diff ++++++
--- /var/tmp/diff_new_pack.5S4PrE/_old  2011-02-27 14:47:53.000000000 +0100
+++ /var/tmp/diff_new_pack.5S4PrE/_new  2011-02-27 14:47:53.000000000 +0100
@@ -1,11 +1,14 @@
 Index: 
plasma/desktop/shell/data/layouts/org.kde.plasma-desktop.defaultPanel/contents/layout.js
 ===================================================================
---- 
plasma/desktop/shell/data/layouts/org.kde.plasma-desktop.defaultPanel/contents/layout.js.orig
-+++ 
plasma/desktop/shell/data/layouts/org.kde.plasma-desktop.defaultPanel/contents/layout.js
-@@ -6,6 +6,13 @@ if (panelIds.length == 1) {
+--- 
plasma/desktop/shell/data/layouts/org.kde.plasma-desktop.defaultPanel/contents/layout.js.orig
      2011-01-19 23:05:32.000000000 +0100
++++ 
plasma/desktop/shell/data/layouts/org.kde.plasma-desktop.defaultPanel/contents/layout.js
   2011-02-24 16:02:45.209930414 +0100
+@@ -5,7 +5,15 @@ if (panelIds.length == 1) {
+ }
  
  panel.height = 27
- panel.addWidget("launcher")
+-panel.addWidget("launcher")
++var launcher = panel.addWidget("launcher")
++launcher.globalShortcut = "Alt+F1";
 +// begin SUSE branding
 +panel.addWidget("showdesktop");
 +var firefox = panel.addWidget("icon");



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



Remember to have fun...

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

Reply via email to