[Pkg-maemo-commits] r110 ./sapwood/debian: * Merged with trunk branch.

Jonny Lamb jonnylamb at jonnylamb.com
Thu Dec 27 08:54:50 UTC 2007


------------------------------------------------------------
revno: 110
committer: Jonny Lamb <jonnylamb at jonnylamb.com>
branch nick: sapwood
timestamp: Thu 2007-12-27 08:54:50 +0000
message:
  * Merged with trunk branch.
modified:
  ChangeLog
  NEWS
  configure.in
  debian/changelog
  src/sapwood-rc-style.c
    ------------------------------------------------------------
    revno: 90.1.41
    committer: tko
    timestamp: Fri 2007-09-21 09:18:46 +0000
    message:
      Speed up parsing a little
      
      2007-09-21  Michael Natterer  <mitch at imendio.com>
      
      	* src/sapwood-rc-style.c (sapwood_rc_style_parse): Speed up parsing a
      	little by replacing g_list_append with prepend
      	(sapwood_rc_style_merge): avoid a memset done by g_list_alloc() by
      	using g_list_append() instead (NB#69921)
    modified:
      ChangeLog
      src/sapwood-rc-style.c
    ------------------------------------------------------------
    revno: 90.1.42
    committer: tko
    timestamp: Tue 2007-09-25 15:22:34 +0000
    message:
      === Release 3.0.0 ===
    modified:
      ChangeLog
      NEWS
      configure.in
    ------------------------------------------------------------
    revno: 90.1.43
    committer: tko
    timestamp: Tue 2007-09-25 15:24:42 +0000
    message:
        * Minor optimizations
    modified:
      debian/changelog
-------------- next part --------------
=== modified file 'ChangeLog'
--- a/ChangeLog	2007-09-17 11:27:34 +0000
+++ b/ChangeLog	2007-09-25 15:22:34 +0000
@@ -1,3 +1,14 @@
+2007-09-25  Tommi Komulainen  <tommi.komulainen at nokia.com>
+
+	* === Release 3.0.0 ===
+
+2007-09-21  Michael Natterer  <mitch at imendio.com>
+
+	* src/sapwood-rc-style.c (sapwood_rc_style_parse): Speed up parsing a
+	little by replacing g_list_append with prepend
+	(sapwood_rc_style_merge): avoid a memset done by g_list_alloc() by
+	using g_list_append() instead (NB#69921)
+
 2007-09-17  Tommi Komulainen  <tommi.komulainen at nokia.com>
 
 	* === Release 2.91.11 ===

=== modified file 'NEWS'
--- a/NEWS	2007-09-17 11:27:34 +0000
+++ b/NEWS	2007-09-25 15:22:34 +0000
@@ -1,3 +1,48 @@
+sapwood 3.0.0 - 2007-09-25
+==========================
+
+Overview of changes from 2.43 and 3.0.0
+---------------------------------------
+
+ * Support for downscaled images (requires gtk+ 2.8 or later)
+ * Documentation for theme maintainers.
+ * Most of the theming special cases moved from gtk+ to sapwood:
+   + 'position' keyword for applying different graphics depending on widget
+      position in the container (relies on additional 'maemo-position-theming'
+      style property on the container)
+   + active/passive focus (GtkTreeView, GtkMenu)
+   + GtkCheckButton and GtkRadioButton focus
+ * Simple wildcard matching for the 'detail' parameter to simplify treeview row
+   ending details theming.
+ * Improved warnings about errors in gtkrc
+
+
+Contributors
+------------
+Jos? Dapena Paz
+Xan Lopez
+Lucas Rocha
+Michael Natterer
+
+
+Bugs fixed
+----------
+NB#60575 - Focus on menu items in others menu is not proper
+NB#61844 - List view headers show multiple arrows
+NB#62512 - sapwood ignores width/height if smaller than the bitmap
+NB#63819 - RSS feed reader applet appears distorted on re-sizing
+NB#64446 - Application menu gets distorted on applying plankton theme again
+NB#66054 - Disabled text is shown two colors in same characters
+NB#69921 - Apply sapwood GList optimization patch
+MB#856 - Sapwood crashes with color depth != 16
+
+
+Bugs fixed since 2.91.11
+------------------------
+NB#69921 - Apply sapwood GList optimization patch
+
+
+
 sapwood 2.91.11 - 2007-09-17
 ============================
 

=== modified file 'configure.in'
--- a/configure.in	2007-09-17 11:27:34 +0000
+++ b/configure.in	2007-09-25 15:22:34 +0000
@@ -1,6 +1,6 @@
 AC_INIT([src/sapwood-server.c])
 AC_CONFIG_HEADERS([config.h])
-AM_INIT_AUTOMAKE(sapwood, 2.91.11)
+AM_INIT_AUTOMAKE(sapwood, 3.0.0)
 
 dnl Initialize maintainer mode
 AM_MAINTAINER_MODE

=== modified file 'debian/changelog'
--- a/debian/changelog	2007-09-21 18:56:36 +0000
+++ b/debian/changelog	2007-12-27 08:54:50 +0000
@@ -1,4 +1,4 @@
-sapwood (2.91.11-1-1) UNRELEASED; urgency=low
+sapwood (3.0.0-1-1) UNRELEASED; urgency=low
 
   [ Jonny Lamb ]
   * Merge with trunk branch.
@@ -28,6 +28,12 @@
 
  -- Jonny Lamb <jonnylamb at jonnylamb.com>  Fri, 21 Sep 2007 19:56:15 +0100
 
+sapwood (3.0.0-1) chinook; urgency=low
+
+  * Minor optimizations
+
+ -- Tommi Komulainen <tommi.komulainen at nokia.com>  Tue, 25 Sep 2007 18:23:44 +0300
+
 sapwood (2.91.11-1) unstable; urgency=low
 
   * Fixes rendering corruption in arrows

=== modified file 'src/sapwood-rc-style.c'
--- a/src/sapwood-rc-style.c	2007-09-11 14:45:47 +0000
+++ b/src/sapwood-rc-style.c	2007-09-21 09:18:46 +0000
@@ -798,7 +798,7 @@
       if (token != G_TOKEN_NONE)
 	return token;
       else
-	sapwood_style->img_list = g_list_append(sapwood_style->img_list, img);
+	sapwood_style->img_list = g_list_prepend(sapwood_style->img_list, img);
 
       token = g_scanner_peek_next_token(scanner);
     }
@@ -807,6 +807,8 @@
 
   g_scanner_set_scope(scanner, old_scope);
 
+  sapwood_style->img_list = g_list_reverse(sapwood_style->img_list);
+
   return G_TOKEN_NONE;
 }
 
@@ -831,9 +833,7 @@
 	    {
 	      if (tmp_list2)
 		{
-		  tmp_list2->next = g_list_alloc();
-		  tmp_list2->next->data = tmp_list1->data;
-		  tmp_list2->next->prev = tmp_list2;
+		  tmp_list2 = g_list_append (tmp_list2, tmp_list1->data);
 		  
 		  tmp_list2 = tmp_list2->next;
 		}



More information about the Pkg-maemo-commits mailing list