Mailinglist Archive: opensuse-commit (875 mails)

< Previous Next >
commit gnome-main-menu
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Thu, 31 Jul 2008 21:20:42 +0200
  • Message-id: <20080731192042.CC7FE678178@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package gnome-main-menu
checked in at Thu Jul 31 21:20:42 CEST 2008.


--------
--- GNOME/gnome-main-menu/gnome-main-menu.changes 2008-06-26
02:26:36.000000000 +0200
+++ /mounts/work_src_done/STABLE/gnome-main-menu/gnome-main-menu.changes
2008-07-29 20:50:04.163560000 +0200
@@ -1,0 +2,13 @@
+Tue Jul 29 20:58:22 CEST 2008 - captain.magnus@xxxxxxxxxxxx
+
+- Updated to current svn snapshot
+ Fix for BNC#336735 - Set the screen of the slab_window to the same
+ screen as the one for the applet widget.
+ Fix for BNC#262334 - Make sure that we only use a device that has
+ got an ip address.
+ Fix for BNC#393101 - check title for null
+ Fix for BNC#390400 - make places use mime type handler.
+ Fix for BGO#544539 - Fix the build against NetworkManager 0.7 trunk.
+- Add support for GSM and CDMA devices in the Network Status tile
+
+-------------------------------------------------------------------



Old:
----
gnome-main-menu-0.9.10.tar.gz
gnome-main-menu-bnc336735-slab-window-multiscreen.diff
gnome-main-menu-BNC393101.patch

New:
----
gnome-main-menu-0.9.11-r483.tar.gz
gnome-main-menu-bnc402256-no-thumbnailing.diff

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

Other differences:
------------------
++++++ gnome-main-menu.spec ++++++
--- /var/tmp/diff_new_pack.f11251/_old 2008-07-31 21:19:54.000000000 +0200
+++ /var/tmp/diff_new_pack.f11251/_new 2008-07-31 21:19:54.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package gnome-main-menu (Version 0.9.10)
+# spec file for package gnome-main-menu (Version 0.9.11)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -19,14 +19,13 @@
License: GPL v2 or later
Group: System/GUI/GNOME
AutoReqProv: on
-Version: 0.9.10
-Release: 33
+Version: 0.9.11
+Release: 1
Summary: The GNOME Desktop Menu
-Source: %{name}-%{version}.tar.gz
+Source: %{name}-%{version}-r483.tar.gz
Source1: system-items-opensuse.xbel
-Patch: gnome-main-menu-BNC393101.patch
-# PATCH-FIX-UPSTREAM gnome-main-menu-bnc336735-slab-window-multiscreen.diff
bnc336735 federico@xxxxxxxxxx - Set the slab_window on the correct screen
-Patch1: gnome-main-menu-bnc336735-slab-window-multiscreen.diff
+# PATCH-FIX-UPSTREAM gnome-main-menu-bnc402256-no-thumbnailing.diff bnc402256
federico@xxxxxxxxxx - Don't do thumbnailing; let Nautilus handle that instead
+Patch1: gnome-main-menu-bnc402256-no-thumbnailing.diff
Url: http://www.gnome.org
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: gnome-panel dbus-1-glib hal tango-icon-theme wireless-tools
libssui eel
@@ -81,7 +80,6 @@
%lang_package
%prep
%setup -n gnome-main-menu-%{version}
-%patch -p0
%patch1 -p1
cp -f %{S:1} main-menu/etc/system-items.xbel

@@ -154,6 +152,16 @@
%{_prefix}/%{_lib}/nautilus/extensions-1.0/*.la

%changelog
+* Tue Jul 29 2008 captain.magnus@xxxxxxxxxxxx
+- Updated to current svn snapshot
+ Fix for BNC#336735 - Set the screen of the slab_window to the same
+ screen as the one for the applet widget.
+ Fix for BNC#262334 - Make sure that we only use a device that has
+ got an ip address.
+ Fix for BNC#393101 - check title for null
+ Fix for BNC#390400 - make places use mime type handler.
+ Fix for BGO#544539 - Fix the build against NetworkManager 0.7 trunk.
+- Add support for GSM and CDMA devices in the Network Status tile
* Fri Jun 13 2008 federico@xxxxxxxxxx
- Added gnome-main-menu-bnc336735-slab-window-multiscreen.diff to fix
bnc#336735 - the slab window

++++++ gnome-main-menu-bnc402256-no-thumbnailing.diff ++++++
diff --git a/libslab/document-tile.c b/libslab/document-tile.c
index 4587d7f..696ef95 100644
--- a/libslab/document-tile.c
+++ b/libslab/document-tile.c
@@ -424,9 +424,6 @@ load_image (DocumentTile *tile)
{
DocumentTilePrivate *priv = DOCUMENT_TILE_GET_PRIVATE (tile);

- GdkPixbuf *thumb;
- gchar *thumb_path;
-
gchar *icon_id = NULL;
gboolean free_icon_id = TRUE;
GnomeThumbnailFactory *thumbnail_factory;
@@ -445,32 +442,7 @@ load_image (DocumentTile *tile)

thumbnail_factory = libslab_thumbnail_factory_get ();

- thumb_path = gnome_thumbnail_factory_lookup (thumbnail_factory, TILE
(tile)->uri, priv->modified);
-
- if (!thumb_path) {
- if (
- gnome_thumbnail_factory_can_thumbnail (
- thumbnail_factory, TILE (tile)->uri,
priv->mime_type, priv->modified)
- ) {
- thumb = gnome_thumbnail_factory_generate_thumbnail (
- thumbnail_factory, TILE (tile)->uri,
priv->mime_type);
-
- if (thumb) {
- gnome_thumbnail_factory_save_thumbnail (
- thumbnail_factory, thumb, TILE
(tile)->uri, priv->modified);
-
- icon_id = gnome_thumbnail_factory_lookup (
- thumbnail_factory, TILE (tile)->uri,
priv->modified);
-
- g_object_unref (thumb);
- }
- else
- gnome_thumbnail_factory_create_failed_thumbnail
(
- thumbnail_factory, TILE (tile)->uri,
priv->modified);
- }
- }
- else
- icon_id = thumb_path;
+ icon_id = gnome_thumbnail_factory_lookup (thumbnail_factory, TILE
(tile)->uri, priv->modified);

if (! icon_id)
icon_id = gnome_icon_lookup (


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



Remember to have fun...

---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread
  • No further messages