]> hydra-www.ietfng.org Git - gtetrinet/commitdiff
Updated docs. Fix a gcc-3.2 warning.
authorJordi Albornoz <jordi@src.gnome.org>
Tue, 7 Jan 2003 17:25:22 +0000 (17:25 +0000)
committerJordi Albornoz <jordi@src.gnome.org>
Tue, 7 Jan 2003 17:25:22 +0000 (17:25 +0000)
ChangeLog
NEWS
TODO
src/config.c

index 8d746dc1e5f80ef3432d9d4750521fe9afe30cd7..27732327e0f037d9e119167a861ff4c6ce812efc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2003-01-07  Jordi Mallach  <jordi@sindominio.net>
+
+       * NEWS: updated for 0.5.2.
+       * TODO: updated.
+
+       * src/config.c: fix a gcc-3.2 warning.
+
 2003-01-07  Jordi Mallach  <jordi@sindominio.net>
 
        * src/client.c: supress compile warnings.
diff --git a/NEWS b/NEWS
index 19979b22aa45d236382bc1d45d5ce86e58ec5ee6..0403da330c30018145c06d76d623ed9a2fd30b72 100644 (file)
--- 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 715e25158b0b5adf7aebb6884b477d4575bbc1ea..2eaf914bf178570980a7ec12f36e3c73f1f7566d 100644 (file)
--- 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
index da7f726ca46b916b5dbfec61b380aa86d26ddbde..b607b0d247cfd87e0e602d0d25cdb412416e866e 100644 (file)
@@ -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"/");