From 425218723aeef2a70a71e996d246c833139db7b6 Mon Sep 17 00:00:00 2001 From: Jordi Albornoz Date: Tue, 7 Jan 2003 17:25:22 +0000 Subject: [PATCH] Updated docs. Fix a gcc-3.2 warning. --- ChangeLog | 7 +++++++ NEWS | 9 +++++++++ TODO | 1 - src/config.c | 4 +++- 4 files changed, 19 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8d746dc..2773232 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-01-07 Jordi Mallach + + * NEWS: updated for 0.5.2. + * TODO: updated. + + * src/config.c: fix a gcc-3.2 warning. + 2003-01-07 Jordi Mallach * src/client.c: supress compile warnings. diff --git a/NEWS b/NEWS index 19979b2..0403da3 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +GTetrinet 0.5.2 - Unreleased +- Fix behaviour of "Ok" button in preferences. It actually works now. +- Added intltool support. +- Dialogs look nicer now, and are HIG compliant. +- Added sanity checks in the connect dialog, in case you include invalid + or no nickname, server name or spectator password. +- Ignore the shift status, so you can use shift keys as game keys. +- Code cleanups. + GTetrinet 0.5.1 - 2003-01-06 - Fix bad bugs in dialog handling which made GTetrinet crash on connect or other situations. diff --git a/TODO b/TODO index 715e251..2eaf914 100644 --- a/TODO +++ b/TODO @@ -5,7 +5,6 @@ GTetrinet's TODO list - GNOME2 port issues: + preferences dialog (gconf) + keybindings - + playfields messages cleared when games start + problem when typing composed letters (รก) in fields messages + port deprecated widgets (-DGTK_DISABLE_DEPRECATED) + detaching and reattaching the Menu Bar causes two Bonobo-CRITICAL diff --git a/src/config.c b/src/config.c index da7f726..b607b0d 100644 --- a/src/config.c +++ b/src/config.c @@ -156,7 +156,9 @@ int config_getthemeinfo (char *themedir, char *name, char *author, char *desc) void config_loadconfig (void) { char *p; - int k, l; + unsigned int k; + int l; + gnome_config_push_prefix ("/"APPID"/"); -- 2.50.1