summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann <sandmann@redhat.com>2008-07-24 20:19:50 +0000
committerSøren Sandmann Pedersen <ssp@src.gnome.org>2008-07-24 20:19:50 +0000
commitbb97264fdde6a0e7dc35df153e4141d4bf6eacde (patch)
tree10aa2f4ed19a982c373c6c8e6998ca9a63d8203c
parent47a1063481d028881cacb04c25db0dd9dfe6598c (diff)
downloadgnome-control-center-GNOME_CONTROL_CENTER_2_23_5.tar.gz
configure.in NEWS Updated for 2.23.5GNOME_CONTROL_CENTER_2_23_5
Thu Jul 24 15:34:50 2008 Søren Sandmann <sandmann@redhat.com> * configure.in * NEWS Updated for 2.23.5 * configure.in, Makefile.am Make typing-break a conditional to make it distcheck svn path=/trunk/; revision=8794
-rw-r--r--ChangeLog9
-rw-r--r--Makefile.am6
-rw-r--r--NEWS47
-rw-r--r--configure.in6
4 files changed, 65 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 154bb30df..b82f240ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Thu Jul 24 15:34:50 2008 Søren Sandmann <sandmann@redhat.com>
+
+ * configure.in
+ * NEWS
+ Updated for 2.23.5
+
+ * configure.in, Makefile.am
+ Make typing-break a conditional to make it distcheck
+
2008-07-18 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in:
diff --git a/Makefile.am b/Makefile.am
index 77e1b118f..1cd362a76 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,8 @@
-SUBDIRS = po libsounds libwindow-settings libslab capplets shell help $(TYPING_BREAK)
+SUBDIRS = po libsounds libwindow-settings libslab capplets shell help
+
+if HAVE_TYPING_BREAK
+SUBDIRS += typing-break
+endif
ACLOCAL_AMFLAGS = -I m4
diff --git a/NEWS b/NEWS
index 5419ef839..1f9fc537a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,50 @@
+gnome-control-center 2.23.5 (2008-07-24)
+
+General:
+- Remove VFS methods code (Rodrigo Moya)
+- Intltool churn (Jens Granseuer, Soren Sandmann)
+- Use standard icon names from icon naming spec (Matthias Clasen,
+ #539339)
+
+Appearance Capplet:
+- Don't delete ~/.icons when deleting the last icon theme
+ (Jens Granseuer, #543763)
+- Add notification themes to the metatheme format (Matthias
+ Clasen, #533611)
+
+Display Capplet:
+- New RandR 1.2 based capplet with support for dual screens and stuff.
+ (Soren Sandmann, Federico Mena Quintero)
+
+Default Applications:
+- Use -x instead of -e as exec_flag for Terminator. (Jens
+ Granseuer, #544058).
+- Install the default apps list in the default-apps subdirectory (Jens Granseuer)
+- Make it possible for apps to install additional XML files to
+ extend the list of available applications (Aprotim Sanyal,
+ #527304).
+
+Mouse Capplet:
+- Decrease lower boundary of dwell delay to 0.2 (Gerd Kohlberger)
+
+Translations:
+- Remove pa.po from toplevel (Gerd Kohlberger)
+- es (Jorge Gonzalez)
+- gl (Ignacio Casal Quinteiro)
+- fr (Bruno Brouard, Claude Paroz)
+- he (Yair Hershkovitz)
+- be@latin (Ihar Hrachyshka)
+- th (Theppitak Karoonboonyanan)
+- oc (Yannig Marchegay)
+- nb (Kjartan Maraas)
+- et (Priit Laes)
+
+Typing Break:
+- Use a modal window (Andrey Gusev, #441786)
+- When postponing a break don't go right back to warn state,
+ but award some bonus time according to the already elapsed break time
+ (Andrey Gusev, #133295).
+-------------------------------------------------------------------------------
gnome-control-center 2.23.4 (2008-06-16)
default applications:
diff --git a/configure.in b/configure.in
index b9f0c2a57..ebe5e8338 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-AC_INIT([gnome-control-center], [2.23.4],
+AC_INIT([gnome-control-center], [2.23.5],
[http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-control-center])
AC_CONFIG_MACRO_DIR([m4])
@@ -36,7 +36,7 @@ changequote([,])dnl
# Internationalization support
-IT_PROG_INTLTOOL([0.40.0])
+IT_PROG_INTLTOOL([0.37.1])
GETTEXT_PACKAGE=gnome-control-center-2.0
AC_SUBST(GETTEXT_PACKAGE)
@@ -68,6 +68,8 @@ AC_CHECK_FUNC(XScreenSaverQueryInfo, [
AC_SUBST(TYPING_BREAK)
AC_SUBST(SCREENSAVER_LIBS)
+AM_CONDITIONAL(HAVE_TYPING_BREAK, test $TYPING_BREAK = typing-break)
+
dnl keyboard-properties-capplet
savecppflags=$CPPFLAGS
CPPFLAGS="$CPPFLAGS $X_CFLAGS"