+2003-01-08 Jordi Mallach <jordi@sindominio.net>
+
+ * NEWS: updated.
+ * src/dialogs.c (connectingdialog_timeout): apply patch from
+ Ian Zink <zforce@networkusa.net>, fixes a null pointer exception
+ which caused a segfault on connect for many people. Thanks!
+
2003-01-08 Dani Carbonell <bocata@panete.net>
* TODO: remove composed characters problem.
GTetrinet 0.5.2 - Unreleased
+- Fixed segfault on connect dialog many people were seeing. Really.
- 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.
+- Rewrote fields message input field, so it deals with composed characters.
- Code cleanups.
GTetrinet 0.5.1 - 2003-01-06
{
GtkAdjustment *adj;
adj = GTK_PROGRESS(progressbar)->adjustment;
- gtk_progress_set_value (GTK_PROGRESS(progressbar),
- (adj->value+1)>adj->upper ?
- adj->lower : adj->value+1);
+ if (adj != NULL)
+ gtk_progress_set_value (GTK_PROGRESS(progressbar),
+ (adj->value+1)>adj->upper ?
+ adj->lower : adj->value+1);
return TRUE;
}