diff --git a/ChangeLog b/ChangeLog index b85b124..af5eb9a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-09-04 Jesse van den Kieboom + * VERSION CHANGED TO 2.0.8 + * sripts/run.rb: fixed run scripts + * gnoemoe/mcp/gm-mcp-userlist-view.c: italic status messages + 2006-09-04 Jesse van den Kieboom * VERSION CHANGED TO 2.0.7 * gnoemoe/gm-world.c: fix not logging LOG_OUT diff --git a/configure.ac b/configure.ac index 5d776ca..90ce8cd 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT(gnoemoe, 2.0.7, http://www.icecrew.nl/software/gnoemoe) +AC_INIT(gnoemoe, 2.0.8, http://www.icecrew.nl/software/gnoemoe) AC_CONFIG_SRCDIR(gnoemoe/gm-app.c) AC_CONFIG_MACRO_DIR([m4]) diff --git a/gnoemoe/mcp/gm-mcp-userlist-view.c b/gnoemoe/mcp/gm-mcp-userlist-view.c index 358091b..bb50073 100644 --- a/gnoemoe/mcp/gm-mcp-userlist-view.c +++ b/gnoemoe/mcp/gm-mcp-userlist-view.c @@ -373,16 +373,16 @@ gm_mcp_userlist_view_get_name(GmMcpUserlistView *view, gint id) { escape_name = g_markup_escape_text(text, -1); result = g_strconcat("", escape_name, - "\n", - escape, "", NULL); + "\n", + escape, "", NULL); g_free(status); g_free(escape); g_free(escape_name); } else { escape = g_markup_escape_text(text, -1); - result = g_strconcat("", escape, "\n", _("Available"), "", + result = g_strconcat("", escape, "\n", _("Available"), "", NULL); g_free(escape); }