[gnome-control-center] 2.91.91



commit 5fdc90cc8b04c3224394fee615d265dbb8632616
Author: Bastien Nocera <hadess hadess net>
Date:   Tue Mar 8 11:36:13 2011 +0000

    2.91.91
    
    Fix wrong include lines, so distcheck works

 NEWS                                  |   42 +++++++++++++++++++++++++++++++++
 configure.ac                          |    4 +-
 panels/datetime/cc-datetime-panel.c   |    2 +-
 panels/display/Makefile.am            |    3 +-
 panels/printers/cc-printers-panel.c   |    2 +-
 panels/universal-access/cc-ua-panel.c |    2 +-
 panels/user-accounts/um-user-panel.c  |    2 +-
 7 files changed, 50 insertions(+), 7 deletions(-)
---
diff --git a/NEWS b/NEWS
index 30c1cea..871320d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,46 @@
 =============================
+Version 2.91.91 (2011-03-08)
+=============================
+
+Shell:
+- Reload the list of panels when new ones are added
+
+Date and Time:
+- Use correct order for date widgets when in non-US locales
+
+Info:
+- Look for which device is being driven by the VESA driver
+- Remove (tm) from GNOME logo
+
+Keyboard:
+- Add support for the magnifier zoom in/out shortcuts
+- Fix loading of custom shortcuts
+- Fix initial selection in the shortcut pane
+- Make shortcut conflicts code actually work
+- Fix warning about "editing-canceled"
+- Make repeat rate and speed follow a11y guidelines
+
+Network:
+- Update for recent NetworkManager changes
+
+Printers:
+- Don't show driver version in the model name
+- Add dialogue for adding new printers
+
+Region and Language:
+- Don't block the interface when loading the panel
+- Do not allow adding the same keyboard layout twice
+
+Sound:
+- Fix only starting applet in fallback session
+
+Universal Access:
+- Show actual keyboard shortcuts as defined in Keyboard
+- Make "on-screen keyboard" switch work
+- Fix initial state of typing help
+- Add "smaller text" size
+
+=============================
 Version 2.91.90 (2011-02-22)
 =============================
 
diff --git a/configure.ac b/configure.ac
index 2f41c41..9a98f5c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-m4_define([gnome_control_center_version], 2.91.90)
+m4_define([gnome_control_center_version], 2.91.91)
 AC_INIT([gnome-control-center], [gnome_control_center_version],
         [http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-control-center])
 
@@ -212,7 +212,7 @@ dnl =======================================
 PANELS_DIR="${libdir}/control-center-1/panels"
 AC_SUBST(PANELS_DIR)
 
-PANEL_CFLAGS="-I\$(top_srcdir)/libgnome-control-center/ -DG_LOG_DOMAIN=\"\\\"\$(cappletname)-cc-panel\\\"\""
+PANEL_CFLAGS="-I\$(top_srcdir)/ -DG_LOG_DOMAIN=\"\\\"\$(cappletname)-cc-panel\\\"\""
 AC_SUBST(PANEL_CFLAGS)
 
 PANEL_LIBS="\$(top_builddir)/libgnome-control-center/libgnome-control-center.la"
diff --git a/panels/datetime/cc-datetime-panel.c b/panels/datetime/cc-datetime-panel.c
index 16bb0e8..3270361 100644
--- a/panels/datetime/cc-datetime-panel.c
+++ b/panels/datetime/cc-datetime-panel.c
@@ -24,7 +24,7 @@
 #include <sys/time.h>
 #include "cc-timezone-map.h"
 #include "set-timezone.h"
-#include "cc-lockbutton.h"
+#include "libgnome-control-center/cc-lockbutton.h"
 #include "date-endian.h"
 
 #include <gsettings-desktop-schemas/gdesktop-enums.h>
diff --git a/panels/display/Makefile.am b/panels/display/Makefile.am
index d5c640b..510c676 100644
--- a/panels/display/Makefile.am
+++ b/panels/display/Makefile.am
@@ -49,7 +49,8 @@ desktopdir = $(datadir)/applications
 Desktop_in_files = gnome-display-panel.desktop.in
 desktop_DATA = $(Desktop_in_files:.desktop.in=.desktop)
 
-INCLUDES   = $(DISPLAY_PANEL_CFLAGS) \
+INCLUDES   = $(PANEL_CFLAGS) \
+	     $(DISPLAY_PANEL_CFLAGS) \
 	     -DSBINDIR="\"$(sbindir)\"" \
 	     -DUIDIR="\"$(uidir)\"" \
 	     -DGNOMELOCALEDIR="\"$(datadir)/locale\"" \
diff --git a/panels/printers/cc-printers-panel.c b/panels/printers/cc-printers-panel.c
index 9dc6401..aa2d9f0 100644
--- a/panels/printers/cc-printers-panel.c
+++ b/panels/printers/cc-printers-panel.c
@@ -32,7 +32,7 @@
 
 #include <math.h>
 
-#include "cc-lockbutton.h"
+#include "libgnome-control-center/cc-lockbutton.h"
 #include "pp-new-printer-dialog.h"
 #include "pp-utils.h"
 
diff --git a/panels/universal-access/cc-ua-panel.c b/panels/universal-access/cc-ua-panel.c
index 9c4a8ba..f7dca56 100644
--- a/panels/universal-access/cc-ua-panel.c
+++ b/panels/universal-access/cc-ua-panel.c
@@ -30,7 +30,7 @@
 #include <gconf/gconf-client.h>
 
 #include "eggaccelerators.h"
-#include "gconf-property-editor.h"
+#include "libgnome-control-center/gconf-property-editor.h"
 
 #define WID(b, w) (GtkWidget *) gtk_builder_get_object (b, w)
 
diff --git a/panels/user-accounts/um-user-panel.c b/panels/user-accounts/um-user-panel.c
index 707e294..819fb21 100644
--- a/panels/user-accounts/um-user-panel.c
+++ b/panels/user-accounts/um-user-panel.c
@@ -47,7 +47,7 @@
 #include "um-editable-button.h"
 #include "um-editable-entry.h"
 #include "um-editable-combo.h"
-#include "cc-lockbutton.h"
+#include "libgnome-control-center/cc-lockbutton.h"
 
 #include "um-account-dialog.h"
 #include "um-language-dialog.h"



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]