+2003-01-06 Jordi Mallach <jordi@sindominio.net>
+
+ * NEWS: updated for 0.5.1.
+ * README: update requirements.
+ * TODO: updated.
+
+ * src/dialogs.c (teamdialog_new): patch from Dani which converts
+ input to UTF-8,
+
2003-01-06 Dani Carbonell <bocata@panete.net>
* src/dialogs.c (prefdialog_new): fixed the code that checks
+GTetrinet 0.5.1 - Unreleased
+- Fix bad bugs in dialog handling which made GTetrinet crash on connect
+ or other situations.
+- Other minor fixes.
+
GTetrinet 0.5.0 - 2003-01-05
- Finally, GNOME2 port!
- The configuration is now read from the ~/.gnome2/gtetrinet file. If you
Requirements
------------
-GTetrinet requires GNOME 1.0 or newer.
+GTetrinet requires GNOME 2.0 or newer.
For sound support, ESD is required. However, GTetrinet can be compiled
without sound support.
+ problem when typing composed letters (รก) in fields messages
+ port deprecated widgets (-DGTK_DISABLE_DEPRECATED)
+ detaching and reattaching the Menu Bar causes two Bonobo-CRITICAL
+ + when using /usr/local as prefix, you get a GDK-CRITICAL on prefs.
- Make gtetrinet resizeable (at least the fields messages bit)
- Write a User Manual
void teamdialog_new (void)
{
GtkWidget *table, *widget, *entry;
+ gchar *team_utf8 = g_locale_to_utf8 (team, -1, NULL, NULL, NULL);
if (team_dialog != NULL)
{
gtk_table_attach_defaults (GTK_TABLE(table), widget, 0, 1, 0, 1);
entry = gnome_entry_new ("Team");
gtk_entry_set_text (GTK_ENTRY(gnome_entry_gtk_entry(GNOME_ENTRY(entry))),
- team);
+ team_utf8);
+ g_free (team_utf8);
gtk_widget_show (entry);
gtk_table_attach_defaults (GTK_TABLE(table), entry, 1, 2, 0, 1);
gtk_widget_show (table);