gnome-panel r10769 - in trunk: . applets applets/clock applets/fish applets/notification_area applets/wncklet doc/reference/panel-applet gnome-panel help idl libpanel-applet po
- From: newren svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-panel r10769 - in trunk: . applets applets/clock applets/fish applets/notification_area applets/wncklet doc/reference/panel-applet gnome-panel help idl libpanel-applet po
- Date: Tue, 29 Jan 2008 18:21:32 +0000 (GMT)
Author: newren
Date: Tue Jan 29 18:21:31 2008
New Revision: 10769
URL: http://svn.gnome.org/viewvc/gnome-panel?rev=10769&view=rev
Log:
2008-01-29 Elijah Newren <newren gmail com>
* NEWS:
* README:
version 2.21.90
Modified:
trunk/ChangeLog
trunk/NEWS
trunk/README
trunk/applets/ChangeLog
trunk/applets/clock/ChangeLog
trunk/applets/fish/ChangeLog
trunk/applets/notification_area/ChangeLog
trunk/applets/wncklet/ChangeLog
trunk/doc/reference/panel-applet/ChangeLog
trunk/gnome-panel/ChangeLog
trunk/gnome-panel/xstuff.c
trunk/help/ChangeLog
trunk/idl/ChangeLog
trunk/libpanel-applet/ChangeLog
trunk/po/ChangeLog
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Tue Jan 29 18:21:31 2008
@@ -1,3 +1,66 @@
+===============
+Version 2.21.90
+===============
+
+ Misc
+
+ * If the name of the user is "Unknown" then display the login name,
+ #509129 (Martin Schoen, Vincent)
+ * Use G_STRFUNC instead of the deprecated G_GNUC_FUNCTION
+ (Christian Persch, Elijah Newren)
+ * Use AM_PROG_CC_C_O for build, #509781 (Christian Kirbach, Vincent)
+ * Add a 48x48 version of gnome-panel.svg, which is one of the
+ more frequently rendered svgs on the desktop. (Matthias
+ Clasen)
+ * look for Locations.xml through pkg-config, #509888. (Patryk
+ Zawadzki)
+
+ Workspace Switcher Applet
+
+ * prevent failure of the set_orientation() or set_n_rows() calls by
+ calling pager_update() a bit later. (Vincent)
+
+ Clock Applet
+
+ Endlessing tweaking/fixing of the build...
+
+ * Fix build by acknowledging libgweather API instability,
+ #509581 (Carlos Carcia Campos)
+ * Fix a typo that broke the build (Kjartan Maraas)
+ * Fix build issue with HAVE_POLKIT (Matthias Clasen)
+ * Fix minor HIGness problems in Prefs dialogue -- spacings,
+ missing mnemonics (Christian Persch) [NOT A BUILD ISSUE!]
+ * Build: Add "--interal" when generating the marshalers
+ (Christian Persch)
+ * Fix compilation when there's no eds support, #509840 (Saleem
+ Abdulrasool)
+ * Build: define where Locations.xml is (via pkg-config),
+ #509888 (Patryk Zawadzki)
+ * Build: Fixes to allow applet mechanism policy strings to be
+ translated, #510635 (Luca Ferretti)
+ * Build: Clean up Makefile.am a bit (Vincent)
+ * Change <message> strings to match the ones from PolicyKit
+ package (Luca Ferretti)
+
+ Translators
+
+ * Jonh Wendell (pt_BR)
+ * Luca Ferretti (it)
+ * Daniel Nylander (sv)
+ * Priit Laes (et)
+ * Petr Kovar (cs)
+ * Inaki Larranaga Murgoitio (eu)
+ * Priit Laes (et)
+ * Kjartan Maraas (nb)
+ * Jorge Gonzalez (es)
+ * Inaki Larranaga Murgoitio (eu)
+ * Krishna Babu K (te)
+ * Espen Stefansen (nb)
+ * Luca Ferretti (it)
+ * Laurent Dhima (sq)
+ * Jorge Gonzalez (es)
+ * Daniel Nylander (sv)
+
==============
Version 2.21.5
==============
Modified: trunk/README
==============================================================================
--- trunk/README (original)
+++ trunk/README Tue Jan 29 18:21:31 2008
@@ -1,5 +1,5 @@
-gnome-panel 2.21.5
-==================
+gnome-panel 2.21.90
+===================
This package is free software and is part of the GNOME 2.0 project.
Modified: trunk/gnome-panel/xstuff.c
==============================================================================
--- trunk/gnome-panel/xstuff.c (original)
+++ trunk/gnome-panel/xstuff.c Tue Jan 29 18:21:31 2008
@@ -93,19 +93,19 @@
requested_type != AnyPropertyType &&
requested_type != type_returned)
{
- g_warning (G_STRFUNC "(): Property has wrong type, probably on crack");
+ g_warning ("%s(): Property has wrong type, probably on crack", G_STRFUNC);
abort++;
}
if (!abort && bytes_after_return)
{
- g_warning (G_STRFUNC "(): Eeek, property has more than %u bytes, stored on harddisk?",
- prop_buffer_lengh);
+ g_warning ("%s(): Eeek, property has more than %u bytes, stored on harddisk?",
+ G_STRFUNC, prop_buffer_lengh);
abort++;
}
if (!abort && expected_format && expected_format != format_returned)
{
- g_warning (G_STRFUNC "(): Expected format (%u) unmatched (%d), programmer was drunk?",
- expected_format, format_returned);
+ g_warning ("%s(): Expected format (%u) unmatched (%d), programmer was drunk?",
+ G_STRFUNC, expected_format, format_returned);
abort++;
}
if (!abort && prop_data && nitems_return && format_returned)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]