# Generated by Makefile. Do not edit.

commit 1f7748b4b91ee45d4e3eb65e7cd177afdd39681d
Author: Peter Hurley <peter@hurleysoftware.com>
Date:   Mon Mar 5 09:46:56 2012 +0100

    panel: Fix position re-shuffling on orientation change
    
    The ButtonWidget widgets of launchers were accidentally triggering
    'EEEEK' code in panel_widget_update_positions.
    
    This can happen when the parent (the PanelWidget) allocation is stale or
    uninitialized. For example, when a panel's orientation is changed (eg,
    via the Properties dialog) and the toplevel initiates a resize, the
    children are queried for preferred height/width. At this point, the
    allocations are stale and reflect the values from the previous
    orientation.
    
    Instead, use the toplevel's specified size as the size of the
    ButtonWidget (accounting for padding in the major direction).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671328

M	gnome-panel/button-widget.c

commit 8986309114f54f1d2eba7e4838ee594b13a97c8f
Author: Peter Hurley <peter@hurleysoftware.com>
Date:   Sun Mar 4 10:00:02 2012 -0500

    panel: Force background redraw of PanelSeparator on orientation change
    
    Force a redraw of the background when the panel orientation has changed
    to ensure the background change is performed even if the allocation
    hasn't changed (for example, if the PanelSeparator is square).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671329

M	gnome-panel/panel-separator.c

commit b518243aff497a795b557245f1ac77b8406ba7d5
Author: Peter Hurley <peter@hurleysoftware.com>
Date:   Sat Mar 3 22:40:09 2012 -0500

    panel: Add class styling for orientation to PanelSeparator
    
    Add class style "horizontal" or "vertical", depending on the panel
    orientation. For example, css selector can be:
    
         PanelSeparator.horizontal {
             padding: 2 3;
         }
    
    Note that a PanelSeparator orientation is the same as the parent panel,
    ie. a PanelSeparator on a top panel will have "horizontal" style.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671329

M	gnome-panel/panel-separator.c

commit f94190fe79d2e697ba216d8b6f84626a1b5470fc
Author: Peter Hurley <peter@hurleysoftware.com>
Date:   Sat Mar 3 17:19:47 2012 -0500

    panel: Size the PanelSeparator by css styling
    
    Instead of using a fixed value of 10 for the width/height of the
    PanelSeparator, compute the size dimensions based on the size of the css
    box dimensions and the enclosed GtkSeparator.
    
    This allows the theme to specify the dimensions to accomplish a
    particular look.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671329

M	gnome-panel/panel-separator.c

commit 792aa870ef9fd6f57af7d07f152c1c987af1a6c2
Author: Peter Hurley <peter@hurleysoftware.com>
Date:   Sat Mar 3 14:43:57 2012 -0500

    panel: Remove unnecessary variable
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671329

M	gnome-panel/panel-separator.c

commit c8a8d21a395c765fb185d6378ac5eb6dca614cb2
Author: Peter Hurley <peter@hurleysoftware.com>
Date:   Sun Mar 4 09:11:26 2012 -0500

    panel: Use GtkSeparator to draw PanelSeparator
    
    Rather than drawing a line in the PanelSeparator, instead use a
    GtkSeparator which allows the theme and themeing engine to customize the
    look.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671329

M	gnome-panel/panel-separator.c

commit 419f41024e58b3eba6bfc93881fce104aca09e63
Author: Peter Hurley <peter@hurleysoftware.com>
Date:   Fri Mar 2 15:45:01 2012 -0500

    panel: Fix themed background pattern
    
    When the panel background is set to None (ie, use system theme), and the
    theme defines a background-image css style for the PanelWidget (with
    -gtk-gradient, for example), a pattern is created (the default_pattern
    member) which is incorrectly drawn in certain areas. The incorrectly
    drawn areas of the panel are regions that are not occupied by child
    widgets. These regions are wiped by GDK (in
    gdk_window_clear_backing_region) to the background pattern previously
    set (in panel_background_prepare).
    
    Although it appears as though no pattern is drawn, in fact the gradient
    pattern *is* drawn, but not scaled properly so that appears as if only
    one gradient value is used to fill.
    
    This patch correctly scales the default_pattern (if present) to the
    width & height of the panel window.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=663397

M	gnome-panel/panel-background.c

commit 3f7d6221a1629b184c88dfa4993f2ce48a90e555
Author: Peter Hurley <peter@hurleysoftware.com>
Date:   Mon Jan 23 23:05:56 2012 -0500

    panel: Fix rendering of the handle in the applet frame widget
    
    We were not drawing the handle with the right rectangle.
    
    We also need to re-scale the background pattern to the rendering
    rectangle.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668573

M	gnome-panel/panel-applet-frame.c

commit a98c69540bda1479da1e357da7ebb58c7b7abd9f
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   Fri Mar 2 13:53:00 2012 +0200

    [l10n] Updated Estonian translation

M	po/et.po

commit 58b4ac88d3d05ecfdc83c4cde3497a126c513e35
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   Wed Feb 29 20:46:44 2012 +0200

    [l10n] Updated Estonian translation

M	po/et.po

commit 00f9870cb28e6ef657d1355f946140074b4551cb
Author: Colin Walters <walters@verbum.org>
Date:   Sun Feb 26 08:02:39 2012 -0500

    build: Fix srcdir != builddir for gresources
    
    There are three fixes here:
    
    1) We need to specify --srcdir=$(srcdir) for the generate-dependencies
       invocation; otherwise it won't know where to find the files that
       the resource file references.
    2) We need to prefix the resource file with $(srcdir) in the $(shell)
       call, because 'make' won't automatically search for it there.
    3) We DON'T need to prefix the resource file with $(srcdir)
       in the build command when using $<, because 'make' will search
       VPATH for it and automatically prefix it.
    
    Yes, this is all confusing.

M	applets/clock/Makefile.am
M	applets/fish/Makefile.am
M	applets/wncklet/Makefile.am
M	gnome-panel/Makefile.am

commit 2e16e95a1c46fbbe30e06ccff83508c52d32295e
Author: OKANO Takayoshi <kano@na.rim.or.jp>
Date:   Fri Feb 24 22:14:17 2012 +0900

    [l10n] Update Japanese translation

M	help/clock/ja/ja.po

commit ad0226e1c9d306344fba53be99f83632632efe4f
Author: Colin Walters <walters@verbum.org>
Date:   Thu Jan 26 18:11:10 2012 -0500

    build: Add --disable-documentation option
    
    Useful for operating system builders who want to avoid cyclic build
    dependencies.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670689

M	configure.ac
M	help/Makefile.am

commit 3d0245ce1f0a6c47c6495e00e6e28945e82c8901
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Feb 22 15:10:25 2012 +0100

    build: Generate ChangeLog on make dist

M	Makefile.am

commit 060aedf18c18cfa47bdb7d88e5f2938b93683d71
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Feb 22 14:59:52 2012 +0100

    build: Update git.mk and ignore generated tarballs

M	Makefile.am
M	git.mk

commit f68f1e8b55b0f721a4cf8e67d9a68551d2bfbbf6
Author: Vincent Untz <vuntz@gnome.org>
Date:   Tue Feb 21 10:48:10 2012 +0100

    release: post-release bump to 3.3.91

M	configure.ac

commit b2c55fae42de23fb5b600700b473f4abf065aeb2
Author: Vincent Untz <vuntz@gnome.org>
Date:   Tue Feb 21 10:48:05 2012 +0100

    release: 3.3.90

M	NEWS