Minor fixes

This commit is contained in:
Jesse van den Kieboom 2006-04-09 18:18:16 +00:00
parent 41b66885bd
commit e1a0e30bff
3 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2006-09-04 Jesse van den Kieboom <jesse@icecrew.nl>
* 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 <jesse@icecrew.nl>
* VERSION CHANGED TO 2.0.7
* gnoemoe/gm-world.c: fix not logging LOG_OUT

View File

@ -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])

View File

@ -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("<small>", escape_name,
"\n<small><span color=\"", color, "\">",
escape, "</span></small></small>", NULL);
"\n<small><i><span color=\"", color, "\">",
escape, "</span></i></small></small>", NULL);
g_free(status);
g_free(escape);
g_free(escape_name);
} else {
escape = g_markup_escape_text(text, -1);
result = g_strconcat("<small>", escape, "\n<small><span color=\"",
color, "\">", _("Available"), "</span></small></small>",
result = g_strconcat("<small>", escape, "\n<small><i><span color=\"",
color, "\">", _("Available"), "</span></i></small></small>",
NULL);
g_free(escape);
}