summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS42
-rw-r--r--configure.ac4
-rw-r--r--panels/datetime/cc-datetime-panel.c2
-rw-r--r--panels/display/Makefile.am3
-rw-r--r--panels/printers/cc-printers-panel.c2
-rw-r--r--panels/universal-access/cc-ua-panel.c2
-rw-r--r--panels/user-accounts/um-user-panel.c2
7 files changed, 50 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 30c1cea5a..871320dc7 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 2f41c4154..9a98f5cd3 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 16bb0e82a..327036148 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 d5c640b70..510c676a9 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 9dc64011f..aa2d9f02b 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 9c4a8bac7..f7dca565f 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 707e29493..819fb21f0 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"