[gnome-mud] Port to meson build system



commit fe74dd0da285aa4cb40812883f5f1638ca6f323c
Author: Mart Raudsepp <leio gentoo org>
Date:   Fri Jan 4 19:38:26 2019 +0200

    Port to meson build system
    
    All config.h includes are removed, as it is included for all via
    -include preprocessor argument now.
    Autotools is dropped completely, except for the unused
    gnome-mud-manual bits, as the rest is remaining there too for now.
    Outdated ChangeLog is removed.
    Various autotools standard toplevel files are removed, some others
    are updated.
    
    As a result, we don't depend on intltool anymore, either.

 .gitlab-ci.yml                                     |    9 +-
 ABOUT-NLS                                          |  435 --
 AUTHORS                                            |    1 +
 BUGS                                               |    2 +-
 ChangeLog                                          | 5655 +-------------------
 INSTALL                                            |  291 -
 MAINTAINERS                                        |   16 -
 Makefile.am                                        |   56 -
 README                                             |    7 +-
 ROADMAP                                            |    2 +-
 config.rpath                                       |  512 --
 configure.ac                                       |  174 -
 data/Makefile.am                                   |   18 -
 data/icons/Makefile.am                             |   83 -
 .../16x16/apps/gnome-mud-negative.png}             |  Bin
 .../16x16/apps/gnome-mud-positive.png}             |  Bin
 .../16x16/apps/gnome-mud.png}                      |  Bin
 .../22x22/apps/gnome-mud.png}                      |  Bin
 .../24x24/apps/gnome-mud.png}                      |  Bin
 .../32x32/apps/gnome-mud.png}                      |  Bin
 .../scalable/apps/gnome-mud.svg}                   |    0
 data/icons/meson.build                             |    1 +
 data/meson.build                                   |   25 +
 .../org.gnome.MUD.desktop.in                       |    4 +-
 doc/Makefile.am                                    |    7 -
 doc/meson.build                                    |    4 +
 git.mk                                             |  178 -
 gnome-mud.spec.in                                  |   76 -
 meson.build                                        |   75 +
 meson_options.txt                                  |   17 +
 meson_post_install.sh                              |    9 +
 po/Makevars                                        |   78 -
 po/POTFILES.in                                     |    9 +-
 po/meson.build                                     |    1 +
 src/Makefile.am                                    |  115 -
 src/debug-logger.c                                 |    4 -
 src/gnome-mud.c                                    |    4 -
 src/handlers/Makefile.am                           |   48 -
 src/handlers/meson.build                           |   43 +
 src/handlers/mud-telnet-charset.c                  |    4 -
 src/handlers/mud-telnet-echo.c                     |    4 -
 src/handlers/mud-telnet-eor.c                      |    4 -
 src/handlers/mud-telnet-handler-interface.c        |    4 -
 src/handlers/mud-telnet-handlers.h                 |    4 -
 src/handlers/mud-telnet-mccp.c                     |    9 -
 src/handlers/mud-telnet-msp.c                      |    9 -
 src/handlers/mud-telnet-mssp.c                     |    4 -
 src/handlers/mud-telnet-naws.c                     |    4 -
 src/handlers/mud-telnet-new-environ.c              |    4 -
 src/handlers/mud-telnet-ttype.c                    |    4 -
 src/handlers/mud-telnet-zmp.c                      |    4 -
 src/meson.build                                    |   83 +
 src/mud-character.c                                |    4 -
 src/mud-connection-view.c                          |    4 -
 src/mud-connection-view.h                          |    4 -
 src/mud-connections.c                              |    4 -
 src/mud-line-buffer.c                              |    4 -
 src/mud-log.c                                      |    4 -
 src/mud-mud.c                                      |    4 -
 src/mud-parse-alias.c                              |    4 -
 src/mud-parse-base.c                               |    4 -
 src/mud-parse-trigger.c                            |    4 -
 src/mud-profile-manager.c                          |    5 +-
 src/mud-profile.c                                  |    4 -
 src/mud-regex.c                                    |    4 -
 src/mud-subwindow.c                                |    4 -
 src/mud-telnet.c                                   |    4 -
 src/mud-trigger.c                                  |    4 -
 src/mud-window-prefs.c                             |    6 +-
 src/mud-window-profile.c                           |    4 -
 src/mud-window.c                                   |    6 +-
 src/zmp/Makefile.am                                |   33 -
 src/zmp/meson.build                                |   18 +
 src/zmp/zmp-core.c                                 |    4 -
 src/zmp/zmp-main.c                                 |    1 -
 src/zmp/zmp-package-interface.c                    |    4 -
 src/zmp/zmp-subwindow.c                            |    4 -
 77 files changed, 296 insertions(+), 7949 deletions(-)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8e72e3e..aa7c2bf 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,12 +4,11 @@ stages:
   - build
 
 before_script:
-  - dnf install -y glib2-devel gnome-common gstreamer1-devel
-                   intltool make vte291-devel which
+  - dnf install -y glib2-devel gstreamer1-devel
+                   meson vte291-devel which
 
 build_gnome_mud:
   stage: build
   script:
-    - ./autogen.sh --enable-gstreamer --enable-mccp --enable-debug-logger
-    - make
-    - make install
+    - meson _build -Dgstreamer=enabled -Dmccp=enabled -Ddebug-logger=true
+    - ninja -C _build install
diff --git a/AUTHORS b/AUTHORS
index df08317..9e693ad 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -2,6 +2,7 @@ AUTHOR
 ---------------
 Robin Ericsson <lobbin localhost nu>
 Les Harris <lharris gnome org>
+Mart Raudsepp <leio gentoo org>
 
 Pre 0.11.0 Patches and Improvements
 ---------------------------------
diff --git a/BUGS b/BUGS
index 508a4ab..69bc73c 100644
--- a/BUGS
+++ b/BUGS
@@ -1,4 +1,4 @@
 GNOME-Mud BUGS
 ==============
 
-Please report bugs to GNOME's Bugzilla: http://bugzilla.gnome.org/
+Please report bugs to GNOME's Gitlab: https://gitlab.gnome.org/GNOME/gnome-mud/issues
diff --git a/ChangeLog b/ChangeLog
index 46a36ae..1397dbe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5654 +1 @@
-2009-12-15  Les Harris  <lharris gnome org>
-
-       * src/gnome-mud.c: Purged some debug code that snuck in.
-
-2009-12-11  Les Harris  <lharris gnome org>
-
-       * ui/prefs.glade, ui/muds.glade, ui/main.glade: Set all page_sizes to
-       0 for spinbuttons. Bumped required Gtk+ version to 2.16.
-
-2009-04-18  Les Harris  <lharris gnome org>
-
-       * gnome-mud.doap: New meta information file for the gnome git repo.
-
-2009-03-27  Les Harris  <lharris gnome org>
-
-       * src/mud-profile.h: Readded ScrollOnOutput variables.
-
-2009-03-27  Les Harris  <lharris gnome org>
-
-       * gnome-mud.schemas.in:
-       * src/mud-connection-view.c:
-       * src/mud-profile.c:
-       * src/mud-subwindow.c:
-       * src/mud-window-prefs.c:
-       * ui/prefs.glade: Reverted splitview changes.
-
-2009-03-27  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_network_event_cb),
-       (mud_connection_view_feed_text): Reversed the order of the feeds to
-       the terminals. Fixes a problem where it would appear the 'real'
-       terminal had a screen clear.
-
-2009-03-27  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c: Fixed an issue where the splitview would
-       auto-split when the password entry was hidden.
-       * src/mud-window.c: Added new signal, toggled-off which emits when the
-       password entry is hidden.  Will now only attempt to hide the password
-       entry when it is mapped.
-
-2009-03-27  Les Harris  <lharris gnome org>
-
-       * ui/prefs.glade: Translation string fixes.
-
-2009-03-27  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_constructor):
-       Initially hide the scrollback terminal.
-
-2009-03-27  Les Harris  <lharris gnome org>
-
-       * configure.ac: Added check for glib-mkenums.
-       * gnome-mud.schemas.in: Removed scroll_output schema.
-       * src/Makefile.am: Added the autofoo for glib-mkenums.
-       * src/gnome-mud-builtins.c.template:
-       * src/gnome-mud-builtins.h.template: New files which create GType
-       derived enumerations.
-       * src/gnome-mud-marshallers.list: Added VOID:STRING,UINT
-       * src/gnome-mud.c (main): Added temp trigger debug code, will go away
-       later.
-       * src/mud-connection-view.c: Removed scrolloutput functions. Added
-       second terminal so we can have a split window.
-       * src/mud-line-buffer.[ch]: Added a remove line method.  Changed
-       signals to emit the line added as well.
-       * src/mud-log.c: Updated line_added callback to use new signal
-       prototype. Now pops and inserts spans off the queue when color is
-       enabled and the log closes.
-       * src/mud-window-prefs.c
-       * src/mud-profile.[ch]:
-       * src/mud-subwindow.c: Removed scrolloutput related code.
-       * src/mud-trigger.[ch]: Basic trigger functionality added.
-       * ui/muds.glade: Made connections window center again.
-       * ui/prefs.glade: Removed scroll output checkbox.
-
-2009-03-26  Les Harris  <lharris gnome org>
-
-       * ui/prefs.glade: Marked the encoding list and proxy versions as not
-       translatable.
-
-2009-03-25  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_constructor): Wrapped
-       dl_[hv]box in ENABLE_GST so they are not defined when gstreamer
-       support is not compiled in.
-       * src/mud-log.c (mud_log_create_xterm_colors): Now using VTE's own
-       color cube generation to match the palettes correctly. Now includes
-       stdlib.h.
-
-2009-03-25  Les Harris  <lharris gnome org>
-
-       * src/mud-window-prefs.[ch]: New files which implement the new
-       preference dialog.
-
-2009-03-25  Les Harris  <lharris gnome org>
-
-       * configure.ac: Patch from Sean Middleditch. Added AM_PROG_CC_C_0
-       * src/Makefile.am: Patch from Sean Middleditch. Added ecma48.h.
-       Also removed mud-preferences-window.[ch] and added mud-trigger.[ch]
-       Added -g -Wall -O0 for debugging.
-       * src/mud-trigger.[ch]: New files which will implement the new
-       triggers.
-       * src/handlers/Makefile.am: Added -g -Wall -O0 for debugging.
-       * src/zmp/Makefile.am: Added -g -Wall -O0 for debugging.
-       * src/mud-preferences-window.[ch]: Toasted.
-       * src/debug-logger.c (debug_logger_insert_handler),
-       (debug_logger_get_handler_by_name):
-       * src/gnome-mud.c (main):
-       * src/handlers/mud-telnet-charset.c:
-       * src/handlers/mud-telnet-echo.c:
-       * src/handlers/mud-telnet-eor.c:
-       * src/handlers/mud-telnet-mccp.c (mud_mccp_decompress):
-       * src/handlers/mud-telnet-msp.c (mud_telnet_msp_parse),
-       (mud_telnet_msp_get_files):
-       * src/handlers/mud-telnet-mssp.c (mud_telnet_mssp_handle_sub_neg):
-       * src/handlers/mud-telnet-naws.c (mud_telnet_naws_finalize),
-       (mud_telnet_naws_disable):
-       * src/handlers/mud-telnet-new-environ.c
-       (mud_telnet_newenviron_handle_sub_neg):
-       * src/handlers/mud-telnet-ttype.c:
-       * src/handlers/mud-telnet-zmp.c (mud_telnet_zmp_handle_sub_neg),
-       (mud_zmp_get_function), (mud_zmp_has_package):
-       * src/mud-connection-view.c (choose_profile_callback),
-       (mud_connection_view_network_event_cb), (mud_connection_view_send):
-       * src/mud-connections.c (mud_connections_constructor),
-       (mud_connections_compare_func), (mud_connections_delete_cb):
-       * src/mud-log.c (mud_log_constructor), (mud_log_select_clicked_cb),
-       (mud_log_open), (mud_log_close), (mud_log_write),
-       (mud_log_parse_ecma_color):
-       * src/mud-parse-alias.c (mud_parse_alias_do):
-       * src/mud-parse-base.c:
-       * src/mud-parse-trigger.c (mud_parse_trigger_do):
-       * src/mud-profile-manager.c (mud_profile_manager_delete_profile),
-       (mud_profile_manager_get_profile_by_name):
-       * src/mud-profile.c (mud_profile_constructor),
-       (mud_profile_load_preferences):
-       * src/mud-regex.c (mud_regex_check),
-       (mud_regex_get_substring_list):
-       * src/mud-subwindow.c:
-       * src/mud-telnet.c:
-       * src/mud-tray.c:
-       * src/mud-window-profile.c (mud_profile_window_constructor),
-       (mud_profile_window_add_cb), (mud_profile_window_del_cb),
-       (mud_profile_window_edit_cb), (mud_profile_window_tree_select_cb),
-       (mud_profile_window_populate_treeview):
-       * src/mud-window.c (mud_window_notebook_page_change),
-       (mud_window_preferences_cb), (mud_window_profiles_cb),
-       (mud_window_mconnect_dialog), (mud_window_buffer_cb),
-       (mud_window_remove_connection_view),
-       (mud_window_profile_menu_set_active),
-       (mud_window_populate_profiles_menu):
-       * src/zmp/zmp-core.c:
-       * src/zmp/zmp-main.c:
-       * src/zmp/zmp-subwindow.c (zmp_subwindow_set_input): Numerous small
-       fixes, mostly removing variables, fixing incorrect use of
-       g_return_if_fail, and initializing potentially uninitialized
-       variables. Now compiles cleanly with -Wall
-       * ui/main.glade: Changed 'Preferences' menu item into Profile
-       Preferences.
-       * ui/prefs.glade: New preference ui.
-
-2009-03-23  Les Harris  <lharris gnome org>
-
-       * ui/main.glade: Two strings marked untranslatable. Modified logging
-       window labels for easier translation.
-
-2009-03-23  Les Harris  <lharris gnome org>
-
-       * src/mud-connections.c
-       (mud_connections_property_populate_profiles): Now uses
-       MudProfileManager to properly get the profiles.
-
-2009-03-23  Les Harris  <lharris gnome org>
-
-       * src/Makefile.am: Added mud-profile-manager.[ch], removed
-       gconf-helper.[ch]
-       * src/gconf-helper.[ch]: Removed files.
-       * src/gnome-mud.c (main): Removed call to mud_profile_load_profiles().
-       * src/mud-profile-manager.[ch]: New class which keeps track of the
-       profiles.  This moves this functionality from the profile class
-       itself, kills some globals, and generally makes profiles much nicer to
-       work with.
-       * src/mud-connection-view.c:
-       * src/mud-preferences-window.c:
-       * src/mud-profile.[ch]:
-       * src/mud-window-profile.c:
-       * src/mud-window.[ch]: Updated files to work with MudProfileManager
-       instead of directly on profiles.
-
-2009-03-21  Les Harris  <lharris gnome org>
-
-       * src/mud-log.c (mud_log_parse_ecma_color),
-       (mud_log_write_html_background_span),
-       (mud_log_write_html_xterm_span): Parser now handles
-       \x1b[38|48];5;[0-15]m correctly by dropping down to the standard ecma
-       colors.
-
-2009-03-21  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_disconnect),
-       (mud_connection_view_reconnect), (mud_connection_view_send): Now stops
-       logging on disconnect and reconnect. Added log write hook in send.
-       * src/mud-log.c (mud_log_class_init), (mud_log_init),
-       (mud_log_get_property), (mud_log_append_toggled_cb),
-       (mud_log_input_toggled_cb), (mud_log_color_toggled_cb),
-       (mud_log_open): Can no longer append and include color. A new file
-       must be written.  Now logs input as a default.
-       * ui/main.glade: Added Log Input checkbox in log window.
-
-2009-03-21  Les Harris  <lharris gnome org>
-
-       * src/mud-log.c: Generates the xterm-256 colors rather than manually
-       creating them.
-
-2009-03-21  Les Harris  <lharris gnome org>
-
-       * src/ecma48.h: Added xterm color sequences.
-       * src/mud-log.c: Now supports logging xterm-256 color codes in
-       addition to the ECMA-48 codes.
-
-2009-03-21  Les Harris  <lharris gnome org>
-
-       * src/ecma48.h: New file with some ECMA-48 definitions.
-       * src/mud-log.c: When color is to be logged, it now parses the ecma-48
-       codes and emits an html file rather than the raw color information.
-
-2009-03-21  Les Harris  <lharris gnome org>
-
-       * src/mud-log.c (mud_log_open), (mud_log_close), (mud_log_write):  Now
-       fsyncs after writes and before closing.
-
-2009-03-21  Les Harris  <lharris gnome org>
-
-       * src/mud-log.c (mud_log_next_toggled_cb),
-       (mud_log_prev_toggled_cb): Grab spinbutton focus when toggled on.
-       * ui/main.glade: Made minimum value of log spinbuttons 1.
-
-2009-03-21  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c: Made 'logging' property writable.
-       * src/mud-line-buffer.c (mud_line_buffer_add_data):
-       * src/mud-log.c: Vastly improved our logging facilities. Can choose to
-       include the entire existing buffer before starting, or just a few
-       lines.  Can choose only to log for the next N lines.  Can choose to
-       append or overwrite the mud file.  Can choose to not strip the ECMA-48
-       color information (We should be parsing this into html or something
-       useful).
-       * src/mud-window.[ch]: Save Buffer now properly saves the entire
-       buffer.  Added update_logging_ui function to update logging related ui
-       from the logger.  Checks if the log is actually logging before
-       updating ui. 
-       * ui/main.glade: Added ui for new log features.
-
-2009-03-20  Les Harris  <lharris gnome org>
-
-       * doc/gnome-mud-plugin-api/C/Makefile.am:
-       * doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api-C.omf:
-       * doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api.xml:
-       * doc/gnome-mud-plugin-api/C/monitor.py:
-       * doc/gnome-mud-plugin-api/Makefile.am: Removed old plugin docs.
-       * doc/gnome-mud.6: Updated man page documentation.
-
-2009-03-20  Les Harris  <lharris gnome org>
-
-       * src/handlers/mud-telnet-zmp.c: Explicitly send zmp.indent when zmp
-       is activated.
-       * src/zmp/zmp-core.[ch]: No longer responds to zmp.ident to comply
-       with the ZMP spec.  Now exposes a hashtable populated with the data
-       received from the server's zmp.ident.
-
-2009-03-20  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_send): Setting the
-       command division character to nothing now disables command division
-       rather than crashing gnome-mud horribly.
-
-2009-03-20  Les Harris  <lharris gnome org>
-
-       * data/icons/Makefile.am:
-       * data/icons/hicolor_apps_16x16_gnome-mud-positive.png:
-       * data/icons/hicolor_apps_16x16_gnome-mud-negative.png:
-       * src/gnome-mud-icons.h: Added two new gnomemud stock icons.
-       * src/mud-connection-view.c (mud_connection_view_network_event_cb):
-       Added calls to mud_window_toggle_icon() when data is fed to VTE.
-       * src/mud-window.[ch] (mud_window_notebook_page_change),
-       (mud_window_toggle_tab_icon), (mud_window_add_connection_view),
-       (mud_window_disconnected): Added new function: mud_window_toggle_icon
-       which will change a tab's icon to positive if it receives data while
-       not the current tab.  Updated MudWindow to utilize this to notify the
-       user of activity on muds they aren't looking at.
-
-2009-03-20  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_set_property): Calls
-       mud_window_toggle_input_mode() when local-echo is set.
-       * src/mud-window.[ch] (mud_window_init),
-       (mud_window_grab_entry_focus_cb), (mud_window_entry_keypress),
-       (mud_window_notebook_page_change), (mud_window_configure_event),
-       (mud_window_toggle_input_mode): Added a password entry that is hidden
-       when local echo is enabled.  When the server asks for echo it hides
-       the textview and displays the entry for more secure password input.
-       * ui/main.glade: Added password entry ui.
-
-2009-03-20  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_send): Input history
-       fixes, no longer adds blank lines to the history queue. Now only sends
-       properly terminated lines (\r\n).  If ZMP is enabled, now uses
-       zmp.input to send input to the server.
-       * src/mud-subwindow.c (mud_subwindow_entry_keypress_cb): Updated
-       history code to include fixes from MudConnectionView.
-       * src/zmp/zmp-core.c (zmp_core_register_commands): Now advertise
-       support for zmp.input.
-
-2009-03-19  Les Harris  <lharris gnome org>
-
-       * src/zmp/zmp-subwindow.c (zmp_subwindow_do_input): Pass subwindow
-       identifier as argument 1 of subwindow.input as per spec.
-
-2009-03-19  Les Harris  <lharris gnome org>
-
-       * src/handlers/mud-telnet-naws.c: Added new callback to delete-event.
-       Disconnects resized signal if the main window is closing. Prevents
-       hanging freeze when trying to close the window when a connection has
-       been closed.
-       * src/mud-window.c: Only send resized signal if the window is mapped.
-
-2009-03-18  Les Harris  <lharris gnome org>
-
-       * src/mud-subwindow.c (mud_subwindow_constructor): Show the scrollbar.
-
-2009-03-18  Les Harris  <lharris gnome org>
-
-       * src/mud-subwindow.c (mud_subwindow_class_init),
-       (mud_subwindow_constructed), (mud_subwindow_configure_event_cb),
-       (mud_subwindow_focus_in_cb): Removed map signal and code. Added
-       focus-in callback on terminal to focus the entry.
-
-2009-03-18  Les Harris  <lharris gnome org>
-
-       * configure.ac: Bumped required GTK+ version to 2.14
-
-2009-03-18  Les Harris  <lharris gnome org>
-
-       * src/mud-subwindow.c (mud_subwindow_class_init),
-       (mud_subwindow_constructor), (mud_subwindow_size_allocate_cb):
-       Subwindow size fixes.
-
-2009-03-18  Les Harris  <lharris gnome org>
-
-       * src/mud-subwindow.c (mud_subwindow_constructor),
-       (mud_subwindow_set_terminal_font),
-       (mud_subwindow_set_size_force_grid),
-       (mud_subwindow_update_geometry), (mud_subwindow_mapped_cb),
-       (mud_subwindow_entry_keypress_cb), (mud_subwindow_set_size): Will no
-       longer send blank input if enter is pressed and the input area is
-       hidden.  Only updates window geometry if the window is mapped.  Added
-       callback to map to force grid on VTE when the window is mapped. This
-       hopefully fixes a strange bug where VTE would keep trying to resize to
-       80x25.
-       * src/zmp/zmp-subwindow.c (zmp_subwindow_register_commands),
-       (zmp_subwindow_open), (zmp_subwindow_do_input): Added subwindow.input
-       support. do_input now uses subwindow.input to pass input to the
-       server.
-
-2009-03-18  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.[ch]: Added api for hiding and showing all
-       subwindows attached to the view.
-       * src/mud-subwindow.c: Now uses gdk_window_get_frame_extents to store
-       coordinates on hiding. This ensures it shows in the correct place. Hid
-       cursor display in the subwindow. Added view-hidden property so a view
-       can notify the subwindow that it's been hidden automatically and not
-       by a user.
-       * src/mud-subwindow.h: Made mud_subwindow_show and mud_subwindow_hide
-       public.
-       * src/mud-window.c (mud_window_notebook_page_change): Now closes all
-       the old view's subwindows on page change and shows the new view's.
-
-2009-03-18  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.[ch]: 
-       * src/mud-subwindow.[ch]: Added api for setting input capabilities on
-       a subwindow.
-       * src/zmp/zmp-subwindow.c (zmp_subwindow_register_commands),
-       (zmp_subwindow_set_input), (zmp_subwindow_do_input): Now properly
-       supports subwindow.set-input.  
-
-2009-03-18  Les Harris  <lharris gnome org>
-
-       * src/zmp/zmp-subwindow.c (zmp_subwindow_open): Checks for subwindow
-       visiblity before attempting to show it, updates old-width/old-height
-       before resizing. This prevents spurious subwindow.size's being sent to
-       the server as the terminal gets it's act together.
-
-2009-03-18  Les Harris  <lharris gnome org>
-
-       * src/mud-subwindow.c (mud_subwindow_constructor): MudSubwindows no
-       longer appear in the taskbar or pager. Additionally, they are set
-       transient for the main window so when it is minimized they dissapear
-       too.
-
-2009-03-18  Les Harris  <lharris gnome org>
-
-       * src/mud-subwindow.c (mud_subwindow_size_allocate_cb): Wrapped in a
-       GTK_WIDGET_MAPPED block so we don't send irrelevant values.
-
-2009-03-18  Les Harris  <lharris gnome org>
-
-       * src/mud-subwindow.c: Connected to size-allocate to send the resized
-       signal. This ensures the terminal is properly sized. Added old-width
-       and old-height properties.
-       * src/mud-window.c: Changed to size-allocate for the resized signal as
-       in mud-subwindow.c. This fixes gnome-mud sending stale naws values.
-       * src/zmp/zmp-subwindow.c: Now checks against MudSubwindows old-width
-       and old-height values to ensure subwindow.size is only sent once at
-       the proper times.
-
-2009-03-18  Les Harris  <lharris gnome org>
-
-       * src/mud-subwindow.c (mud_subwindow_constructor): Sets the window
-       width and height again after the profile read as it might have
-       changed.
-       * src/zmp/zmp-subwindow.c (zmp_subwindow_open): Now explicity sends
-       the window size rather than relying on the callback on window open.
-
-2009-03-18  Les Harris  <lharris gnome org>
-
-       * src/mud-subwindow.c (mud_subwindow_set_property),
-       (mud_subwindow_set_terminal_font): Removed debug logging. Now updates
-       VTE grid when font is changed.
-       * src/zmp/zmp-subwindow.c (zmp_subwindow_open): Now displays the
-       window before attempting to resize.  This allows the vte terminal to
-       resize properly.
-
-2009-03-17  Les Harris  <lharris gnome org>
-
-       * src/Makefile.am: Added mud-subwindow.[ch]
-       * src/mud-subwindow.[ch]: New files which implement a sub-output
-       window.
-       * src/gnome-mud-marshallers.list: Added VOID:UINT,UINT
-       * src/handlers/mud-telnet-zmp.c: Added property for ZmpMain.
-       * src/mud-connection-view.[ch]: Added api which creates and manages
-       subwindows.
-       * src/zmp/zmp-core.c: Added property to parent MudTelnetZMP
-       * src/zmp/zmp-main.[ch]: Added zmp_main_get_package_by_name
-       * src/zmp/zmp-package-interface.c: Added parent MudTelnetZMP property.
-       * src/zmp/zmp-subwindow.[ch]: Implements the zmp subwindow package.
-       * ui/main.glade: Added ui for MudSubwindow.
-
-2009-03-17  Les Harris  <lharris gnome org>
-
-       * src/handlers/mud-telnet-zmp.c: Now uses ZmpMain to query for zmp
-       packages.
-       * src/handlers/mud-telnet-zmp.h: Made some methods public for
-       ZmpPackages to use.
-       * src/zmp/Makefile.am: Added zmp-core.[ch], zmp-main.[ch],
-       zmp-package-interface.[ch], zmp-subwindow.[ch]
-       * src/zmp/zmp-core.[ch]:
-       * src/zmp/zmp-main.[ch]: Manager class that manages ZmpPackages.
-       * src/zmp/zmp-package-interface.[ch]: New files which implement
-       ZmpPackageInterface which is used by all ZmpPackages.
-       * src/zmp/zmp-package-interface.h:
-       * src/zmp/zmp-subwindow.[ch]: Skeleton for zmp subwindow package
-       support.
-
-2009-03-17  Les Harris  <lharris gnome org>
-
-       * autogen.sh: Updated to newest.
-       * configure.ac: Added AC_PROG_LIBTOOL. Added entries for
-       handlers/Makefile and zmp/Makefile
-       * src/Makefile.am: Telnet Handlers and ZMP packages (that are
-       implemented in C as part of gnome-mud) are now compiled as static
-       libraries and linked in. Cleans up the src dir quite a bit.
-       * src/handlers/mud-telnet-handlers.h: New file which includes the
-       headers for all the telnet handlers.
-       * src/handlers/Makefile.am:
-       * src/zmp/Makefile.am: New files with the autofoo for the static
-       libraries.
-       * src/mud-connection-view.c:
-       * src/mud-telnet.[ch]: Updated to include mud-telnet-handlers.h
-       * src/mud-telnet-charset.c:
-       * src/mud-telnet-charset.h:
-       * src/mud-telnet-echo.c:
-       * src/mud-telnet-echo.h:
-       * src/mud-telnet-eor.c:
-       * src/mud-telnet-eor.h:
-       * src/mud-telnet-handler-interface.c:
-       * src/mud-telnet-handler-interface.h:
-       * src/mud-telnet-mccp.c:
-       * src/mud-telnet-mccp.h:
-       * src/mud-telnet-msp.c:
-       * src/mud-telnet-msp.h:
-       * src/mud-telnet-mssp.c:
-       * src/mud-telnet-mssp.h:
-       * src/mud-telnet-naws.c:
-       * src/mud-telnet-naws.h:
-       * src/mud-telnet-new-environ.c:
-       * src/mud-telnet-new-environ.h:
-       * src/mud-telnet-ttype.c:
-       * src/mud-telnet-ttype.h:
-       * src/mud-telnet-zmp.c:
-       * src/mud-telnet-zmp.h: Moved files to src/handlers.
-
-2009-03-16  Les Harris  <lharris gnome org>
-
-       * configure.ac: Added check for glib-genmarshal
-       * src/Makefile.am: Added autofoo to generate gnome-mud-marshaller.[ch]
-       from gnome-mud-marshallers.list
-       * src/gnome-mud-marshallers.list: New file which gets fed to
-       glib-genmarshal to produce our custom marshallers.
-       * src/mud-connection-view.[ch] (mud_connection_view_class_init),
-       (mud_connection_view_init), (mud_connection_view_set_property),
-       (mud_connection_view_get_property),
-       (mud_connection_view_reconnect): Removed NAWS related code.
-       * src/mud-line-buffer.[ch]: New files which implement a line buffer.
-       * src/mud-telnet-charset.c (mud_telnet_charset_handle_sub_neg): Moved
-       sending to prevent possible crash on NULL.
-       * src/mud-telnet-naws.[ch]: Consolidated all NAWS code into this file.
-       Public interface no longer necessary.
-       * src/mud-telnet-new-environ.c
-       (mud_telnet_newenviron_handle_sub_neg): Removed logging.
-       * src/mud-telnet.[ch]: Removed NAWS related code.
-       * src/mud-window.c: Added resized signal which emits on window resize.
-
-2009-03-14  Les Harris  <lharris gnome org>
-
-       * src/mud-telnet-mssp.c:
-       * src/mud-telnet-new-environ.c: Don't include TEL_SE in parsing
-       key/value pairs.
-
-2009-03-14  Les Harris  <lharris gnome org>
-
-       * src/mud-window.c (mud_window_remove_connection_view): Unref the
-       current view before removing the page so the page changed signal
-       updates the current view properly. Fixes crash on tab close.
-
-2009-03-14  Les Harris  <lharris gnome org>
-
-       * src/Makefile.am: Added mud-telnet-new-environ.[ch]
-       * src/mud-telnet-new-environ.[ch]: New files which implement the
-       NEW-ENVIRON telnet option.
-       * src/mud-telnet.c (mud_telnet_register_handlers): Register the
-       NEW-ENVIRON handler.
-       * src/mud-telnet.h: Added NEW-ENVIRON option defines.
-
-2009-03-14  Les Harris  <lharris gnome org>
-
-       * src/mud-telnet-mssp.c: I was looking at a stale spec when first
-       coding. Updated mssp parsing to handle multiple val's per var. 
-
-2009-03-14  Les Harris  <lharris gnome org>
-
-       * src/Makefile.am: Added src/mud-telnet-mssp.[ch]
-       * src/mud-telnet-mssp.[ch]: New files which implement the Mud Server
-       Status Protocol (MSSP) We don't really do anything with this
-       information at the moment except expose it as a hashtable. Plugins
-       might find it useful.
-       * src/mud-telnet.c: Now creates a MSSP handler.
-       * src/mud-telnet.h: Added MSSP option defines.
-
-2009-03-14  Les Harris  <lharris gnome org>
-
-       * src/mud-telnet-zmp.c (mud_telnet_zmp_handle_sub_neg),
-       (ZMP_check): Improved creation of argv for ZMP commands. Added check
-       for malformed ZMP_check command to prevent crash.
-       * src/mud-telnet.c (mud_telnet_process): Moved MCCP related code into
-       an ENABlE_MCCP block
-       * src/mud-telnet.h: Increased subneg buffer size to 16k
-
-2009-03-13  Les Harris  <lharris gnome org>
-
-       * src/mud-telnet.c: Poll for mccp-new in main processing loop. This
-       prevents MCCP corruption when it is disabled and then reenabled.
-
-2009-03-13  Les Harris  <lharris gnome org>
-
-       * AUTHORS: Added self.
-       * configure.ac: Removed some stale checks.
-       * src/Makefile.am: Removed mud-telnet-handlers.[ch]. Added new files.
-       * src/mud-telnet-handlers.[ch]: Deleted files.
-       * src/gnome-mud.c (main): Use g_get_user_data_dir and G_DIR_SEPARATOR
-       to locate the config directory.
-       * src/mud-connection-view.[ch]: Updated GObject Code. Added numerous
-       parameters and removed accessor functions when they were made
-       redundant.
-       * src/mud-connections.[ch]: Updated calls to instantiate
-       MudConnectionView. Fixed input history bug, should now behave
-       properly.
-       * src/mud-parse-alias.[ch]:
-       * src/mud-parse-base.[ch]:
-       * src/mud-regex.[ch]:
-       * src/mud-parse-trigger.[ch]: Updated GObject Code.  Simplified API
-       for eventual MudRegex removal.
-       * src/mud-profile.[ch] (mud_profile_new): Changed type to
-       MUD_TYPE_PROFILE.
-       * src/mud-telnet.[ch]: Updated GObject code.  Rearchitected telnet
-       handler code.  Now all handlers implement the MudTelnetHandler
-       interface. All handlers are now stored in a hashtable keyed off their
-       option number.  The main win is that now TelnetHandlers can store
-       their own state without cluttering up MudTelnet.
-       * src/mud-telnet-handler-interface.[ch]: New interface base class for
-       telnet handlers.
-       * src/mud-telnet-charset.[ch]:
-       * src/mud-telnet-echo.[ch]:
-       * src/mud-telnet-eor.[ch]:
-       * src/mud-telnet-mccp.[ch]:
-       * src/mud-telnet-msp.[ch]:
-       * src/mud-telnet-naws.[ch]:
-       * src/mud-telnet-ttype.[ch]:
-       * src/mud-telnet-zmp.[ch]: New and updated files.  These implement the
-       various telnet option handlers.  All of these implement
-       MudTelnetHandlerInterface and can be treated generically as a
-       MudTelnetHandler.
-       * src/mud-tray.c (mud_tray_constructor): Removed unused variable.
-       * src/mud-window-profile.c (mud_profile_window_class_init): Updated
-       MudWindow type.
-       * src/mud-window.[ch]: Updated to use MudConnectionView properties
-       rather than accessor functions. Removed use of useless MudViewEntry
-       type.
-       * src/utils.[ch] (utils_remove_whitespace), (utils_str_replace),
-       (utils_strip_ansi):  Fixed a possible crash in remove_whitespace by
-       deffering the strlen() til after checking for NULL.  Moved str_replace
-       to here, better place for it. Need to rewrite it.  Closed possible
-       memory leak in strip_ansi.
-
-2009-03-09  Les Harris  <lharris gnome org>
-
-       * src/debug-logger.c (debug_logger_log_func): Handle
-       G_LOG_LEVEL_ERROR.
-       * src/mud-connection-view.c (mud_connection_view_new): Changed log
-       instantiation.
-       * src/mud-connections.c (mud_connections_delete_cb): Free the
-       selection properly before returning.
-       * src/mud-log.[ch]: Made into a better GObject. Uses properties,
-       removed explicit construction function.
-       * src/mud-telnet.c (mud_telnet_process),
-       (mud_telnet_get_telopt_string): Formatting cleanups.
-       * src/mud-tray.c (mud_tray_constructor): Print g_error to console.
-       * src/mud-window-profile.[ch]: Made into a better GObject. Uses
-       properties, removed explicit construction function.
-       * src/mud-window.[ch] (mud_window_profiles_cb),
-       (mud_window_buffer_cb): Use our utility error dialog for error,
-       changed profile window instatiation. Removed mud_window_get_window,
-       users of that function now get the window from the property.
-
-2009-03-06  Les Harris  <lharris gnome org>
-
-       * src/debug-logger.[ch]: Removed ifdefs from inside class. Added api
-       for creation of ui.
-       * src/gnome-mud.c (main): Now calls debug_logger_add_standard_domain
-       * src/mud-connections.[ch]: 
-       * src/mud-tray.[ch]:
-       * src/mud-window.[ch]: Updated to be better gobjects.  Now use
-       parameters for some needed things. Modernized the gobject code.
-       * src/utils.[ch]: Renamed a couple of functions for consistency.
-
-2009-03-04  Les Harris  <lharris gnome org>
-
-       * Makefile.am: Removed plugins subdir.
-       * PLUGIN.API: Toasted
-       * configure.ac: Removed plugins makefile
-       * src/Makefile.am: Removed plugin files.
-       * src/gnome-mud.c (main):
-       * src/modules-structures.h:
-       * src/modules.c:
-       * src/modules.h:
-       * src/modules_api.c:
-       * src/modules_api.h: Removed plugins files.
-       * src/mud-connection-view.c (mud_connection_view_send),
-       (mud_connection_view_network_event_cb):
-       * src/mud-window.[ch] (mud_window_init): Removed plugin related code.
-       * ui/main.glade: Removed plugin ui.
-
-2009-03-04  Les Harris  <lharris gnome org>
-
-       * configure.ac:
-       * src/gnome-mud.c:
-       * src/gnome-mud.h:
-       * src/mud-connections.c:
-       * src/mud-connections.h:
-       * src/mud-log.c:
-       * src/mud-log.h:
-       * src/mud-parse-alias.c:
-       * src/mud-parse-alias.h:
-       * src/mud-parse-base.c:
-       * src/mud-parse-base.h:
-       * src/mud-parse-trigger.c:
-       * src/mud-parse-trigger.h:
-       * src/mud-preferences-window.c:
-       * src/mud-preferences-window.h:
-       * src/mud-profile.c:
-       * src/mud-profile.h:
-       * src/mud-regex.c:
-       * src/mud-regex.h:
-       * src/mud-telnet-handlers.c:
-       * src/mud-telnet-handlers.h:
-       * src/mud-telnet-mccp.c:
-       * src/mud-telnet-mccp.h:
-       * src/mud-telnet-msp.c:
-       * src/mud-telnet-msp.h:
-       * src/mud-telnet-zmp.c:
-       * src/mud-telnet-zmp.h:
-       * src/mud-telnet.c:
-       * src/mud-telnet.h:
-       * src/mud-tray.c:
-       * src/mud-tray.h:
-       * src/mud-window-profile.c:
-       * src/mud-window-profile.h:
-       * src/mud-window.c:
-       * src/mud-window.h:
-       * src/utils.c:
-       * src/utils.h: Updated copyright information, added copyright and
-       license preamble where missing.
-
-2009-03-04  Les Harris  <lharris gnome org>
-
-       * src/debug-logger.[ch]: Added some new signals to the logger obejct. 
-       * src/gnome-mud.c (main): Allocated the mud window without a
-       constructor.
-       * src/mud-connection-view.[ch]: (mud_connection_view_init),
-       (mud_connection_view_reread_profile),
-       (mud_connection_view_profile_changed_cb),
-       (mud_connection_view_new), (mud_connection_view_send_naws),
-       (mud_connection_view_resized_cb): Removed some useless variables,
-       changed MUD_TYPE_CONNECTION_VIEW to TYPE_MUD_CONNECTION_VIEW. Playing
-       with NAWS stuff, techically it's broken atm (but it will appear to
-       work fine, it'll just spam the server whenever the window is moved)
-       * src/mud-connections.c (mud_connections_connect_cb),
-       (mud_connections_qconnect_cb): Reverted function call to older
-       version.
-       * src/mud-parse-alias.c: Added needed include.
-       * src/mud-profile.[ch] (mud_profile_finalize), (mud_profile_new): Base
-       work done to refactor this into a nicer gobject. Closed some memory
-       leaks.
-       * src/mud-telnet.c (mud_telnet_init), (mud_telnet_new): Did some base
-       line work in order to later update the MudTelnet object.
-       * src/mud-window.[ch]: Modernized the gobject stuff quite a bit, made
-       code less of a mess.  First step on more refactoring.
-
-2009-03-01  Les Harris  <lharris gnome org>
-
-       * src/debug-logger.c (debug_logger_init),
-       (debug_logger_switch_page), (debug_logger_log_func),
-       (debug_logger_add_domain), (debug_logger_remove_domain): Added
-       graphical status icon in tabs to show if text has been added in the
-       background.
-       * src/gnome-mud.c (main): Added Gtk, Glib, and GObject error domains.
-       * ui/main.glade: Set Clear button default insensitive.
-
-2009-03-01  Les Harris  <lharris gnome org>
-
-       * src/gnome-mud.c (main): Removed faux errors and messages.
-       * src/mud-telnet-handlers.c (MudHandler_MCCP_Enable),
-       (MudHandler_MCCP_Disable), (MudHandler_MCCP_HandleSubNeg): Log the
-       various MCCP states.
-
-2009-03-01  Les Harris  <lharris gnome org>
-
-       * src/debug-logger.c (debug_logger_init),
-       (debug_logger_clear_clicked): Can now clear the log.
-       * ui/main.glade: Added Clear button to logger.
-
-2009-03-01  Les Harris  <lharris gnome org>
-
-       * src/debug-logger.c (debug_logger_log_func): Now scrolls to the
-       newest item.
-       * src/gnome-mud.c (main): Fixed use-color property setting.
-       * src/mud-telnet-handlers.c (MudHandler_ZMP_HandleSubNeg):
-       * src/mud-telnet-msp.c (mud_telnet_msp_process_command):
-       * src/mud-telnet-zmp.c (mud_zmp_send_command):
-       * src/mud-telnet.c (mud_telnet_send_charset_req),
-       (mud_telnet_send_sub_req), (mud_telnet_handle_positive_nego),
-       (mud_telnet_handle_negative_nego): Added logging.
-
-2009-03-01  Les Harris  <lharris gnome org>
-
-       * src/debug-logger.c (debug_logger_get_property): Added get method for
-       use-color property.
-
-2009-03-01  Les Harris  <lharris gnome org>
-
-       * src/debug-logger.[ch] (debug_logger_init),
-       (debug_logger_class_init), (debug_logger_set_property),
-       (debug_logger_get_property), (debug_logger_copy_clicked),
-       (debug_logger_log_func): Added parameters for color use and color
-       customization.
-       * src/gnome-mud.c (main): Enable colored output in logger.
-
-2009-02-28  Les Harris  <lharris gnome org>
-
-       * src/debug-logger.c (debug_logger_init), (debug_logger_finalize),
-       (debug_logger_save_clicked), (debug_logger_copy_clicked),
-       (debug_logger_select_clicked), (debug_logger_log_func),
-       (debug_logger_add_domain), (debug_logger_remove_domain): Now frees
-       domain handlers on remove.  UI dims/undims as needed. Added Type
-       column in treeview.  Wrapped text in gettext macros.
-       * src/gnome-mud.c (main): Temp log spam added.
-       * ui/main.glade: Added accelerators for the debug logger's ui.
-
-2009-02-28  Les Harris  <lharris gnome org>
-
-       * configure.ac: Added autofoo for debug logger, off by default.
-       * src/Makefile.am: Autofoo for debug logger.
-       * src/debug-logger.[ch]: New files which implement the debug logger. 
-       * src/gnome-mud.c (main): Now creates two logger domains.
-       * src/mud-telnet-mccp.c (mud_mccp_decompress): Changed mccp
-       decompression back to faster method.
-       * src/mud-telnet.c (mud_telnet_process),
-       (mud_telnet_get_telopt_string): Changed logging to use new logger,
-       added more debug info in telopt_string.
-       * ui/Makefile.am:
-       * ui/directions.glade: Removed directions.glade.
-       * ui/main.glade: Added ui for debug logger.
-
-2009-02-27  Les Harris  <lharris gnome org>
-
-       * src/mud-telnet-mccp.c (mud_mccp_decompress): Reverted MCCP code.
-
-2009-02-27  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: Updated for 0.11.2.
-
-       * Makefile.am, configure.ac: Stop generating a .lsm file for ibiblio.
-       * gnome-mud.lsm.in: Removed.
-
-       * configure.ac: Release gnome-mud 0.11.2.
-
-2009-02-27  Les Harris  <lharris gnome org>
-
-       * src/mud-telnet-mccp.c (mud_mccp_decompress): Replaced character
-       iteration with g_string_append_len.
-       * ui/prefs.glade: Set the left treeview to no expand so the ui on the
-       right expands properly.
-
-2009-02-27  Les Harris  <lharris gnome org>
-
-       * gnome-mud.schemas.in: Pruned unused keys from schema.
-       * plugins/Makefile.am:
-       * plugins/automapper/Makefile:
-       * plugins/automapper/directions.h:
-       * plugins/automapper/map-link.c:
-       * plugins/automapper/map.c:
-       * plugins/automapper/map.h: Removed old automapper.
-       * src/gconf-helper.c (gm_gconf_load_preferences):
-       * src/mud-profile.c (mud_profile_finalize),
-       (mud_profile_copy_preferences), (mud_profile_gconf_changed): Removed
-       code that accessed unused keys.
-       * src/mud-window.c (mud_window_init): Removed Quick Connect.
-       * ui/Makefile.am: Removed connect.glade.
-       * ui/connect.glade: Removed file.
-       * ui/main.glade: Removed quick connect from menu.
-       * ui/muds.glade: Added space between port spinbutton and connect
-       button.
-
-2009-02-27  Les Harris  <lharris gnome org>
-
-       * ui/muds.glade: Put the custom connect ui into a GtkExpander.
-
-2009-02-27  Les Harris  <lharris gnome org>
-
-       * src/mud-preferences-window.c
-       (mud_preferences_window_fill_profiles): Preference window now auto
-       selects the default functionality pane on opening.
-
-2009-02-27  Les Harris  <lharris gnome org>
-
-       * src/gconf-helper.c (gm_gconf_load_preferences): Formatting, closed
-       leak.
-       * src/gnome-mud.c (main): Create .gnome-mud dir.
-       * src/modules.c: Closed leak.
-       * src/mud-connection-view.c (mud_connection_view_new),
-       (mud_connection_view_http_cb): Allocate the mud name into the view.
-       * src/mud-parse-trigger.c (mud_parse_trigger_init): Formatting fixes.
-       * src/mud-profile.c: Closed memory leaks, formatting changes.
-       * src/mud-telnet-msp.c (mud_telnet_msp_parse),
-       (mud_telnet_msp_get_files): Completely disabled T parameter,
-       formatting.
-       * src/mud-telnet.c (mud_telnet_process): Closed memory leak.
-       * src/mud-window.[ch] (mud_window_textview_keypress),
-       (mud_window_about_cb), (mud_window_finalize), (mud_window_new): Added
-       missing comma, removed use of a gconf client stored in private.
-       * ui/muds.glade: Marked untranslatable string as such.
-
-2009-02-27  Jordi Mallach  <jordi sindominio net>
-
-       * src/mud-window.c mud_window_about_cb): Add Les Harris to the
-       about dialog Copyright credits, and Mart Raudsepp to author credits.
-
-2009-02-24  Les Harris  <lharris gnome org>
-
-       * src/mud-connections.c (mud_connections_init),
-       (mud_connections_finalize), (mud_connections_qconnect_cb),
-       (mud_connections_delete_cb), (mud_connections_properties_cb): Closed
-       some memory leaks. Now deletes characters properly without deleting
-       the entire mud. Added quick connect.
-       * src/mud-telnet-msp.c (mud_telnet_msp_parse),
-       (mud_telnet_msp_get_files): Disabled Zone in filepath for now since
-       all MSP muds seems to ignore the standard.
-       * src/mud-telnet.h: Increased subreq buffer to 2k
-       * ui/muds.glade: Added quickconnect ui.
-
-2009-02-24  Les Harris  <lharris gnome org>
-       * src/mud_connection_view.c (mud_connection_view_reconnect),
-       (mud_connection_view_send), (mud_connection_view_new),
-       (mud_connection_view_queue_download): GConfClient Leak Fix
-       * src/mud-preferences-window.c
-       (mud_preferences_window_trigger_select_cb),
-       (mud_preferences_window_alias_select_cb),
-       (mud_preferences_window_trigger_enabled_toggle_cb),
-       (mud_preferences_window_trigger_gag_toggle_cb),
-       (mud_preferences_window_alias_enabled_toggle_cb),
-       (mud_preferences_window_trigger_del_cb),
-       (mud_preferences_window_alias_del_cb),
-       (mud_preferences_window_trigger_ok_cb),
-       (mud_preferences_window_alias_ok_cb),
-       (mud_preferences_window_populate_trigger_treeview),
-       (mud_preferences_window_populate_alias_treeview),
-       (mud_preferences_window_update_proxy_combo): Formatting, Gconf Client
-       Leak Fix
-       * src/mud-profile.c (mud_profile_finalize), (mud_profile_delete),
-       (mud_profile_new), (mud_profile_gconf_changed): Formatting,
-       GconfClient Leak Fix
-       * src/mud-telnet-handlers.c (MudHandler_ZMP_HandleSubNeg): GString
-       fix.
-       * src/mud-window.c (mud_window_finalize): GConfClient Leak Fix
-
-2009-02-22  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_finalize),
-       (mud_connection_view_disconnect), (mud_connection_view_reconnect),
-       (mud_connection_view_network_event_cb): Closed memory leaks.
-       * src/mud-log.c (mud_log_finalize), (mud_log_write), (mud_log_new):
-       Log no longer erroneously reports write failures.  GString fixes.
-       Closed memory leaks.
-       * src/mud-parse-alias.c (mud_parse_alias_finalize),
-       (mud_parse_alias_do), (mud_parse_alias_new): Closed memory leaks.
-       * src/mud-parse-base.c (mud_parse_base_finalize),
-       (mud_parse_base_parse): Closed memory leaks.
-       * src/mud-parse-trigger.c (mud_parse_trigger_do),
-       (mud_parse_trigger_new): Closed memory leaks.
-       * src/mud-regex.c (mud_regex_finalize): Free substring array if it
-       exists.
-       * src/mud-telnet-handlers.c (MudHandler_CHARSET_HandleSubNeg),
-       (MudHandler_ZMP_HandleSubNeg): GString fixes
-       * src/mud-telnet-msp.[ch]: Added function to allow sound to be stopped
-       externally of a MSP command.
-       * src/mud-telnet.[ch] (mud_telnet_init), (mud_telnet_finalize),
-       (mud_telnet_new): Close memory leaks, stop playing sound on
-       finalization of the class.
-       * src/utils.c (remove_whitespace), (strip_ansi): GString fixes.
-
-2009-02-21  Les Harris  <lharris gnome org>
-
-       * src/mud-telnet.c (mud_telnet_process): Set subreq_position on TEL_SB
-       state change again.
-       * src/mud-window.c (mud_window_reconnect_cb): Now sets the Start Log
-       menuitem sensitive.
-
-2009-02-21  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.[ch] (mud_connection_view_add_text),
-       (mud_connection_view_islogging),
-       (mud_connection_view_network_event_cb),
-       (mud_connection_view_is_connected): Fixed a possible double free,
-       added more runtime checks to islogging.  Now notifies the mud-window
-       when the server has broken connection for ui update.  Added new
-       function which allows other classes to query for connection status.
-       * src/mud-connections.c (mud_connections_populate_iconview),
-       (mud_connections_property_cancel_cb),
-       (mud_connections_show_icon_dialog),
-       (mud_connections_icon_fileset_cb): Formatting cleanups. The icon
-       picker dialog will no longer attempt to add a NULL icon to it's view.
-       * src/mud-telnet-mccp.c (mud_mccp_decompress): 
-       * src/mud-telnet-msp.c (mud_telnet_msp_parse),
-       (mud_telnet_msp_parser_args), (mud_telnet_msp_get_files): Now assigns 
-       the return value of all GString functions to the string being changed
-       as per the documentation.
-       * src/mud-telnet.c (mud_telnet_new), (mud_telnet_process),
-       (mud_telnet_get_telnet_string), (mud_telnet_get_telopt_string):
-       GString fixes.  Fixed a bug that broke ZMP parsing while MCCP is
-       enabled.
-       * src/mud-tray.c (mud_tray_popup_menu_cb): Changed deprecated
-       gtk_signal_connect to g_signal_connect.
-       * src/mud-window.[ch] (mud_window_add_connection_view),
-       (mud_window_disconnect_cb), (mud_window_reconnect_cb),
-       (mud_window_disconnected), (mud_window_notebook_page_change),
-       (mud_window_size_request), (mud_window_init): The ui will now update
-       to better reflect the available options when a mud is either connected
-       or disconnected. Added function to enable the view to notify the
-       window upon non-user disconnection.
-       * ui/main.glade: Close Window now has a stock icon.
-       * ui/muds.glade: Proposed Quick Connect merge added.
-       * ui/prefs.glade: 'Ok' changed to 'Save' in Alias/Trigger panes.
-
-2009-02-20  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_add_text): Color will
-       now be properly reset if there is a conversion error in add_text.
-
-2009-02-20  Les Harris  <lharris gnome org>
-
-       * src/mud-profile.c (mud_profile_copy_preferences): Fixed copying the
-       foreground color to the background.
-
-2009-02-20  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_add_text),
-       (mud_connection_view_send): Workaround for a g_convert() problem where
-       it doesn't return NULL when there is a conversion error.
-
-2009-02-20  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_send): Check for null
-       before freeing conv_text.
-
-2009-02-20  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_send): Send UTF-8
-       input if conversion to terminal codeset fails.
-
-2009-02-20  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_send): Pass the
-       correct string length to gnet_conn_write after conversion.
-
-2009-02-20  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_send): Now convert
-       user input to terminal encoding.
-
-2009-02-17  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_add_text): Removed a
-       useless buffer, removed logging.
-
-2009-02-17  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_add_text):
-       * src/mud-window.c (mud_window_textview_keypress): Consolidated
-       encoding conversion into a single place.
-
-2009-02-17  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_add_text): All
-       gnome-mud messages sent to the terminal are now encoded to the
-       encoding of the terminal.
-
-2009-02-17  Les Harris  <lharris gnome org>
-
-       * src/mud-telnet-msp.c (mud_telnet_msp_process_command): Fixed
-       formatting.
-       * src/mud-window.c (mud_window_textview_keypress): We now convert user
-       input from the current locale into the encoding specified in the
-       preferences.
-
-2009-02-17  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_network_event_cb):
-       The server disconnecting the user now behaves in the same way as the
-       user disconnecting itself.
-
-2009-02-16  Les Harris  <lharris gnome org>
-
-       * configure.ac, plugins/Makefile.am: Removed obsolete plugin from
-       autofoo.
-
-2009-02-16  Les Harris  <lharris gnome org>
-
-       * plugins/python/*: Removed obsolete plugin.
-
-2009-02-16  Les Harris  <lharris gnome org>
-
-       * src/mud-window.c (mud_window_remove_connection_view): GnomeMud
-       picture will now be the correct size when the last view is closed.
-
-2009-02-16  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_send_naws): Will no
-       longer try to send NAWS when unconnected.
-       * src/mud-window.c (mud_window_size_request): Now properly notifies
-       each view of size change.
-
-2009-02-16  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_disconnect),
-       (mud_connection_view_reconnect), (mud_connection_view_send),
-       (mud_connection_view_new): Disconnect and Reconnect now completely
-       tear down the connection. Reconnect will then instantiate a new
-       connection.  Fixed a leak on instantiation where we weren't freeing
-       gconf returned strings.
-       * src/mud-telnet.[ch] (mud_telnet_init), (mud_telnet_finalize): Make sure
-       we properly free all allocated buffers on finalization. Moved
-       prev_buffer references into ENABLE_GST blocks as it is only used when
-       MSP is enabled.
-
-2009-02-16  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_disconnect),
-       (mud_connection_view_reconnect): Fixed an issue where the connection
-       could get into an inconsistant state.
-       * src/mud-telnet.c (mud_telnet_process): Check if buffer exists before
-       creating a new buffer.
-
-2009-02-16  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_reconnect): Added
-       newline to reconnect.
-       * src/mud-window.c (mud_window_init): Toolbar connect button now opens
-       main connection window.
-
-2009-02-16  Les Harris  <lharris gnome org>
-
-       * ui/muds.glade: Changed the default port entry value to 23.
-
-2009-02-16  Les Harris  <lharris gnome org>
-
-       * src/mud-connections.c (mud_connections_connect_cb): Connections
-       window will now close upon mud connection.
-
-2009-02-16  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_reconnect): No longer
-       free processed buffer in reconnect.
-       * src/mud-telnet-handlers.c:
-       * src/mud-telnet-msp.c (mud_telnet_msp_parse): Removed logging.
-
-2009-02-16  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_disconnect): Removed
-       the free of the processed buffer in disconnect since it is already
-       freed by that point with the previous changes.
-
-2009-02-16  Les Harris  <lharris gnome org>
-
-       * src/Makefile.am: Removed GMUD_DEBUG variable. The configure script
-       should add the debug flags.
-       * src/mud-connection-view.c (mud_connection_view_network_event_cb):
-       No longer relies on called functions to free the processed buffer.
-       * src/mud-connections.c (mud_connections_populate_iconview): Closed
-       a memory leak where two GSLists were not freed.
-       * src/mud-telnet-handlers.c: Added some debug info.
-       * src/mud-telnet-msp.c (mud_telnet_msp_parse): Now properly frees it's
-       buffer.
-       * src/mud-telnet.[ch] (mud_telnet_process): Simplified how the
-       function returns it's processed buffer.  Fixed a corner case where
-       MCCP data would try to decompress twice.
-
-2009-02-16  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: Update for 0.11.1.
-
-       * configure.ac: Release GNOME-Mud 0.11.1.
-
-2009-02-15  Les Harris  <lharris gnome org>
-       
-       * ui/prefs.glade: Rehid notebook tabs in prefs dialog.
-       * src/mud-telnet-mccp.c: Rearranged things a bit to
-       prevent a possible memory leak.
-
-2009-02-15  Les Harris  <lharris gnome org>
-
-       * configure.ac: Reenabled Zlib check.
-       * src/Makefile.am: Readded mud-telnet-mccp.[ch]
-       * src/mud-telnet-mccp.[ch]: Added files which decompress a
-       zlib stream.
-       * src/mud-connection-view.c:
-       * src/mud-telnet-handlers.[ch]:
-       * src/mud-telnet.[ch]: Reenabled MCCP related code.
-       * src/mud-telnet-zmp.c (ZMP_ident): Made ident use VERSION
-       from config.h.
-       * src/mud-window.c (mud_window_about_cb): Updated email address.
-       * ui/main.glade: Removed the toolbar from the handlebox.
-
-2009-02-14  Les Harris  <lharris gnome org>
-
-       * src/mud-connection-view.c (mud_connection_view_init),
-       (mud_connection_view_send_naws): Will now only send NAWS
-       subrequests when the window size has actually changed.
-       * src/mud-telnet.c (mud_telnet_register_handlers): Reenabled
-       all telnet options now that telnet parsing works.
-
-2009-02-15  Mart Raudsepp  <leio gentoo org>
-
-       * src/mud-telnet.c (mud_telnet_process): Add a missing break
-       after TEL_STATE_DO handler to stop the WILL code to be
-       executed as well. Fixes telnet options negotiated by the
-       server with a DO request, such as NAWS and TTYPE.
-
-2009-02-13  Les Harris  <lharris gnome org>
-
-       * ui/prefs.glade: Changed GtkSpinButton's page size
-       to 0 as it should be, fixes our spin button.
-
-2009-02-12  Les Harris  <lharris gnome org>
-
-       * src/mud-connections.c: Closed memory leak. Simplified logic
-       in a control structure.
-       * src/mud-connection-view.c, src/mud-log.c, src/modules.c,
-         src/mud-window.c: fwrites() now raise g_critical on failure.
-         All functions that expect a format get one now rather than
-         simply a string as format+data.
-
-2009-02-05  Les Harris  <lharris gnome org>
-
-       * src/mud-telnet-mccp.[ch]: Removed files.
-       * src/mud-telnet.[ch], src/mud-telnet-handlers.[ch],
-         src/mud-connection-view.c: Removed MCCP related code.
-       * src/Makefile.am: Removed references to removed files.
-       * configure.ac: Disabled MCCP check.
-
-2009-02-05  Les Harris  <lharris gnome org>
-
-       * src/mud-connections.c: Fixed reimplemented
-       certain list frees to the recommend form.
-       Fixed a corner case where renaming a mud 
-       would not delete the previous named mud from
-       gconf.
-
-2008-12-13  Przemysław Grzegorczyk  <pgrzegorczyk gmail com>
-
-       * src/gconf-helper.c:
-       * src/gnome-mud.c:
-       * src/modules.c:
-       * src/mud-connection-view.c:
-       * src/mud-connection-view.h:
-       * src/mud-preferences-window.c:
-       * src/mud-profile.c:
-       * src/mud-profile.h:
-       * src/mud-regex.c:
-       * src/mud-tray.c:
-       * src/mud-window.c: Cleaned up gtk and glib includes
-       to use only toplevel headers. Bug #564363.
-
-2008-12-09  Les Harris  <lharris gnome org>
-
-       * gnome-mud-desktop.in: Applied 
-       patch from Emilio Pozeulo Monfort
-       bringing the desktop file up to
-       current standards (Bug# 563846)
-
-2008-11-13  Les Harris  <lharris gnome org>
-
-       * src/mud-connections.c: Removed
-       logging g_messages.
-
-       * ui/muds.ui, ui/prefs.ui: Changed
-       the glade generated GtkSpinButton
-       adjustment page size to 0 as it
-       should be.
-
-2008-11-01  Les Harris  <me lesharris com>
-
-       * src/mud-connections.c: Remove some
-       code that was causing double frees.
-
-2008-08-08  Les Harris  <me lesharris com>
-
-       * src/mud-window-profile.c: Added
-       a destroy callback, removed old
-       close signal.
-
-       * src/mud-window.c: Properly unref
-       the logo pixbuf to stop memory leak.
-
-       * ui/prefs.glade: Refactored profile
-       manager dialog to be cleaner.
-
-2008-08-04  Les Harris  <me lesharris com>
-
-       * ui/prefs.glade: Committed the proper
-       glade file with the ui cleanup in it.
-
-2008-08-01  Les Harris  <me lesharris com>
-
-       * src/Makefile.am: Removed mud-window-mudedit.[ch],
-       mud-window-mudlist.[ch], mud-window-mconnect.[ch].
-       Added mud-connections.[ch]
-
-       * src/mud-connections.[ch]: New files which
-       implement an iconview-based appraoch to 
-       handling mud connections.
-
-       * src/mud-window-mudedit.[ch],
-         src/mud-window-mconnect.[ch],
-         src/mud-window-mudlist.[ch]: Removed these
-         files as their functionality is replaced
-         by mud-connections.[ch]
-       
-       * src/mud-log.h: Added GPL license information
-       to file.
-
-       * src/mud-telnet.c: Disabled mccp support 
-       even if MCCP is compiled in. Currently broken.
-
-       * src/mud-window.c: Updated to use the new
-       mud-connections class.
-
-       * src/mud-connection-view.c: Explicitly set
-       the terminal to xterm emulation.  Updated
-       history so duplicate items are not stored
-       more than once.
-
-       * src/mud-preferences-window.c: Changed so
-       the proxy entry and checkbox are set
-       insensitive if proxy use is disabled.
-
-       * src/utils.[ch]: Changed remove_whitespace
-       to return if passed a NULL value. Added
-       utils_error_message which displays an
-       error message in a dialog box easily.
-
-       * ui/prefs.glade: Redid the preference pane
-       to make it cleaner and more usable. Enable
-       Sound checkbox is currently not functional.
-
-       * ui/muds.glade, ui/prefs.glade, ui/main.glade:
-       Removed various windows that no longer are used,
-       saved them all with glade3 so we can use that
-       instead of glade2 from now on.
-
-2008-07-26  Les Harris  <me lesharris com>
-
-       * configure.ac: Reenabled MCCP checks.
-       
-       * src/Makefile.am: Added mud-telnet-mccp.[ch]
-
-       * src/mud-telnet-mccp.[ch]: New files which
-       implement experimental mccpv2.
-
-       * src/mud-telnet-handlers.[ch]: Added new 
-       handler for mccpv2.
-       
-       * src/mud-telnet.[ch]: Integrated the 
-       experimental mccpv2 handler into the 
-       parser. Telnet subnegotiation currently
-       broken with mccp enabled.
-
-       * src/mud-connection-view.c: Added checks
-       so we don't try to free empty queues.
-
-2008-07-26  Les Harris  <me lesharris com>
-
-       * Makefile.am: Removed gnome-doc-utils.make
-       from EXTRA_DIST and DIST_CLEAN_FILES until
-       we have updated documentation.
-
-2008-07-26  Les Harris  <me lesharris com>
-
-       * configure.ac: Changed to load gconf macros before
-       checking for the tool.  Added test to check for 
-       gconftool-2 presence.
-
-       * Makefile.am: Changed schema installation to use
-       GCONF_SCHEMA_FILE_DIR.
-
-       * src/Makefile.am: Removed gamesdir path setting,
-       switched to bin_PROGRAMS to let autotools do its
-       job.
-
-2008-07-26  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac: Don't use GNOME_DOC_INIT, we have no docs.
-
-2008-07-24  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac: Release GNOME-Mud 0.11.
-
-2008-07-24  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: Update for 0.11.
-
-       * README, gnome-mud.lsm.in, src/mud-window.c: Update website
-       references to point at our wiki page at
-       http://live.gnome.org/GnomeMud.
-
-       * ROADMAP: Replace content with a link to wiki.
-
-2008-07-23  Les Harris  <me lesharris com>
-
-       * gnome-mud.spec.in: Updated dependencies, package
-       information.
-
-2008-07-19  Les Harris  <me lesharris com>
-
-       * src/mud-connection-view.c: Explicitly set VTE
-       to use xterm emulation.
-
-       * src/mud-telnet.c: Removed unused #define.
-
-2008-07-18  Les Harris  <me lesharris com>
-
-       * src/mud-window.c: Updated window background
-       icon and aboutbox icon to use the default
-       gtk icon theme.
-
-2008-07-18  Les Harris  <me lesharris com>
-
-       * src/mud-tray.c: Set the icon name for all
-       tray states to gnome-mud to prevent some harmless
-       Gtk-CRITICAL's from showing up at runtime.
-
-2008-07-18  Les Harris  <me lesharris com>
-
-       * configure.ac: Updated icon Makefiles, removed obsolete
-       header and function checks.
-
-       * src/Makefile.am: Added gnome-mud-icons.h.
-
-       * src/gnome-mud-icons.h: A new header which holds a
-       definition of our icon's name.
-
-       * src/gnome-mud.c: Properly set our icon based on our
-       icon name rather than pointing to a file. Removed
-       obsolete python code.
-
-       * src/mud-tray.c: Removed references to our connection
-       status icons, properly set our tray icon based on our
-       icon name.
-
-2008-07-18  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac: Comment out all references to mapper and MCCP
-       support, these features need to be rewritten in a future release.
-
-2008-07-18  Jordi Mallach  <jordi sindominio net>
-
-       * Makefile.am: Make schema installation conditional to
-       GCONF_SCHEMAS_INSTALL.
-
-       * gnome-mud.schemas.in: Remove "charset" from a string.
-       * ui/prefs.glade: Mark a string as non-translatable.
-
-2008-07-18  Jordi Mallach  <jordi sindominio net>
-
-       * Get rid of all .cvsignore files, and add svn:ignore properties as
-       needed.
-
-       * configure.ac, doc/Makefile.am: Don't ship the GNOME-Mud manual
-       for now, as it's outdated and not yet migrated to PO format.
-
-       * configure.ac, src/Makefile.am, src/pixmaps, src/svg: Get rid of the
-       old icons from the distribution.
-       * src/Makefile.am, src/mud-tray.c: use the new SVG icon path for
-       the tray icon.
-
-       * src/Makefile.am: Fix typo in a filename which broke make dist.
-
-2008-06-30  Les Harris  <me lesharris com>
-
-       * configure.ac: Made gstreamer0.10 a conditional option, cleaned up
-       a bit.
-
-       * src/Makefile.am: Added MSP_CFLAGS and MSP_LIBS to build parameters.
-
-       * src/gnome-mud.c, src/mud-connection-view.c,
-       src/mud-telnet-handlers.[ch], src/mud-telnet-msp.[ch],
-       src/mud-telnet.[ch]: Added conditionals to support disabling
-       MSP support.
-
-2008-06-30  Les Harris  <me lesharris com>
-
-       * configure.ac: Added dependency for gstreamer0.10
-
-       * gnome-mud-schemas.in: Added new schema for MSP remote downloading.
-
-       * ui/prefs.glade: Added ui for MSP remote downloading.
-
-       * ui/main.glade: Added downloading ui.
-
-       * src/Makefile.am: Added files for MSP.
-
-       * src/mud-msp-telnet.[ch]: New files which implement MSP.
-
-       * src/gnome-mud.c: Added gstreamer initialization.
-
-       * src/mud-connection-view.[ch]:  Added ui for downloading. Fixed
-       disconnect and reconnect callbacks to propery dispose of and create
-       the telnet object.  Changed the netcode to make a chain of processing
-       such that a later link in the chain does not execute until the current
-       link is finished.
-
-       * src/mud-window.c: Fixed history code to avoid a potential crash when
-       the history queue is empty.
-
-       * src/mud-preferences-window.[ch], src/mud-profile.[ch],
-       src/gconf-helper.c: Added in code to handle the new msp preference.
-
-       * src/mud-telnet-handlers.[ch]: Added in MSP option handlers.
-
-       * src/mud-telnet.[ch]: Added in MSP support. Changed mud_telnet_process
-       to use a buffer that persists across calls to better handle cases where
-       telnet control codes are broken across packets.
-
-       * src/utils.c: Changed strip_ansi to use a GString to ensure a valid
-       string return when malformed data is passed.
-
-2008-06-27  Les Harris  <me lesharris com>
-
-       * gnome-mud-schemas.in: Added in the new schemas for the new gconf
-       preferences.
-
-       * src/mud-window.c: Made the text entry widget auto-grab focus when
-       the terminal comes into focus.
-
-       * src/*.[ch]: Removed trailing whitespace in all source files.
-
-2008-06-26  Les Harris  <me lesharris com>
-
-       * src/Makefile.am: Added mud-telnet-zmp.[ch]
-
-       * src/mud-telnet.[ch]: Added support for ZMP, removed debugging messages.
-
-       * src/mud-connection-view.c: Added function call to clean up after ZMP.
-
-2008-06-25  Les Harris  <me lesharris com>
-
-       * ui/*.glade: Updated windows hints and made every window resizable to
-       increase usability.
-
-       * ui/prefs.glade: Removed Terminal type preference and Command History
-       preference. Added ui for proxy and encoding support.
-
-       * src/mud-profile.[ch]: Added in gconf handling and profile support for
-       proxies and encoding. Fixed a segmentation fault when the command seperator
-       was NULL and when the command seperator was entered by itself.
-
-       * src/gconf-helper.[ch]: Added support for the new proxy and encoding
-       preferences.
-
-       * src/mud-connection-view.[ch]: Fixed an issue involving local echo and
-       trigger responses.  Added support for proxy use and encoding.
-
-       * src/mud-telnet-handlers.[ch], mud-telnet.[ch]: Added support for the
-       CHARSET telnet option.
-
-2008-06-25  Les Harris  <me lesharris com>
-
-       * src/Makefile.am: Added mud-telnet-handlers.[ch]
-       * src/mud-telnet-handlers.[ch]: New files which implement the telnet
-       options. ECHO, NAWS, and TTYPE.
-
-       * src/mud-connection-view.h: Added two new public fields for local echo
-       and naws.  Added three new public methods that implement NAWS support in
-       the client.
-
-       * src/mud-connection-view.c: Set the encoding explicitly before every
-       vte_terminal_feed() to ensure correct text rendering.  Implemented ECHO,
-       server echoed text will not be stored to the history buffer (so passwords
-       are not stored in plaintext).  Local echo is now disabled when server echo
-       is in effect.  Provided a mechanism for choosing the default system font
-       when the stored font cannot be loaded.  Implemented three functions that
-       handle NAWS support.  Add mud_telnet_send_raw() function that sends a
-       variable number of bytes through the connection.  Added
-       mud_telnet_get_index_by_option() helper function.
-
-       * src/mud-telnet.[ch]: Implemented a mechanism by which telnet options can
-       be handled.  Now sets the initial telnet state correctly.  Enabled support
-       for the EOR telnet option.  Implemented functions for NAWS and ECHO
-       support.  The telnet parser now handles NOP.  The telnet parsers handles
-       GA and TEL_EOR_BYTE as NOPs currently (this will change, they will be used
-       to pass text to triggers).
-
-       * src/mud-window.c: Added call to mud_connection_view_send_naws() in the
-       size-request callback.
-
-2008-06-21  Les Harris  <me lesharris com>
-
-       * configure.ac: Removed gnomevfs, will wait for gtk 2.14.
-
-       * src/Makefile.am: Converted spaces to tabs.
-
-       * src/utils.[ch]: Removed gnome vfs url show.
-
-       * src/mud-telnet.[ch]: Actually added the files now, whoops.
-
-2008-06-21  Les Harris  <me lesharris com>
-
-       * src/Makefile.am: Added mud-telnet.[ch]
-       * src/mud-telnet.[ch]: New files which implement the telnet protocol.
-       Converted from wxMud's implementation.
-       * src/mud-connection-view.[ch]: Hooked up the new telnet parser to our
-       network code.
-
-2008-06-20  Les Harris  <me lesharris com>
-
-       * plugins/test.plug/Makefile, plugins/statusbars/Makefile,
-       plugins/outputwindows/Makefile, plugins/automapper/Makefile:
-       Updated the dependencies in the plugins makefiles.  Added -fPIC to
-       their cflags so they build properly in a 64 bit environment.
-
-       * plugins/outputwindows/main.c,
-       plugins/statusbars/main.c, plugins/test.plugin/main.c: Updated the
-       data_in_function to accept a parameter passing the length of the data.
-
-       * src/mudregex.[ch], src/mud-parse-alias.c, src/mud-parse-trigger.c,
-       src/mud-window.c, src/mud-connection-view.c, src/modules-structures.h:
-       Changed the plugin api to provide the length of the data recieved. This
-       helps stop segmentation faults when malformed (non-null terminated) data
-       is passed in.
-
-       * src/mud-window.c: Since gnet does not flush its buffer plugins now only
-       recieve a N-lengthed piece of the buffer where N is the length of the
-       most current addition.
-
-2008-06-20  Les Harris  <me lesharris com>
-
-       * configure.ac: Removed dependency on libgnetwork, added dependency to gnet.
-       * src/gnome-mud.[ch], src/mud-connection-view.[ch]: Removed libgnetwork
-       calls and replaced them with gnet calls.
-
-       * src/mud-window.c: Stopped using glade for the about box, moved it
-       into here.  This complies with gnome and gtk+ best practice advice. Spruced
-       up the aboutbox a bit. Close button works properly now.
-
-       * src/mud-connection-view.c, src/mud-window.c, src/mud-window-mudedit.c,
-       src/mud-window-mconnect.c, src/mud-parse-base.c, src/modules.c,
-       src/mud-window-mudlist.c, src/mud-window-profile.c, src/mud-profile.c:
-       Fixed various include problems to remove compile time warnings.
-
-       * src/modules.c: Added explicit cast from void* to gpointer* to avoid type-
-       punning warning at compile time.
-
-2008-06-20  Les Harris  <me lesharris com>
-
-       * src/mud-window.c: Fixed a segmentation fault when history was used with
-       no open connection.
-
-2008-06-17  Les Harris  <me lesharris com>
-
-       * src/mud-window.c, src/mud-connection-view.c, src/mud-connection-view.h:
-       Added in input history support for our text entry widget.
-
-2007-07-13  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac, Makefile.am: Prepare for icon changes.
-       * src/pixmaps/Makefile.am: do not distribute the old icon for now.
-
-       * data/icons/*: New Tango icons from Andreas Nilsson. Many thanks!
-
-       * ui/main.glade: Add Andreas to credits.
-
-2006-09-12  Jordi Mallach  <jordi sindominio net>
-
-       * MAINTAINERS: Fix Les' email address, and add Mart.
-
-2006-09-04  Les Harris  <lescom comcast net>
-
-       * src/mud-window-mudedit.c, src/mud-window-mudlist.c,
-       src/mud-connection-view.c:  Fixed a few things which
-       were previously warnings in GTK+ 2.8 which are now
-       critical in GTK+ 2.10.
-
-2006-09-02  Les Harris  <lescom comcast net>
-
-       * src/mud-parse-trigger.c, src/mud-parse-alias.c: Fixes a
-       crash due to previous Lestupidy, frees slist properly now.
-
-2006-08-29  Mart Raudsepp  <leio dustbite net>
-
-       * configure.ac: Bump GTK_REQUIRED to 2.10.0 for GtkStatusIcon.
-       * src/mud-tray.c: Port to GtkStatusIcon to get rid of libegg.
-       Fixes #69909.
-       * src/Makefile.am (gnome_mud_SOURCES): Remove eggtrayicon.[ch].
-       * src/eggtrayicon.[ch]: Removed.
-
-2006-08-24  Jordi Mallach  <jordi sindominio net>
-
-       * src/mud-preferences-window.c, src/mud-window-mudedit.c,
-       src/mud-window-mudlist.c: don't wrap gconf_client_get_string()
-       calls around g_strdup(), as it leaks the string and
-       gconf_client_get_string() already does the right thing.
-       * src/mud-parse-alias.c, src/mud-parse-alias.c,
-       mud-preferences-window.c, mud-window-mudlist.c: Plug memleaks.
-
-       Thanks to Kjartan Maraas for the pointers.
-
-2006-06-08  Jordi Mallach  <jordi sindominio net>
-
-       * plugins/automapper/map.c, ui/prefs.glade,
-       gnome-mud.schemas.in: Fix typos and unify some strings.
-       Thanks Thierry Moisan. Fixes #328527, #343018.
-
-2006-05-25  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac (IT_PROG_LIBTOOL): Switch to IT_PROG_INTLTOOL and
-       bump it to 0.35 for po/LINGUAS support.
-       (ALL_LINGUAS): Removed, now in po/LINGUAS.
-
-2006-05-11  Les Harris  <hl harris comcast net>
-
-       * configure.ac: Added two new dependencies for gmud, libpcre-6.0
-       for trigger/alias support and gmodule-2.0 for plugin support.
-
-       * src/Makefile.am: Added new files for triggers/aliases to sources.
-
-       * src/mud-connection-view.[ch], src/mud-preferences-window.[ch],
-       src/mud-window.[ch], mud-profiles.[ch]: Added in trigger/alias
-       support for Gmud.
-
-       * src/mud-regex.[ch], src/mud-parse-base.[ch],
-       src/mud-parse-trigger.[ch], src/mud-parse-alias.[ch]: New files
-       which implement trigger/alias support.
-
-       * src/mud-connection-view.c, src/modules_api.[ch]: Added a stupid
-       hack to allow plugins to gag a line of text from the main terminal.
-       I'll remove this with the refactoring of the plugin system.
-
-       * src/mud-window-mudedit.c: Fixed a bug thats been in there since I
-       wrote it.  Now Gmud will properly add characters with a new mud.
-
-       * src/utils.c: Reimplemented remove_whitespace() to make it not suck
-       and more importantly, to not cause random crashes (especially in
-       mudedit window and mudconnect window).
-
-       * src/modules.[ch], src/modules_api.[ch], src/modules-structures.h:
-       Converted the plugin system to use GModule instead of dl*.
-
-       * ui/prefs.glade: Updated preferences window for triggers & aliases.
-
-       * plugins/test.plugin/main.c: Updated test plugin for GModule use.
-
-       * plugins/statusbars: Added a new plugin which provides a
-       graphical status bar window (much like the old python one). Also
-       demonstrates a more complex plugin.
-
-       * plugins/outputwindows: Added a new plugin which provides
-       support for multiple regex-based output windows for capturing
-       stuff like channel text, tells, etc.
-
-       * plugins/automapper: Implemented the 10.7 automapper code in
-       a plugin form.  We really need to rewrite this but its too big a
-       task before 0.11. This implementation will make it much easier to
-       rip it out later. Also demonstrates a really fugly plugin hacked
-       into using some gmud internals. Lets not steer new plugin authors
-       to this as an example of What To Do ;)
-
-2006-05-12  Jordi Mallach  <jordi sindominio net>
-
-       * Makefile.am (EXTRA_DIST): Add gnome-doc-utils.make.
-
-2006-04-25  Mart Raudsepp  <leio dustbite net>
-
-       * src/mud-window.c, ui/main.glade: Re-implement the input box as
-       a GtkTextView that adjusts its height as necessary.
-
-       Return/Enter sends text, Return/Enter with any modifier keys goes
-       to next line in the input box, adjusting height as necessary.
-       A largest height of 5 is used, after which a scrollbar is used --
-       that value can easily be changed by adjusting the value passed to
-       mud_window_textview_ensure_height(). The height is always kept
-       only as high as necessary.
-
-2006-04-24  Les Harris  <hl harris comcast net>
-       * src/gnome-mud.c, src/modules.c, src/mud-preferences.window.c,
-       ui/directions.glade, ui/main.glade, ui/prefs.glade,
-       configure.ac: Removed all traces of libgnome and libgnomeui
-       from gmud; converted functionality to gtk+ equivalents.
-
-       * src/modules-api.c: Added a typecast to stop a warning on compile.
-       * src/modules.c, src/modules-structures.h,
-       src/mud-window.c: Fix "enabeled" typo.
-
-2006-04-23  Mart Raudsepp  <leio dustbite net>
-
-       * src/gnome-mud.c, src/modules.c, src/modules_api.c,
-       src/mud-connection-view.c, src/mud-preferences-window.c,
-       src/mud-profile.c, src/mud-tray.c, src/mud-window.c: Remove all
-       "rcsid" variables from the source.
-
-2006-04-23  Jordi Mallach  <jordi sindominio net>
-
-       * src/mud-log.c: Fix gi18n.h include and unify log format.
-
-2006-04-22  Les Harris  <hl harris comcast net>
-
-       * ui/main.glade: Added save dialog, set Start/Stop Logging and Save
-       Buffer menu items to not sensitive on startup.
-
-       * src/gnome-mud.c: Now adds various folders into its directory if they
-       do not exist (plugins, logs).
-
-       * src/mud-connection-view.[ch]: Added in support for the MudLog
-       object. Also added in two accessor functions to facilitate logging
-       and buffer dumping.
-
-       * src/mud-window.c: Made the various logging menu items activate and
-       dim according to wether or not they are relevant. Added callbacks for
-       the logging menuitems.
-
-       * src/mud-log.[ch]: New files which implement the MudLog object.
-
-2006-04-09  Paul Esson  <paul esson gmail com>
-
-       * src/mud-tray.c: Bugfix, fixes problem with two text boxes
-       appearing simultaneously.
-
-       * ui/main.glade:  Adds Connect, Disconnect & Reconnect buttons.
-       Changes menu icons for Connect & Reconnect to gtk-standard icons.
-
-       * src/mud-window.c (mud_window_inputtoggle_cb,
-       mud_window_size_request, mud_window_init): Stops use of gtkpaned
-       replaced with vbox in glade edit.
-
-       * src/mud-window.[ch] (mud_window_init): Added callback for
-       buttons from glade edit.
-
-       (mud_window_add_connection_view): Added code to display either
-       the MUDs name as listed in the mudlist, or the MUDs hostname,
-       depending on the connection method.
-
-2006-02-14  Jordi Mallach  <jordi sindominio net>
-
-       * src/mud-preferences.[ch]: Removed.
-
-2006-02-08  Daniel Patton  <seven-nation army com>
-
-       * src/gnome-mud.h:  Removed a whole heap of cruft.
-
-2006-02-03  Daniel Patton  <seven-nation army com>
-
-       * src/mud-window.c (mud_window_textentry_activate): Added code to
-       prevent crash on a blank line of input.
-       Added if clause to honour keeptext gconf value.
-
-2006-01-24  Clytie Siddall  <clytie riverland net au>
-
-       * configure.in: Added vi in ALL_LINGUAS line.
-
-2006-01-11  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac: Cleanup. Update enabling of MCCP to be automatic,
-       default mapper support to no.
-
-       * src/gconf-helper.c (gm_gconf_load_preferences),
-       src/gnome-mud.h: Update WITHOUT_MAPPER references to new name
-       ENABLE_MAPPER.
-
-2006-01-06  Jordi Mallach  <jordi sindominio net>
-
-       * src/Makefile.am, src/data.c, src/directions.c, src/directions.h,
-       src/init.c, src/keybind.c, src/log.c src/map-link.c, src/map.c,
-       src/map.h, src/mccpDecompress.c, src/mccpDecompress.h, src/mudlist.c,
-       src/net.c, src/prefs.c, src/profiles.c, src/python.c, src/telnet.c,
-       src/tray.c, src/window.c: Remove old sources from CVS.
-
-       * src/gnome-mud.h: Remove references to mccp.
-
-       * MAINTAINERS: Add Les Harris and Daniel Patton.
-
-2006-01-05  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac: Don't check for Python, and don't link it in.
-
-       * src/gnome-mud.c, src/modules.c, src/modules_api.c,
-       src/mud-preferences-window.c, src/mud-profile.c, src/mud-tray.c,
-       src/mud-window-mconnect.c, src/mud-window-mudedit.c,
-       src/mud-window-mudlist.c, src/mud-window-profile.c, src/mud-window.c:
-       Prune includes.
-
-2006-01-05  Les Harris  <lescom comcast net>
-
-       * src/mud-tray.h, src/mud-tray.c: Converted the old trayicon code into
-       a full fledged GObject.
-       * src/mud-window.c, src/mud-window.h, src/mud-connection-view.c,
-       src/mud-connection-view.h, src/Makefile.am: Added in support for
-       the tray icon.
-
-       * src/modules.h: Add missing declaration.
-
-2006-01-05  Daniel Patton  <seven-nation army com>
-
-       * src/mud-window.c (mud_window_add_connection_view): Real fix for the
-       double free.
-
-2006-01-04  Daniel Patton  <seven-nation army com>
-
-       * ui/muds.glade, ui/connect.glade: Dialog fixup.
-
-2006-01-04  Daniel Patton  <seven-nation army com>
-
-       * src/mud-window.c (mud_window_add_connection_view): Fix double
-       free.
-
-2006-01-04  Jordi Mallach  <jordi sindominio net>
-
-       * src/mud-window.c (mud_window_populate_profiles_menu): Mark string
-       for translation.
-
-       * src/gnome-mud.c (main): Use GETTEXT_PACKAGE in i18n init.
-
-       * src/mud-preferences-window.c (mud_preferences_window_init),
-       src/mud-window-mconnect.c (mud_mconnect_window_init),
-       src/mud-window-mudedit.c (mud_edit_window_query_glade),
-       (props_window_dialog),
-       src/mud-window-mudlist.c (mud_list_window_init),
-       src/mud-window-profile.c (mud_profile_window_init),
-       (mud_profile_window_add_cb),
-       src/mud-window.c (mud_window_about_cb), (mud_window_connect_dialog),
-       (mud_window_init): Pass the correct gettext domain to glade_xml_new(),
-       so i18n works on glade dialogs.
-
-       * src/mud-window.c (mud_window_about_cb): Don't hardcode the version
-       string.
-
-2006-01-04  Les Harris  <lescom comcast net>
-
-       * src/svg/Makefile.am: Added file, will install gnome-mud.svg into
-         gmud's datadir.
-
-       * src/mud-window-profile.c, src/mud-window-profile.h: Added files,
-         they implement the profile managment window.
-
-       * src/mud-preferences.c, src/mud-preferences.h,
-         src/mud-connection-view.c, src/mud-connection-view.h,
-         src/mud-profile.c, src/mud-profile.h, src/mud-window.c,
-         src/mud-window.h, src/mud-window-mconnect.c,
-         src/mud-window-mconnect.h, mud-window-mudedit.c,
-         mud-window-mudedit.h: Implemented profile gui allowing users to
-         change and manage their profiles on a mud by mud basis.
-
-       * src/mud-window.c: Replaced compilation information with our
-         attractive gnome-mud svg.
-
-2006-01-04  Jordi Mallach  <jordi sindominio net>
-
-       * ui/main.glade: Add Petter to documenters.
-
-2006-01-04  Jordi Mallach  <jordi sindominio net>
-
-       * MAINTAINERS: Make fatalerror happy.
-
-2006-01-04  Jordi Mallach  <jordi sindominio net>
-
-       * ui/main.glade: Cleanup the About dialog.
-
-2006-01-04  Daniel Patton  <seven-nation army com>
-
-       * ui/main.glade: Changed some mnemonics in the menus, added some
-       more. Added an accelerator for file->connect.
-
-2006-01-02  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac: Set ALL_LINGUAS before calling AM_GLIB_GNU_GETTEXT,
-       d'oh!.
-       Set AM_MAINTAINER_MODE.
-
-2006-01-01  Les Harris  <lescom comcast net>
-
-       * src/Makefile.am, src/gnome-mud.h, src/gnome-mud.c, src/modules_api.h,
-         src/modules_api.c, src/modules.h, src/modules.c, src/mud-window.c,
-         src/mud-window.h, src/mud-connection-view.h, src/mud-connection-view.c,
-         src/modules-structures.h: Added cplugin support, added proper
-         MudConnectionView dealloc'ing at shutdown.
-
-2006-01-02  Jordi Mallach  <jordi sindominio net>
-
-       * ui/main.glade, ui/prefs.glade: Fix two newly introduced typos.
-       Fixes #325335.
-       Fix "completly" and "seperate" typos.
-
-       * configure.ac: Update again, but do it right this time.
-
-2005-12-31  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac: Revert to AC_OUTPUT. Generated Makefiles are sometimes
-       useful.
-
-2005-12-29  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac: GTK_REQUIRED=2.6.0, for GtkAboutDialog.
-
-2005-12-29  Jordi Mallach  <jordi sindominio net>
-
-       * Migration of gnome-mud-manual to gnome-doc-utils.
-       * configure.ac: Add required changes for gnome-doc-utils.
-       Make MCCP the default if zlib is present, warn if not.
-       General cleanups.
-       * Makefile.am: Add gnome-doc-utils stuff to DISTCLEANFILES,
-       --disable-scrollkeeper to DISTCHECK_CONFIGURE_FLAGS.
-       * doc/gnome-mud-manual/Makefile.am: Add gnome-doc-utils support.
-       * doc/gnome-mud-manual/C/Makefile.am: Removed.
-       * doc/gnome-mud-manual/gnome-mud-manual.omf.in: New, created from
-       the old omf file.
-       * doc/gnome-mud-manual/C/gnome-mud-manual.omf: Removed.
-       * doc/gnome-mud-manual/C/gnome-mud-manual.xml: Updated. Real content
-       update will follow...
-       * doc/Makefile.ac, configure.ac: Ignore the doc/gnome-mud-plugin-api
-       and omf-install dirs, as the python plugin API is not available now,
-       and omf-install is obsolete.
-       * doc/omf-install: Removed.
-       * doc/xmldocs.make: Removed.
-
-       * .cvsignore, doc/gnome-mud-manual/.cvsignore: Updated.
-
-2005-12-29  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mud-connection-view.c: Fixed the resize thing I broke earlier
-       today :).
-
-2005-12-29  Les Harris  <lescom comcast net>
-
-       * src/mud-window.c, ui/main.glade: Added resizable entry widget
-       support.
-
-2005-12-29  Jordi Mallach  <jordi sindominio net>
-
-       * ui/main.glade, ui/prefs.glade: Replace "colour" with "color", per
-       GNOME guidelines. Fixes #325103.
-
-2005-12-29  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mud-window.c (mud_window_about_cb), main.glade: Applied new
-       GtkAboutDialog from Les Harris.
-
-2005-12-29  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mud-connection-view.[ch]: Removed use global variables.
-
-2005-12-28  Les Harris  <lescom comcast net>
-
-       * Added a hook into MudConnectionView allowing for
-       proper handling of connection strings.
-       * Added Gnome-Mud window resizing.
-
-2005-12-28  Jordi Mallach  <jordi sindominio net>
-
-       * src/gnome-mud.h: Remove duplicate definition of
-       remove_whitespace().
-
-2005-12-27  Jordi Mallach  <jordi sindominio net>
-
-       * src/Makefile.am (gnome_mud_SOURCES): Embarrasing typo.
-       (INCLUDES): define GLADEDIR as $(pkgdatadir), not the local
-       source ui/ directory.
-       * src/mud-preferences-window.c, src/mud-window-mconnect.c,
-       src/mud-window-mudedit.c, src/mud-window-mudlist.c,
-       src/mud-window.c: add slashes to all glade file references.
-
-2005-12-26  Les Harris  <lescom comcast net>
-
-       * Add Mud List support.
-       * Add Mud Connection support with data derived from Mud List.
-       * ui/main.glade: Split into multiple glade files.
-
-2005-12-20  Les Harris  <lescom comcast net>
-
-       * Removed duplicate code that caused a crash on connect.
-
-2005-09-14  Jordi Mallach  <jordi sindominio net>
-
-       * Merge gnome-mud-glade-branch to HEAD.
-       * Forwardport missing bits from gnome-mud 0.10.x.
-       * Old branch is now gnome-mud-0-10.
-
-2005-09-01  Pawan Chitrakar  <pchitrakar gmail com>
-
-       * configure.ac: Added ne in ALL_LINGUAS
-
-2005-08-02  Maxim Dziumanenko <mvd mylinux ua>
-
-       * configure.in: Added "uk" to ALL_LINGUAS.
-
-2005-05-16  Jordi Mallach  <jordi sindominio net>
-
-       * src/directions.c (directions_window_ok_cb): Fix typo which
-       would prevent directional keys from being saved correctly
-       (fixes #304050).
-
-2005-05-10  Jordi Mallach  <jordi sindominio net>
-
-       * Makefile.am (EXTRA_DIST): Get rid of
-       intltool-modules/XML/Parser/Style/OrigTree.pm.
-       * src/Makefile.am (EXTRA_DIST): Add directions.h.
-
-2005-05-10  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c (text_entry_activate): Apply fix from Peter Andersson
-       to fix history scrollback behaviour (fixes #116324).
-
-2005-04-01  Steve Murphy  <murf e-tools com>
-
-       * configure.in: Added "rw" to ALL_LINGUAS.
-
-2005-03-13  Robin Ericsson  <lobbin localhost nu>
-
-       * src/net.c (make_connection): Removed unused variable conn_id.
-       (read_from_connection): Changed string to const char* and to
-       _not_ free it, it's declared static in mccpDecompress.c.
-
-2005-03-11  Robin Ericsson  <lobbin localhost nu>
-
-       * src/gnome-mud.h [connection_data]: Added member naws.
-       Added a few prototypes.
-
-       * src/init.c (create_connection_data): Set news to FALSE and connect
-       signals so we can detect changes in displayed w/h.
-
-       * src/telnet.c (write_octet): Removed.
-       (write_escaped_octet): Added.
-       (connection_send_naws): Now escapes values of 255.
-       (pre_process): Moved IAC WILL NAWS to connection_send_naws.
-
-       * src/window.c (vte_might_need_naws): Added.
-       (vte_char_size_changed_cb): Added.
-       (vte_resize_window_cb): Added.
-
-2005-03-07  Robin Ericsson  <lobbin localhost nu>
-
-       * gnome-mud.schemas.in, ui/directions.glade: Changed short name to
-       "Directional keybindings", fixes bugs #169184.
-
-2005-03-04  Robin Ericsson  <lobbin localhost nu>
-
-       * po/POTFILES.in: Added src/directions.c and ui/directions.glade.
-
-2005-03-03  Robin Ericsson  <lobbin localhost nu>
-
-       * Makefile.am: Added ui subdir.
-
-       * configure.ac: Added requirement for libglade-2.0.
-
-       * gnome-mud.schemas.in: Added default directions to Default profile.
-
-       * src/Makefile.am, src/directions.[ch]: Added.
-
-       * src/gnome-mud.h [profile_data]: directions added.
-
-       * src/init.c (text_entry_key_press_cb): Use dynamic directions from
-       profile.
-       * src/map.c (user_command),
-       (get_direction_text): Ditto.
-
-       * src/profiles.c (profile_load_directions): Added.
-       (load_profiles): Load directions.
-       (profilelist_profile): Set directions.
-       (profilelist_directions_cb): Added.
-       (window_profile_edit): Added direction button in toolbar menu.
-
-       * ui/Makefile.am, ui/directions.glade, ui/.cvsignore: Added.
-
-2005-02-16  Jordi Mallach  <jordi sindominio net>
-
-       * Makefile.am (EXTRA_DIST): Add gnome-mud.spec.
-       * configure.ac (AC_OUTPUT): Add gnome-mud.spec.
-       * gnome-mud.spec.in: Add RPM spec file from Adam Luchjenbroers.
-
-2004-11-24  Amanpreet Singh Alam <amanlinux netscape net>
-
-       * configure.ac: Add pa to ALL_LINGUAS
-
-2004-07-18  Robin Ericsson  <lobbin localhost nu>
-
-       * src/Makefile.am: mud-preferences.[ch] removed.
-
-       * src/gconf-helper.c (gm_gconf_load_preferences): Rewritten to
-       support profiles.
-
-       * src/gnome-mud.c (main): Load profiles on startup.
-
-       * src/mud-connection-view.c [_MudConnectionViewPrivate]: Removed
-       prefs.
-       (mud_connection_view_init): Changed callback for profile-change.
-       (mud_connection_view_send): Now process command for separator.
-       (mud_connection_view_set_*): Changed prefs to profile.
-       (mud_connection_view_profile_changed_cb): Added callback for
-       profile changes.
-       (mud_connection_view_new): Now loads default profile.
-
-       * src/mud-preferences.[ch]: Deleted.
-
-       * src/mud-preferences-window.c [_MudPreferencesWindowPrivate]:
-       Removed prefs, added profile and notification_count.
-       [COLUMN_PREFERENCSE, COLUMN_ALIASE]: Added.
-       [TAB_ALIASES]: Added.
-       (mud_preferences_window_init): Connect callbacks.
-       (mud_preferences_window_finalize): Disconnect callback.
-       (mud_preferences_window_fill_profiles): Added aliases.
-       (mud_preferences_window_tree_selection_cb): Added support for several
-       tabs.
-       (mud_preferences_window_change_profile_from_name): Added.
-       (mud_preferences_window_change_profile): Added.
-       (mud_preferences_window_connect_callbacks): Added.
-       (mud_preferences_window_set_preferences): Added.
-       (mud_preferences_window_*_cb): Changed preferences to profile and
-       added return if notifying.
-
-       * src/mud-profile.c [_MudProfilePrivate]: Added gconf_client, prefs
-       and in_notification_count.
-       (General): Moved a lot of functions from mud-preferences.c to
-       mud-profile.c and renamed.
-
-       * ui/main.glade: Added aliases tab.
-
-2004-07-06  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac: Bump libgnetwork requirement to 0.0.6.
-
-2004-07-01  Robin Ericsson  <lobbin localhost nu>
-
-       * gnome-mud.schemas.in [terminal_type]: Changed default to xterm.
-
-       * src/mud-connection-view.c [_MudConnectionViewPrivate]: Added
-       popup_menu, prefs, profile, signal and signal_profile_changed.
-       (append_stock_menuitem): Added.
-       (append_menuitem): Added.
-       (popup_mnu_detach): Added.
-       (choose_profile_callback): Added.
-       (mud_connection_view_init): Listen to signal of changed preferences.
-       (mud_connection_view_reread_profile): Added.
-       (mud_connection_view_set_terminal_colors): Added.
-       (mud_connection_view_set_terminal_scrollback): Added.
-       (mud_connection_view_set_terminal_scrolloutput): Added.
-       (mud_connection_view_set_terminal_font): Added.
-       (mud_connection_view_set_terminal_type): Added.
-       (mud_connection_view_prefs_changed_cb): Added.
-       (mud_connection_view_button_press_event): Added.
-       (mud_connection_view_popup): Added.
-       (mud_connection_view_set_profile): Added.
-
-       * src/mud-prefereces-window.c [_MudPreferencesWindowPrivate]: Added
-       signal.
-       (mud_preferences_window_finalize): Disconnect signal handler.
-       (mud_preferences_window_new): Save signal handler.
-
-       * src/mud-preferences.c (mud_preferences_new): Only load profiles
-       when we create the singleton.
-
-2004-06-29  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mud-preferences-window.c (mud_preferences_window_set_preferences):
-       Changed the way color-selections are set.
-       (mud_preferences_window_font_cb): Added.
-       (mud_preferences_window_foreground_cb): Added.
-       (mud_preferences_window_background_cb): Added.
-       (mud_preferences_window_colors_cb): Added.
-       (mud_preferences_window_changed_cb): Added history and scrollback.
-       (mud_preferences_window_update_font): Added.
-       (mud_preferences_window_update_foreground): Added.
-       (mud_preferences_window_update_background): Added.
-       (mud_preferences_window_update_colors): Added.
-
-       * src/mud-preferences.c (color_to_string): Added.
-       (set_Foreground): Added.
-       (set_Background): Added.
-       (set_Colors): Added.
-       (set_FontName): Added.
-       (mud_preferences_gconf_changed): Added font, foreground, background and
-       palette.
-       (mud_preferences_set_font): Added.
-       (mud_preferences_set_foreground): Added.
-       (mud_preferences_set_background): Added.
-       (mud_preferences_set_colors): Added.
-
-       * src/mud-preferences.h [MudPreferenceMask]: Added FontName, Foreground,
-       Background and Colors.
-
-2004-06-28  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mud-preferences-window.c (mud_preferences_window_set_preferences):
-       Changed the way spinbuttons are set.
-       (mud_preferences_window_history_cb): Added.
-       (mud_preferences_window_scrollback_cb): Added.
-       (mud_preferences_window_update_history): Added.
-       (mud_preferences_window_update_scrollback): Added.
-       (mud_preferences_window_changed_cb): Added history and scrollback.
-
-       * src/mud-preferences.c (set_History): Added.
-       (set_Scrollback): Added.
-       (mud_preferences_gconf_changed): Added UPDATE_INTEGER.
-       (mud_preferences_set_history): Added.
-       (mud_preferences_set_scrollback): Added.
-
-       * src/mud-preferences.h [MudPreferenceMask]: Added History and Scrollback,
-
-       * ui/main.glade: Changed max on scrollback from 100 to 1000.
-
-2004-06-24  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mud-preferences.c (mud_preferences_gconf_changed):
-       terminal renamed to terminal_type.
-       (mud_preferences_set_terminal): Ditto
-
-2004-06-24  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mud-preferences-window.c (mud_preferences_window_set_preferences):
-       Changed the way edit-boxes are set.
-       (mud_preferences_window_disablekeys_cb): Wrote the code.
-       (mud_preferences_window_scrolloutput_cb): Ditto.
-       (mud_preferences_window_commdev_cb): Added.
-       (mud_preferences_window_terminal_cb): Added.
-       (mud_preferences_window_changed_cb): Added more callbacks.
-       (mud_preferences_window_update_terminaltype): Added.
-       (mud_preferences_window_update_commdev): Added.
-       (mud_preferences_window_scrolloutput): Added.
-       (mud_preferences_window_disablekeys): Added.
-
-       * src/mud-preferences.c (set_TerminalType): Added.
-       (set_CommDev): Added.
-       (mud_preferences_gconf_changed): Added UPDATE_STRING and
-       a few more entries.
-       (mud_preferences_set_scrolloutput): Added.
-       (mud_preferences_set_disablekeys): Added.
-       (mud_preferences_set_commdev): Added.
-       (mud_preferences_set_terminal): Added.
-
-       * src/mud-preferences.h [MudPrefereneMask]: Added more entries.
-
-2004-06-23  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mud-preferences-window.c [_MudPreferencesWindowPrivate]:
-       Added scrollback, lines, font, foreground, background and color
-       widgets.
-       (mud_preferences_window_init): Binded a few more widgets.
-       (mud_preferences_window_set_preferences): Change the way
-       toggle-buttons are set, also set the last missing widgets.
-       (mud_preferences_window_disablekeys_cb): Added.
-       (mud_preferences_window_srolloutput_cb): Added.
-       (mud_preferences_window_keeptext_cb): Added.
-       (mud_preferences_window_echotext_cb): Added.
-       (mud_preferences_window_changed_cb): Added.
-       (mud_preferences_window_update_keeptext): Added.
-       (mud_preferences_window_update_echotext): Added.
-       (mud_preferences_window_new): Connected to signal changed
-       from MudPreferences.
-
-       * src/mud-preferences.c [_MudPreferencesPrivate]: Added
-       prefs_signal and in_notification_count.
-       (mud_preferences_init): Init variables.
-       (mud_preferences_class_init): Create signal "changed".
-       (mud_preferences_gconf_changed): Added.
-       (mud_preferences_set_keeptext): Added.
-       (mud_preferences_set_echotext): Added.
-       (mud_preferences_new): Added gconf notify.
-
-       * src/mud-preferences.h [MudPreferenceMask]: Added.
-       [_MudPreferenceClass]: Added changed callback.
-
-       * ui/main.glade: Renamed color-pick-widgets.
-
-2004-06-21  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mud-connection-view (mud_connection_view_disconnect):
-       Added asserts.
-       (mud_connection_view_reconnect): Ditto.
-
-       * src/mud-window.c (mud_window_disconnect_cb): Added some NULL
-       checks on the current view.
-       (mud_window_reconnect_cb): Ditto.
-       (mud_window_textentry_activate): Ditto.
-       (mud_window_init): Sett priv->current_view till NULL implicit.
-
-2004-06-18  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mud-preferences-window.c [_MudPreferencesWindowPrivate]:
-       Added a few new member.
-       (mud_preferenes_window_init): Map some more widgets.
-       Renamed a few functions more correctly.
-       (mud_preferences_window_set_preferences): Added.
-
-       * ui/main.glade: Added all preference-widgets.
-
-2004-06-17  Robin Ericsson  <lobbin localhost nu>
-
-       * src/Makefile.am: Added gconf-helper.[ch].
-
-       * src/mud-preferences-window.c (mud_preferences_window_init):
-       Connected to response signal.
-       (mud_preferences_window_fill_profiles): Added global preferences.
-       (mud_preferences_response_cb): Added.
-
-       * src/mud-preferences.c (mud_preferences_finalize): Free values
-       from properties.
-       (mud_preferenes_new): Load preferences.
-
-       * src/mud-preferences.h [_MudPreferences]: Added preferences
-       member.
-
-       * src/mud-profile.h [_MudPrefs]: Added.
-       [_MudProfile]: Added preferences member.
-
-       * ui/main.glade [preferences-window]: Changed responsetype of
-       button to GTK_RESPONSE_CLOSE.
-
-2004-06-16  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mud-preferences-window.c [MudPreferencesWindowPrivate]:
-       Added notebook.
-       [enums]: Added.
-       (mud_preferences_tree_selection_cb): Added.
-       (mud_preferences_show_tab): Added.
-       (mud_preferences_window_fill_profiles): Added 3:d field to
-       TreeView. Also show preferences child and attack selected
-       callback.
-
-       * src/mud-preferences.[ch]: Changed mud_preferences_get_profiles()
-       into const.
-
-       * ui/main.glade: Renamde notebook2 to notebook. Changed size of
-       scrolledwindow for TreeView. Added missing labels for empty tabs
-       at the moment. Added preferences tab with empty tabs.
-
-2004-05-01  Adam Weinberger  <adamw gnome org>
-
-       * configure.in: Added en_CA to ALL_LINGUAS.
-
-2004-04-16  Robin Ericsson  <lobbin localhost nu>
-
-       * src/Makefile.am: mud-profile.[ch] added.
-
-       * src/mud-preferences-window.c [MudPreferencesWindowPrivate]:
-       Removed gconf_client and added prefs and treeview.
-       (mud_preferences_window_init): Save treeview in private data.
-       (mud_preferences_window_fill_profiles): Added.
-       (mud_preferences_window_new): Takes a MudPreferences as argument
-       instead of GConfClient.
-
-       * src/mud-preferences-window.h (mud_preferences_window_new):
-       Changed prototype.
-
-       * src/mud-preferences.c [MudPreferencesPrivate]: Added profile_list.
-       (mud_preferences_finalize): Free private profile_list.
-       (mud_preferences_get_profiles): Added.
-       (mud_preferences_load_profiles): Added.
-
-       * src/mud-profile.[ch]: Added.
-
-       * src/mud-window.c [MudWindowPrivate]: Added prefs.
-       (mud_window_init): Commented out non-working toolbar.
-       (mud_window_new): Load preferences on startup.
-
-       * ui/main.glade (preferences_window): Renamed treeview and removed
-       headers.
-
-2004-04-10  Gareth Owen  <gowen72 yahoo com>
-
-       * configure.ac: Added en_GB to ALL_LINGUAS
-
-2004-04-07  Robin Ericsson  <lobbin localhost nu>
-
-       * src/Makefile.am: Added mud-preferences.[ch] and
-       mud-preferences-window.[ch]
-
-       * src/gnome-mud.c (main): Enabled gconf sanitycheck and pass gconf-
-       client to mud_window_new().
-
-       * src/mud-window.c [_MudWindowPrivate]: Added gconf_client.
-       (mud_window_preferences_cb): Added.
-       (mud_window_new): Store gconf-client in private data.
-
-       * src/mud-preferences.[ch]: Added.
-       * src/mud-preferences-window.[ch]: Added.
-
-       * ui/main.glade [main_window]: Added menuentry for preferences.
-       [preferences_window]: Added.
-
-2004-03-21  Gustavo Noronha Silva  <kov debian org>
-
-       * configure.ac: added pt_BR to ALL_LINGUAS
-
-2004-02-25  Robin Ericsson  <lobbin localhost nu>
-
-       * ROADMAP: Removed entries.
-
-       * src/mud-connection-view.c (mud_connection_view_finalize): Close
-       connection before unref the object.
-
-       * src/mud-window.c [_MudWindowPrivate]: Added current_view and
-       nr_of_tabs.
-       (mud_window_add_connection_view): Added checks for whether the
-       standard label should be removed and whether to display the tabs.
-       (mud_window_get_current_view): Removed.
-       (mud_window_remove_connection_view): Added.
-       (mud_window_disconnect_cb): Removed mud_window_get_current_view().
-       (mud_window_reconnect_cb): Ditto.
-       (mud_window_textentry_keypress): Ditto.
-       (mud_window_closewindow_cb): Added.
-       (mud_window_notebook_page_changed): Added.
-       (mud_window_textentry_activate): Added.
-       (mud_window_init): Added signals for close window, switch-notebook-page,
-       and also reset nr_of_tabs.
-       (mud_window_finalize): Added todo warning.
-
-       * ui/main.glade [main_window]: Changed name of closewindow widget.
-       Removed tabs from notebook.
-
-2004-02-23  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mud-connection-view.c (mud_connection_view_reconnect): Added.
-       (mud_connection_view_send): Added.
-       (mud_connection_view_new): Added authentication-type and proxy-type.
-
-       * src/mud-connection-view.h: Added prototypes.
-
-       * src/mud-window.c [_MudWindowPrivate]: Added textentry.
-       (mud_window_reconnect_cb): Added.
-       (mud_window_textentry_keypress): Added.
-       (mud_window_textentry_activate): Added.
-       (mud_window_init): Connect reconnect button and textentry.
-
-       * ui/main.glade: Added default width and height.
-       Changed named of reconnect-buttons and textentries.
-
-2004-02-22  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c (window_menu_help_about): Use gtk_widget_show_all so
-       the href shows up.
-       Add a callback to destroy the about dialog, probably fixing a random
-       segfault I was experiencing.
-
-2004-02-19  Robin Ericsson  <lobbin localhost nu>
-
-       * configure.ac: Added check for libnetwork.
-
-       * src/Makefile.am, src/mud-connection.c, src/mud-connection.h: Removed.
-
-       * src/mud-connection-view.c [_MudConnectionViewPrivate]: Added scrollbar
-       and box.
-       (mud_connection_view_str_replace): Added.
-       (mud_connection_view_feed_text): Added.
-       (mud_connection_view_add_text): Added.
-       (mud_connection_view_init): Added the terminal and scrollbar to a box.
-       (mud_connection_view_received_cb): Added.
-       (mud_connection_view_send_cb): Added.
-       (mud_connection_view_notify_cb): Added.
-       (mud_connection_view_error_cb): Added.
-       (mud_connection_view_disconnect): Added.
-       (mud_connection_view_new_with_params): Moved into _new().
-
-       * src/mud-connection-view.h [_MudConnection]: Changed connection from
-       MudConnection to GNetworkTcpConnection.
-       [MudConnectionColorType]: Added.
-
-       * src/mud-window.c (mud_window_add_connection_view): Set newly created
-       page active.
-       (mud_window_get_current_view): Added.
-       (mud_window_disconnect_cb): Added.
-       (mud_window_init): Connected disconnected buttons.
-
-       * ui/main.glade: Changed name of disconnect buttons.
-
-2004-02-18  Robin Ericsson  <lobbin localhost nu>
-
-       * First commit on glade-branch.
-
-       * autogen.sh: Changed required automake to 1.7
-       * configure.ac: Tipped version, added libglade and changed version of
-       libgnome, libgnomeui and vte.
-
-       * src/Makefile.am: Added GLADEDIR define, also removed a lot of
-       sourcefiles to be compiled, these will have to added later.
-
-       * src/gnome-mud.c: Remove globals, and code not used for the moment.
-
-       * Also added three GObjects, MudWindow, MudConnectio, MudConnectioView.
-
-2004-02-12  Jordi Mallach  <jordi sindominio net>
-
-       * src/gnome-mud.c (main): Set the default application window using
-       the new icon.
-
-       * NEWS: Set release date.
-       * configure.ac: Release gnome-mud 0.10.5.
-
-2004-02-12  Jordi Mallach  <jordi sindominio net>
-
-       * BUGS: Remove (old) items, just leave the Bugzilla pointer.
-       * NEWS: Update for 0.10.5.
-
-2004-02-11  Jordi Mallach  <jordi sindominio net>
-
-       * src/window.c (terminal_feed): Revert last patch, doesn't work well.
-       * src/net.c (connection_send_data): Patch from
-       Juliano Ravasi Ferraz <jferraz linkway com br>, convert all input
-       text to the current locale before sending. Solves bad display on
-       non-UTF-8 muds. Fixes bug #133517.
-
-2004-02-11  Robin Ericsson  <lobbin localhost nu>
-
-       * src/window.c (terminal_feed): Convert vte-feed-buffer from utf-8
-       to locale fixing problem where user has a non-utf-8 locale.
-
-2004-02-11  Jordi Mallach  <jordi sindominio net>
-
-       * src/pixmaps/gnome-mud.png, src/pixmaps/gnome-mud-tray-icon.png,
-       src/svg/gnome-mud.svg: New gnome-mud icon, courtesy of Daniel Taylor,
-       thanks!
-       * src/pixmaps/Makefile.am: Add new icons, and install gnome-mud.png in
-       the general pixmapsdir.
-       * src/tray.c (tray_update_icon): Use the new tray icon.
-       * src/init.c (window_menu_help_about): Use new app icon.
-       * gnome-mud.desktop.in: Likewise.
-
-       * src/python.c: Placate silly warning.
-
-       * src/init.c (window_menu_help_about): Add Adam, Nuno and Daniel to
-       the credits dialog.
-
-       * configure.ac: Fix AM_INIT_AUTOMAKE.
-       * autogen.sh: Require automake >= 1.6.
-
-2004-01-27  Robin Ericsson  <lobbin localhost nu>
-
-       * ROADMAP: Removed some entries we've fixed. Whohoo!! :)
-
-       * src/net.c (make_connection): Compile-fix for lost part of Adams
-       patch from yesterday.
-
-2004-01-26  Jordi Mallach  <jordi sindominio net>
-
-       * src/python.c (pyConnection_equals): New function, still unfinished.
-       (pyConnection_isFocus): New, return true if the connection object
-       is the current focused connection; false otherwise. Patch by
-       Adam Luchjenbroers.
-       * plugins/python/HPinfo.py: Updated version from Adam Luchjenbroers.
-
-2004-01-23  Jordi Mallach  <jordi sindominio net>
-
-       * plugins/python/HPinfo.py: Updated version from Adam Luchjenbroers.
-
-2004-01-20  Jordi Mallach  <jordi sindominio net>
-
-       * plugins/python/HPinfo.py: New plugin from Adam Luchjenbroers.
-       * plugins/python/Makefile.am (EXTRA_DIST): Add HPinfo.py.
-       * configure.in (AC_OUTPUT): Add plugins/python/Makefile.
-
-       * NEWS: Updated.
-
-2004-01-18  Jordi Mallach  <jordi sindominio net>
-
-       * src/python.c (pymud_pygtk_add_widget): Add missing gtk_widget_show()
-       call to fix PyGTK support. Patch from Adam Luchjenbroers.
-
-2004-01-13  Robin Ericsson  <lobbin localhost nu>
-
-       * src/gnome-mud.h (destroy): Changed proto.
-
-       * src/init.c (destroy): Changed from void to gboolean, returning TRUE
-       if we want to keep the main window.
-       (main_window): Changed signal from delete_event to delete-event.
-
-       * src/tray.c (destroy): Removed proto already existing in gnome.mud.h.
-
-2004-01-09  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac: Remove call to AM_GNU_GETTEXT_VERSION, which confuses
-       aclocal on some distros.
-
-       * python.c (pymud_version): Pass correct arguments to
-       gtk_box_pack_start(). Patch from Aravi. (This code is currently
-       disabled).
-
-2004-01-09  Jordi Mallach  <jordi sindominio net>
-
-       * src/net.c: Fix the path for connection status icons.
-
-2004-01-09  Jordi Mallach  <jordi sindominio net>
-
-       * src/tray.c (tray_menu): Show/Hide labels were inverted.
-
-       * src/pixmaps/Makefile.am: Embarrasing error...
-
-2004-01-09  Jordi Mallach  <jordi sindominio net>
-
-       * src/tray.c (tray_menu): Add mnemonics for menu items, change
-       "Exit" to "Quit". Added separator.
-
-2004-01-09  Jordi Mallach  <jordi sindominio net>
-
-       * src/map.c (path_type_dialog): Fix compile warning.
-
-       * src/init.c (window_menu_file_close), (main):
-       * src/net.c (action_send_to_connection): Only show connection
-       tabs if there's more than one, and set the main tab label to the
-       connection name.
-       Add a connection status icon to the connection tab.
-       * src/eggtrayicon.[ch]:
-       * src/tray.c: New file, notification area icon to show/hide the
-       main window, and notify about new data.
-       Patches by Nuno Sousa <nunofgs punkass com>.
-
-       * src/Makefile.am (SUBDIRS): Add pixmaps.
-       (GMPIXMAPSDIR): Added new directory for gnome-mud icons.
-       (gnome-mud_SOURCES): Updated.
-       * src/pixmaps/Makefile.am: New.
-       * src/pixmaps/connection.png, src/pixmaps/connection-offline.png:
-       Added.
-
-       * configure.ac (AC_OUTPUT): Updated.
-
-       * NEWS: Updated.
-
-2004-01-03  Jordi Mallach  <jordi sindominio net>
-
-       * src/modules_api.[ch], src/net.c: Reapply Quim's patch, with a pair
-       of changes suggested by Dani Carbonell to fix the potential
-       segfaults.
-
-2004-01-02  Jordi Mallach  <jordi sindominio net>
-
-       * src/modules_api.[ch], src/net.c: Unapply plugin patch which was
-       causing segfaults.
-
-       * Makefile.am (EXTRA_DIST): Add
-       intltool-modules/XML/Parser/Style/OrigTree.pm.
-
-       * NEWS: Updated.
-
-       * configure.ac: Released gnome-mud 0.10.4a.
-
-2003-12-22  Jordi Mallach  <jordi sindominio net>
-
-       * Makefile.am (EXTRA_DIST): Duh, remove configure.in.
-
-2003-12-22  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: Updated for 0.10.4.
-
-       * configure.ac: Release gnome-mud 0.10.4.
-
-2003-12-19  Robin Ericsson  <lobbin localhost nu>
-
-       * Applied patch from Quim Rovira.
-
-       * NEWS: Updated.
-
-       * src/modules_api.c (plugin_connection_send): Added.
-
-       * src/modules_api.h (plugin_connection_send): Prototype added.
-
-       * src/net.c (action_send_to_connection): Adds an extra \n so that
-       trigger parsing will only occur once.
-       (connection_send_data): Pass data through plugins registerd for
-       outbound data.
-
-2003-12-18  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: Updated.
-
-2003-12-18  Robin Ericsson  <lobbin localhost nu>
-
-       * src/net.c (check_aliases): Remove alias nesting.
-       Only check first word of input string for alises.
-
-2003-12-18  Jordi Mallach  <jordi sindominio net>
-
-       * gnome-mud.schemas.in: <menthaway> Oskuro: Wasn't Toto a band? ;-)
-       Or in other words, fix a silly typo.
-
-2003-12-17  Jordi Mallach  <jordi sindominio net>
-
-       * gnome-mud.schemas.in: Added missing <long> descriptions.
-
-2003-12-17  Robin Ericsson  <lobbin localhost nu>
-
-       * configure.ac: Added checkes for time.h and sys/time.h
-
-       * gnome-mud.schemas.in: Added key functionality/flush_interval
-
-       * src/gnome-mud [connection_data]: Added last_log_flush.
-       [system_data]: Added FlushInterval.
-
-       * src/init.c (create_connection_data): Added current timestamp to new
-       connection.
-
-       * src/prefs.c (prefs_gconf_changed): Added flush_interval key.
-       (load_prefs): Ditto.
-
-       * src/window.c: Added extern prefs.
-       (textfield_add): flush logfiles if a certain gconf settable amount
-       of time have passed since last lines were written. Fixes bug #116325.
-
-2003-12-17  Jordi Mallach  <jordi sindominio net>
-
-       * autogen.sh: Remove workarounds for configure.ac, gnome-common 2.4.0
-       groks new autoconf versions.
-
-       * src/gnome-mud.c (gconf_sanity_check_string): New function stolen
-       from gnome-games to check for badly installed schemas.
-       (main): check for "/apps/gnome-mud/functionality/terminal_type" before
-       starting.
-
-2003-12-12  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac (ALL_LINGUAS): Added "hr" (Croatian).
-
-       * src/data.c (find_data): Robin's patch to ignore unuseful spaces in
-       input. Fixes Debian Bug#222295.
-       * src/log.c (window_menu_file_save_log_file_ok_cb): Use
-       vte_terminal_get_text() to get the terminal data. Fix by Dani
-       Carbonell. Fixes Debian Bug#222294.
-       * src/profiles.c (connections_button_press_cb): Read data from the
-       correct column, to avoid segfaulting. Fix by Dani Carbonell.
-       Fixes #127166.
-
-       * NEWS: Updated.
-
-2003-11-20  Jordi Mallach  <jordi sindominio net>
-
-       * src/net.c (open_connection): initialize all the fields in
-       getaddrinfo() to fix a connect error on FreeBSD. Patch by Sjoerd
-       Simons.
-
-2003-11-11  Robin Ericsson  <lobbin localhost nu>
-
-       * 0.10.3 release.
-
-2003-09-29  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: Updated.
-
-2003-09-25  Robin Ericsson  <lobbin localhost nu>
-
-       * src/profiles.s (profilelist_cleanup): Removed. Fixes bug #117242.
-
-2003-09-12  Robin Ericsson  <lobbin localhost nu>
-
-       * src/profiles.c (profile_gconf_sync_connection_list): fixed error
-       that trashed the connectio list. Fixes bug #120044. Might fix
-       bug #119451.
-
-2003-09-02  Jordi Mallach  <jordi sindominio net>
-
-       * src/prefs.c: Use ngettext in the messages that need it.
-       Patch from Danilo.
-
-2003-09-02  Jordi Mallach  <jordi sindominio net>
-
-       * src/modules_api.c: Err, fix some more.
-
-2003-09-02  Jordi Mallach  <jordi sindominio net>
-
-       * gnome-mud.schemas.in: Fix typo.
-       * src/modules_api: Fix up a few wrong sentences.
-       * src/map.c: Add translator comment.
-       Thanks to Danilo Šegan for the suggestions.
-
-2003-09-01  Danilo Å egan  <dsegan gmx net>
-
-       * configure.ac: Added "sr" and "sr@Latn" to ALL_LINGUAS.
-
-2003-09-01  Metin Amiroff  <metin karegen com>
-
-       * configure.ac: Added "az" in ALL_LINGUAS.
-
-2003-08-11  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac (ALL_LINGUAS): Added Malayalam (ml).
-       * NEWS: Updated.
-
-2003-07-30  Duarte Loreto <happyguy_pt hotmail com>
-
-       * configure.ac: Added Portuguese (pt) to ALL_LINGUAS.
-
-2003-07-25  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: Updated.
-
-2003-07-25  Artur Flinta  <aflinta cvs gnome org>
-
-       * configure.ac: Added "pl" to ALL_LINGUAS.
-
-2003-07-17  Vincent van Adrighem  <V vanAdrighem dirck mine nu>
-
-       * configure.ac: Dutch translation added.
-
-2003-07-14  Robin Ericsson  <lobbin localhost nu>
-
-       * NEWS: updated.
-
-       * src/data.c, src/profiles.c: Escape wizard- and profilenames when
-       used in gconf. Fixes bug #117241.
-
-2003-07-14  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c (window_menu_help_about): Remove obsolete comment.
-
-2003-07-13  Miloslav Trmac  <mitr volny cz>
-
-       * configure.ac: Added "cs" (Czech) to ALL_LINGUAS.
-
-2003-07-11  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c (window_menu_help_about): Use markup for the copyright
-       symbol instead of UTF-8.
-       (main_window): Don't show the Python version on startup, as it's
-       mostly useless. Fixes bug #117108.
-
-       * src/net.c (append_word_to_command): Use g_string_append_printf
-       instead of deprecated g_string_sprintfa.
-
-2003-07-11  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c [toolbar_menu]: Oops, use N_(), not _().
-
-2003-07-11  Jordi Mallach  <jordi sindominio net>
-
-       * src/data (window_data): Don't include the function name in the
-       warning message. Fixes bug #117099.
-
-       * src/init.c [toolbar_menu]: Add hints to toolbar items.
-
-       * src/modules.c (do_plugin_information): Improve checkbox label.
-
-2003-07-11  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c (main_window): Fix another string with Commonwealth
-       English (Licence -> License).
-       (window_menu_help_about): Change the copyright symbol to UTF-8 and
-       unmark the string for translation. Fixes bug #117101.
-       * src/profiles.c, src/map.c: Add translator comments on messages that
-       can be misinterpreted. Fixes bug #117104.
-       * src/mudlist.c: Remove uneeded spaces from strings. Partially fixes
-       bug #117108.
-
-2003-07-10  Jordi Mallach  <jordi sindominio net>
-
-       * src/data.c, src/keybind.c, src/prefs.c, gnome-mud.schemas.in:
-       Use American English instead of Commonwealth English for "Color" and
-       "Center". Fixes bug #117100.
-       * src/log.c: Fix the construct of a message to make it not look weird.
-       Fixes bug #117102.
-       * src/map.c: Fix typo. Fixes bug #117103.
-       * src/prefs.c: Fix typos. Fixes bug #117107.
-       * src/keybind.c, src/prefs.c, src/profiles.c, gnome-mud.schemas.in:
-       Standarize the use of "keybinding" on all messages. Fixes bug #117105.
-       * gnome-mud.schemas.in: Use "directory", not "dir". Fixes bug #117106.
-
-2003-07-09  Robin Ericsson  <lobbin localhost nu>
-
-       * Release 0.10.2
-
-       * NEWS: Added date for 0.10.2.
-
-       * configure.ac: Dumped to 0.10.2.
-
-2003-07-04  Robin Ericsson  <lobbin localhost nu>
-
-       * src/init.c (destroy): Only display dialog when we have open
-       connections.
-       (window_menu_file_connect): Pressing enter now works on
-       connect dialog.
-
-2003-07-02  Abigail Brady  <morwen evilmagic org>
-
-       * src/telnet.c: Fix bug with dealing with SB.
-
-2003-07-02  Robin Ericsson  <lobbin localhost nu>
-
-       * NEWS: Fixed up a bit.
-
-2003-07-02  Abigail Brady  <morwen evilmagic org>
-
-       * src/telnet.c: Make it send out valid NAWS subnegs if our screen
-       size happens to contain 255 in its serialisation.
-
-       * src/telnet.c: Null-terminate the output buffer. Oops.
-
-2003-06-31  Jordi Mallach  <jordi sindominio net>
-
-       * README: Update for new mailing list, bugzilla, etc.
-
-       * NEWS: Update for 0.10.2.
-
-       * configure.ac: Remove some silly stuff.
-
-2003-06-30  Abigail Brady  <morwen evilmagic org>
-
-       * src/telnet.c, src/init.c, src/gnome-mud.h: Fix telnet
-       handling to work if telnet sequences are split across
-       packets.
-
-2003-06-30  Robin Ericsson  <lobbin localhost nu>
-
-       * plugins/text.plugin: Make it compile again.
-
-       * src/Makefile.am: Remove GTK_ENABLE_BROKEN=1
-
-       * src/modules.c (plugin_clist_select_row_cb):
-       Changed from GtkText to GtkTextView.
-       (do_plugin_information): Ditto.
-
-       * src/modules_api.c [__MODULE__]: Remove define.
-
-       * src/mudlist.c: Rewrote to use GtkTreeModel and
-       GtkTextView instead of GtkTree and GtkText.
-
-2003-06-25  Jordi Mallach  <jordi sindominio net>
-
-       * BUGS: Add a pointer to bugzilla.
-
-       * configure.ac (AC_INIT): Remove BUG-REPORT argument.
-
-       * gnome-mud.desktop.in: Add X-GNOME-Bugzilla entries.
-
-2003-06-24  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac (ALL_LINGUAS): Added "mk" (Macedonian).
-
-       * src/bind.c (window_keybind): Replace gdk_window_raise() &
-       gdk_window_show() with gtk_window_present().
-       * src/modules.c (do_plugin_information): Likewise.
-       * src/mudlist.c (window_mudlist): Likewise.
-       * src/prefs.c (window_prefs): Likewise.
-       * src/profiles.c (profilelist_dialog): Likewise.
-       (window_profiles): Likewise.
-       (window_profile_edit): Likewise.
-
-2003-06-18  Fatih Demir <kabalak gtranslator org>
-
-       * configure.ac: Added Turkish ("tr") to the languages' list and re-
-               ordered the languages list there.
-
-2003-06-18  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c (window_menu_help_about): Check for an existing about
-       window before doing anything. Fixes a crash when you try to open the
-       about dialog multiple times.
-
-2003-06-10  Jordi Mallach  <jordi sindominio net>
-
-       * src/gnome-mud.c (main): Yet another embarrasing bugfix, initialize
-       the gettext textdomain correctly, specifying UTF-8 as the codeset.
-
-2003-06-09  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: Update for 0.10.1.
-
-       * configure.in: Bump version to 0.10.1, update LSMDATE.
-
-2003-06-08  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c (text_entry_key_press_cb): Patch from Robin to fix the
-       PageUp/PageDown segfault, by using the Vte function instead of the
-       scrolled_window one.
-
-       * doc/gnome-mud-manual/C/gnome-mud-manual.xml: Fix DTD declaration.
-       * doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api.xml: Likewise.
-
-       * NEWS: Updated.
-
-2003-06-06  Jordi Mallach  <jordi sindominio net>
-
-       * src/net.c (read_from_connection): Patch from Vashti, fixes a crash
-       in connections with no profile set.
-
-2003-06-05  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: Updated, docs are finally working.
-
-2003-06-05  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c: Remove fixed FIXMEs.
-
-       * BUGS: Add a few known issues.
-
-2003-06-05  Abigail Brady  <morwen evilmagic org>
-
-       * src/map.c, net.c, prefs.c, map-link.c: Backport to C90, which has
-       declarations before code.
-
-       * src/prefs.c: Kill a segfault if there are no saved colour palette
-       settings.
-
-Wed Jun  4 19:53:54 CEST 2003  Jordi Mallach  <jordi sindominio net>
-
-       * doc/gnome-mud-manual/C/topic.dat: Removed.
-       * doc/gnome-mud-plugin-api/C/topic.dat: Removed.
-       * doc/xmldocs.make: change docdir to install the manuals into
-       $(datadir)/gnome/help/$(PACKAGE)/$(lang), so gnome_help_display finds
-       the documentation.
-
-       * src/Makefile.am: Switch to a more common layout without a special
-       target for gnome-mud.o.
-
-Wed Jun  4 19:00:20 CEST 2003  Jordi Mallach  <jordi sindominio net>
-
-       * src/Makefile.am: Pass a few needed variables at compile time.
-
-       * src/gnome-mud.c (main): Init gnome properly with gnome_program_init.
-
-       * src/init.c (window_menu_help_manual_activate_cb): Show an error
-       message if viewing help fails.
-       (window_menu_plugin_api_manual_activate_cb): Likewise.
-
-Tue Jun  3 18:02:02 CEST 2003  Jordi Mallach  <jordi sindominio net>
-
-       * gnome-mud.desktop.in: Changes to make it freedesktop.org-compliant.
-
-Tue Jun  3 15:54:46 CEST 2003  Jordi Mallach  <jordi sindominio net>
-
-       * doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api.xml: Change
-       inclusion of monitor.py from an ENTITY to a XInclude.
-       * doc/gnome-mud-manual/C/gnome-mud-manual-C.omf: Change section to
-       GNOME|Games so it works with Yelp.
-       * doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api-C.omf: Change
-       section to GNOME|Development.
-       * doc/gnome-mud-plugin-api/C/Makefile.am: add monitor.py to entities.
-
-       * src/init.c, src/python.c: disable PyGTK stuff for now, as it's
-       broken according to Petter.
-
-       * ROADMAP: Updated.
-
-Mon Jun  2 17:41:35 CEST 2003  Jordi Mallach  <jordi sindominio net>
-
-       * doc/gnome-mud-manual/C/gnome-mud-manual-C.omf: Fix DTD errors.
-       * doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api-C.omf: Likewise.
-
-Mon Jun  2 17:08:47 CEST 2003  Jordi Mallach  <jordi sindominio net>
-
-       * doc/gnome-mud-manual/C/gnome-mud-manual.sgml: Rename to .xml.
-       * doc/gnome-mud-manual/C/gnome-mud-manual.xml: Convert to GNOME2
-       documentation format.
-       * doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api.sgml,
-       doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api.xml: Likewise.
-       * doc/omf-output/Makefile.am: Added, scrollkeeper stuff.
-       * doc/Makefile.am: Updated.
-       * configure.ac: add doc/omf-install/Makefile to AC_OUTPUT.
-
-
-Fri May 30 12:49:42 CEST 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * AUTHORS, ROADMAP, configure.ac: Update for 0.10.0.
-
-Wed May 28 13:26:44 CEST 2003  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS, README: Update for 0.10.0.
-
-Wed May 28 10:43:31 CEST 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * Restructuring of gconf keys.
-
-Tue May 20 12:41:44 CEST 2003  Jordi Mallach  <jordi sindominio net>
-
-       * gnome-mud.schemas.in: Grammar fixes.
-       * src/prefs.c (window_prefs): Reword movement commands tooltip a bit.
-
-Fri May  2 11:25:36 CEST 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * Big patch from Remi Bonnet on the automapper.
-
-       * po/*.po: Updated.
-
-Wed Apr  9 14:22:59 CEST 2003  Jordi Mallach  <jordi sindominio net>
-
-       * Makefile.am: Install desktop file in the freedesktop compliant
-       directory.
-
-       * configure.ac: Unquoted GETTEXT_PACKAGE.
-
-Mon Apr  7 15:59:36 CEST 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * configure.ac: Changed gtetrinet to gnome-mud :)
-
-Fri Apr  4 19:19:37 IST 2003  Naba Kumar   <naba gnome org>
-
-       * src/keybinding.c(keybind_button_add_clicked_cb): Fixed a memory leak.
-       Fixed a crash bug due to inappropriate looping of KEYBIND_DATA list
-       in a for loop (crash occurs when we try to add the second keybinding).
-
-       * src/gnome-mud.h(main): Calls gnome_init() before
-       gconf_client_get_default() (and fixes a crash bug).
-
-       * src/data.c(data_button_add): Fixed a crash bug (which occurs
-       when we try to add the second trigger definition). The argument
-       to the strdupv() should be a NULL terminated -- added third item
-       in list[] and set it to NULL.
-
-Sat Apr  5 00:14:55 CEST 2003  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac: Define and substitute GETTEXT_PACKAGE.
-
-       * src/prefs.c (window_prefs): Added missing mnemonic.
-
-Thu Apr  3 19:53:42 CEST 2003  Jordi Mallach  <jordi sindominio net>
-
-       * gnome-mud.schemas.in: Typo and style fixes.
-
-       * src/prefs.c (window_prefs): Reword some tooltips.
-       Add mnemonics to preferences.
-
-       * src/init.c (window_menu_help_about): Unmark author names for
-       translation, as they have no non-ASCII characters.
-
-       [help_menu]: Change help items to GNOME_APP_UI_ITEM.
-       (window_menu_help_manual_activate_cb): New function, launch User
-       Manual help.
-       (window_menu_plugin_api_manual_activate_cb): Likewise, for Plugin API.
-
-Wed Apr  2 15:23:34 CEST 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * Fixed #623355.
-
-       * gnome-mud.schemas.in: Added key connection_list.
-
-       * src/gnome-mud.h [wizard_data]: Removed.
-
-       * src/profilce.c (connection_send_data): secret added.
-       (connection_send_secret): Added.
-       (profile_gconf_sync_connection_list): Added.
-       (profile_gconf_sync_wizard): Added.
-       (profile_load_keybinds): Load connections.
-
-Wed Apr  2 10:23:57 CEST 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * src/data.c (window_data): Changed to stock buttons.
-
-       * src/init.c (destroy): Dialog rewritten.
-       (window_menu_file_connect): Dialog rewritten.
-
-       * src/keybind.c: Unused variables removed.
-       (window_keybind): Changed to stock buttons.
-
-       * src/mudlist.c: Remove the trailing \n from mudnames.
-
-       * src/net.c: Pack vscrollbar ok.
-
-       * src/prefs.c: Added tooltips to color prefs, and rewrote
-       the preferences.
-
-       * src/profiles.c (window_profiles): Changed order of buttons.
-
-       * src/window.c (popup_window): Dialog rewritten.
-
-       * src/*.po: Updated translations.
-
-Fri Mar 28 10:58:45 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * gnome-mud.schemas.in: Changed gnome-terminal to gnome-mud
-
-       * po/*.po: Updated translations.
-
-       * src/profiles.c (load_profiles, profile_load_list,
-       profile_load_keybinds): Removed debug.
-
-Fri Mar 28 10:01:55 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * gnome-mud.schemas.in: Added keys profile_list, profile aliases,
-       profile variables, profile triggers and profile keybinds.
-
-       * data.c, gnome-mud.h, init.c, keybind.c, net.c, prefs.c,
-       profiles.c: Profiles rebuilt using GList instead GtkCList, and
-       also saving via gconf.
-
-Mon Mar 17 16:20:38 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * Fixes bug #533313.
-
-       * gnome-mud.schemas.in: Added key history_count.
-
-       * src/init.c (main_window): scrollbar is now packed correctly.
-
-       * src/net.c (read_from_connection): Re-added pre_process().
-
-       * src/prefs.c (prefs_gconf_changed): Removed debug message.
-       Added key history_count.
-       (load_prefs): Added key history_count
-       (prefs_entry_history_cb): Changed to gconf
-       (window_prefs): historyentry changed to spinbutton
-
-       * src/telnet.c (pre_process): Added Petter E. Stokke's patch
-       for telnet NAWS negotiation.
-
-Wed Mar 12 11:35:34 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * gnome-mud.schemas.in: Added key scroll_on_output.
-
-       * src/gnome-mud.h [system_data]: Added ScrollOutput.
-
-       * src/init.c (create_connection_data): Set scroll on output.
-
-       * src/prefs.c: Removed a lot of unused callbacks.
-       (prefs_changed_tab_location): Added.
-       (prefs_gconf_changed): Added which takes care.
-       (load_prefs): Changed to use macros.
-       (prefs_scroll_output_changed_cb): Added.
-       (window_prefs): Added scroll on output.
-
-Tue Mar 11 10:47:28 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * This commit fixed bug #569757.
-
-       * configure.ac: VTE changed from 0.10.20 -> 0.10.26
-
-       * gnome-mud.schemas.int: Added keys last_log_dir and
-       scrollback_lines.
-
-       * src/gnome-mud.h [system_data]: Added Scrollback.
-
-       * src/init.c (create_connection_data): Set scrollback on
-       init.
-
-       * src/log.c (file_selection_cb_open): Set preference via
-       gconf instead of directly.
-       (window_menu_file_save_log_file_cb): Same.
-
-       * src/net.c (open_connection): Connection refused would not stop
-       the connection mechanism, fixed.
-
-       * src/prefs.c (prefs_logdir_changed): Added.
-       (prefs_scrollback_changed): Added.
-       (load_prefs): Added key last_log_dir and scrollback_lines.
-       (prefs_scrollback_value_changed_cb): Added.
-       (window_prefs): Added SpinButton for changing scrollback.
-
-       * src/window.c (textfield_add): Fixed colors for message_sent,
-       _err and _system.
-
-Mon Mar 10 16:13:10 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * This commit fixed bug #607679.
-
-       * gnome-mud.schemas.in: Added key tab_location.
-
-       * src/gnome-mud.h: Define TAB_LOCATION_*
-       [system_data]: Added TabLocation
-
-       * src/init.c (main_window): Do not force GTK_POS_BOTTOM, remove
-       commented code.
-
-       * src/prefs.c (tab_location_by_name): Added.
-       (tab_location_by_int): Added.
-       (tab_location_by_gtk): Added.
-       (prefs_tab_location_changed): Added.
-       (load_prefs): Added key tab_location
-       (prefs_tab_location_changed_cb): Added.
-       (window_prefs): Added third page with tab location chooser.
-
-Mon Mar 10 11:28:18 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * gnome-mud.schemas.in: Added key palette.
-
-       * src/gnome-mud.h [system_data]: Removed BoldForeground and
-       changed Colors vector from 16 to C_MAX.
-       (save_prefs): Removed prototype.
-
-       * src/init.c (create_connection_data): Added palette to
-       vte_terminal_set_colors().
-
-       * src/log.c (file_selection_cb_open): Removed call to save_prefs()
-       (window_menu_file_save_log_file_ok_cb): Same.
-
-       * src/prefs.c (prefs_load_color): Removed.
-       (prefs_save_color): Removed.
-       (prefs_color_changed): Removed check for boldforeground and
-       added palette to vte_terminal_set_colors()
-       (prefs_palette_changed): Added.
-       (load_prefs): Load palette.
-       (save_prefs): Removed.
-       (prefs_apply_cb): Removed.
-       (prefs_select_palette_cb): Added.
-       (prefs_set_color): Removed boldforeground stuff.
-
-Fri Mar  7 16:06:17 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * gnome-mud.schemas.in: Added keys terminal_type, mudlist_file,
-       background_color, foreground_color.
-
-       * src/init.c (create_connection_data): Set right colors on the
-       terminal. Fixes bug #577598.
-
-       * src/prefs.c (color_to_string): Added.
-       (prefs_terminal_type_changed): Added.
-       (prefs_mudlist_file_changed): Added.
-       (prefs_color_changed): Added.
-       (load_prefs): Added loading terminal_type, mudlist_file,
-       fore- and background color.
-       (prefs_entry_terminal_cb): Changed to gconf
-       (prefs_entry_mudlistfile_cb): Changed to gconf
-       (prefs_select_fg_color_cb): Renamed and changed to gconf
-       (prefs_select_bg_color_cb): Added.
-
-Wed Feb 26 13:18:03 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * gnome-mud.schemas.in: Added keys commdev, echo, keeptext and
-       system_keys.
-
-       * src/prefs.c: Commented out several functions that was made
-       unused by using gconf.
-       (prefs_commdev_changed): Added.
-       (prefs_echo_changed): Added.
-       (prefs_keeptext_changed): Added.
-       (prefs_system_keys_changed): Added.
-       (prefs_fontname_changed): use the new prefs.FontName value.
-       (load_prefs): New code for keys commdev, echo, keeptext and
-       system_keys.
-       (prefs_checkbox_keep_cb): Changed to gconf.
-       (prefs_checkbutton_disablekeys_cb): Changed to gconf.
-       (prefs_entry_divide_cb): Changed to gconf.
-       (prefs_checkbox_echo_cb): Changed to gconf.
-
-Mon Feb 24 12:43:57 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * .cvsignore: Added gnome-mud.schemas
-
-       * Makefile.am: Added schemas
-
-       * configure.ac: Added GCONF checks
-
-       * po/POTFILES.in: Added gnome-mud.schemas.in
-
-       * src/gnome-mud.c (main): Added gconf initialization
-
-       * src/prefs.c (prefs_fontname_changed): New function
-       (load_prefs): prefs.FontName is now using gconf
-       (prefs_select_font_cb): Now using gconf
-
-Fri Feb 21 12:27:34 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * src/gnome-mud.h: Cleanup
-
-       * src/init.c (create_connection_data): Created
-       (main_window): Cleanup
-
-       * src/net.c (make_connection): Added vte for new tabs
-
-       * src/prefs.c: prefs.Freeze removed.
-
-       * src/window.c: Lot of old ANSI-code removed, this is handled
-       by vte now
-
-Tue Feb 18 15:22:32 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * src/init.c: Fixed bug #539661
-
-Tue Feb 18 11:36:21 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * Added patch from Petter which adds support for python-gtk2
-
-       * src/init.c, log.c, net.c, window.c: initial support for vte
-
-       * src/precs.c (prefs_color_frame): Remove pango error.
-
-Tue Jan 14 13:45:40 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * src/profiles.c (connections_button_press_cb): Now returns
-       false so button_press_event is propagated further to select row
-
-Mon Jan 13 14:06:44 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * src/profiles.c: Fixed apply button and re-added cancel button.
-
-Mon Jan 13 13:33:34 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * ROADMAP: Rearranged.
-
-       * src/init.c (main_window): Background is now set.
-
-Thu Jan  9 01:33:17 CET 2003  Jordi Mallach  <jordi sindominio net>
-
-       * Makefile.am: fix typo.
-       * autogen.sh: do not rm the configure.in symlink (gnome-autogen.sh is
-       broken still).
-
-Thu Jan  9 00:13:41 CET 2003  Jordi Mallach  <jordi sindominio net>
-
-       * Makefile.am (EXTRA_DIST): add intltool files.
-       (Applications_in_files): added by intltool-prepare.
-       (Applications_DATA): modified by intltool-prepare.
-       * configure.ac (AC_PROG_INTLTOOL): added intltool support.
-       * gnome-mud.desktop: replaced...
-       * gnome-mud.desktop.in: ... by this.
-       * .cvsignore: update ignorable files.
-
-
-Wed Jan  8 21:52:12 CET 2003  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac: add AM_GLIB_GNU_GETTEXT, so gnome-autogen behaves.
-
-Wed Jan  8 21:05:24 CET 2003  Jordi Mallach  <jordi sindominio net>
-
-       * autogen.sh: use gnome-autogen.sh.
-       * macros/*: removed. GNOME2 uses system wide macros.
-
-Wed Jan  8 13:10:24 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * src/data.c (data_button_add): g_strdup on text entry
-       (text_entry_send_command): gchar -> const gchar
-       (keybind_button_add_clicked_cb): g_strdup and null check added
-       (stop_logging_connection): gchar -> const gchar + g_strdup
-
-       * src/map.c (save_maps): gchar -> const gchar
-       (file_sel_delete_event): ditto
-       (load_automap_from_file): ditto
-
-       * src/mudlist.c (mudlist_parse_hoststring): gchar -> const gchar
-       (mudlist_button_connect_cb): ditto
-       (mudlist_button_import_cb): ditto
-
-       * src/prefs.c (prefs_entry_terminal_cb): added g_strdup
-       (prefs_entry_mudlistfile_cb): ditto
-       (prefs_entry_divide_cb): ditto
-
-       * src/profiles.c (profilelist_new_profile): Added const + g_strdup
-       (connections_find): gchar -> const gchar
-       (connections_button_info_cancel_cb): Removed
-       (window_profiles): Removed button_info_cancel
-       (window_profile_edit): fixed stock images
-
-Wed Jan  8 09:34:47 CET 2003  Robin Ericsson  <lobbin localhost nu>
-
-       * Makefile.am: No need for macros subdir
-
-       * ROADMAP: Added a new entries
-
-       * configure.ac: Moved to autoconf 2.5 and GNOME2
-
-       * macros/*: GNOME2 changes.
-
-       * po/*.po: Updated.
-
-       * src/*.c: GNOME2 changes.
-
-Tue Nov 12 11:32:48 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/profiles.c: apply dos2unix to remove CRLF strings. Have been
-       there since day one!
-
-Sun Nov 10 03:26:53 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/data.c, src/init.c, src/keybind.c src/prefs.c: fix a few
-       American English labels (color, center, license) spotted by Abigail.
-       Americans, if it hurts your eyes please submit an en_US.po.
-
-Mon Nov  4 02:10:44 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c (window_menu_plugin_api_manual_activate_cb): new
-       function, create a GtkMenuItem for the plugin API.
-       Add it to help_menu.
-
-Mon Nov  4 01:26:13 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c (window_menu_help_manual_activate_cb): search for
-       "gnome-mud-manual", not "gnome-mud". Thanks, Kevin Ryde.
-
-Tue Oct 29 20:12:21 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * Upgrade to GNU gettext 0.11.5.
-       * configure.ac: add AM_GNU_GETTEXT_VERSION(0.11.5) for autopoint.
-
-       * .cvsignore: add mkinstalldirs.
-
-Tue Oct 29 19:47:13 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/telnet.c, src/window.c: patch from
-       Abigail Brady <morwen evilmagic org> which fixes the handling of a
-       few telnet codes + minor cleanups.
-
-Mon Oct 28 19:19:49 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * configure.ac: lots of cleanups. Temporarily remove the debug stuff.
-       Add checks for getaddrinfo and getnameinfo and a configure. Better
-       zlib check.
-       * Makefile.am (CFLAGS): removed definition.
-       * src/Makefile.am (CFLAGS): removed definition.
-       (gnome_mud_LDADD): add $(Z_LIBS).
-
-Mon Oct 28 17:09:16 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * AUTHORS: change contact info for Abigail, per request.
-
-Wed Sep 11 00:36:44 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/net.c: Patch from Sjoerd Simons <sjoerd beast luon net>
-       which adds IPv6 support.  Woohoo!
-
-       * ROADMAP: added IPv6 to 0.10.
-       * NEWS: add 0.10.0 items.
-
-Thu Aug  1 16:41:01 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * Move to autoconf 2.50.
-
-       * configure.in: renamed to configure.ac.
-       * configure.ac: changes for autoconf 2.52, and remove some old
-       stuff.
-       * acclocal.h: removed, included templates in configure.ac.
-       * autogen.sh: fail if one command returns error.
-
-Tue Jul 30 10:59:36 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * po/Makevars: set Copyright holder to Robin.
-
-Sat Jul  6 02:07:31 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/python.c (python_init): changed search path of python modules
-       to "~/.gnome-mud/plugins/".
-
-Wed Jul  3 17:20:32 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * Upgraded to gettext 0.11.2.
-
-       * Makefile.am (SUBDIRS): Added macros.
-       (SUBDIRS): Removed intl.
-       (ACLOCAL_AMFLAGS): New variable.
-       (EXTRA_DIST): Added config.rpath.
-       * configure.in (AC_OUTPUT): Added macros/Makefile.
-       (AC_OUTPUT): Removed intl/Makefile.
-
-Wed Jul  3 14:51:16 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * Makefile.am: removed man_MANS, trimmed down EXTRA_DIST.
-       * configure.in: defined LSMDATE, bumped release number.
-       * gnome-mud.lsm.in: New template, replacing gnome-mud.lsm.
-       * gnome-mud.1: moved to doc/gnome-mud.6.
-
-       * doc/Makefile.am: man_MANS = gnome-mud.6.
-
-       * src/Makefile.am: define $(gamesdir) and use it to install the
-       binary.
-
-Tue Jul  2 11:32:41 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * Release 0.9.1.
-
-       * configure.in: Update to 0.9.1.
-       * NEWS, gnome-mud.lsm: Updated for 0.9.1.
-
-Mon Jul  1 17:57:05 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api-C.omf:
-       corrected typo in tag.
-
-Mon Jul  1 12:29:15 CEST 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * po/sv.po: updated.
-
-Tue Jun 25 14:31:25 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/prefs (window_prefs): i18nized a string.
-       * po/{ca,es}.po: updated.
-       * po/fr.po: French update by Martin Quinson.
-
-Mon Jun 24 16:46:24 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: added items for 0.9.1.
-
-Mon Jun 24 13:00:05 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c: added mnemonics to all menu items.
-       (window_menu_help_about): removed iso-8859-1 characters from C
-       strings.
-       * src/modules.c (do_plugin_information): removed gettext call to
-       an empty string.
-       * po/{ca,es}.po: Updated.
-
-Sun Jun 23 13:33:21 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * gnome-mud.desktop: fixed "Type" so it works under GNOME 2.
-
-Tue May  7 17:52:18 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api.sgml: removed
-       markup from <title>s, and a typo.
-
-Tue May  7 16:40:47 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * doc/gnome-mud-manual/C/gnome-mud-manual-C.omf: updated
-       manual filename.
-       * doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api-C.omf: ooops...
-       add a propper description, not just a copy from g-m-manual.
-
-Tue May  7 16:04:59 CEST 2002  Jordi Mallach  <jordi sindominio net>
-
-       * Completely revamped doc/.
-       * doc/C: moved to doc/gnome-mud-manual/C/.
-       * doc/python: rewritten in DocBook, moved to
-       doc/gnome-mud-plugin-api/C.
-       * configure.in: changes for new layout.
-       * config.h.in: removed.
-
-Fri Mar 15 19:39:52 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * doc/C/Makefile.am: oops, fixed typo in previous commit.
-
-Fri Mar 15 16:29:02 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * doc/C/Makefile.am: added missing screenshots to figs list.
-
-Fri Mar 15 08:04:40 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * gnome-mud.lsm, configure.in, NEWS: Updated version.
-
-Mon Mar 11 07:56:18 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * src/net.c (read_from_connection): Fixed formatting errors.
-
-Fri Mar  1 17:49:22 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * README: typo fixes, and misc corrections.
-
-Fri Mar  1 15:11:24 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * src/gnome-mud.h: added action_send_to_connection()
-
-       * src/init.c (text_entry_select_child_cb): Removed.
-       (text_entry_activate): Moved here from net.c/send_to_connection
-       (text_entry_key_press_cb): Pretty much rewritten :)
-       (main_window): Combo box removed for a simple GtkEntry.
-
-       * src/net.c (read_from_connection): Small patch from Vashti that
-       seems to fix the last errors in MCCP.
-       (send_to_connect): Moved to init.c
-
-       * src/prefs.c (load_prefs): Small fix.
-
-Thu Feb 28 14:37:11 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * src/profiles.c: A small comment snuck into the rewrite earlier
-       today.
-
-Thu Feb 28 13:22:40 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * po/{ca, es, fr}.po: unfuzz.
-
-       * doc/C/gnome-mud.sgml: several changes to <articleinfo>.
-
-Thu Feb 28 13:04:48 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * po/{es, de, ca, fr}.po: make update-po
-       * po/sv.po: added one missing string.
-
-       * src/net.c (connection_send_telnet_control): Compile fix for
-       bug #523666.
-
-       * src/profiles.c (profilelist_new_input_cb): Renamed to
-       profilelist_new_profile
-       (profilelist_new_cb): Changed gnome_request_dialog to
-       gnome_dialog.
-
-Wed Feb 27 14:54:35 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * po/sv.po: added two missing strings.
-
-Wed Feb 27 14:01:53 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * po/fr.po: added two missing strings, from Mt.
-
-Wed Feb 27 13:11:48 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * doc/C/gnome-mud.sgml: removed fixed bugs from the "Bugs and
-       Limitations" section.
-
-Wed Feb 27 12:38:08 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: minor additions.
-       * ROADMAP: MCCP fixed.
-       * gnome-mud.desktop: added French translation. Yes, my French sucks.
-
-Tue Feb 26 21:04:16 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: fr updated.
-       * po/fr.po: French translation update by Martin Quinson.
-
-Tue Feb 26 08:02:24 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * NEWS: Added sv as language.
-
-       * src/net.c (read_from_connection): Compile fix when not using
-       MCCP
-
-       * src/telnet.c (pre_process): Patch from Vashti regarding IAC GA
-       and EOR.
-
-Mon Feb 25 12:37:39 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/net.c: patch by Vashti & Robin: fixes MCCP crash (really).
-       As a bonus effect, it causes some text corruption every now and
-       then.
-
-Sun Feb 24 02:40:42 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * configure.in: changed python detection script so you can
-       specify a diferent python binary. Patch from Gergely Nagy.
-
-Sat Feb 23 22:32:59 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * doc/C/gnome-mud.sgml: added descriptions for latest features.
-       * doc/C/figures/main-window.png: updated.
-
-Fri Feb 22 15:49:48 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * po/sv.po: Updated again. :)
-
-Fri Feb 22 08:28:12 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * po/sv.po: Updated translations.
-
-       * src/window.c: Applied patch from Vashti.
-
-Thu Feb 21 15:43:46 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * po/ca.po: corrected a few typos.
-
-Thu Feb 21 14:55:39 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: updated.
-
-       * src/data.c: removed duplicate libintl.h includes.
-       * src/init.c: likewise.
-       * src/modules.c: likewise.
-       * src/modules_api.c: likewise.
-       * src/net.c: likewise.
-       * src/prefs.c: likewise.
-
-       * src/init.c: added a few missing gettext calls.
-       * src/log.c: added gettext calls to translatable strings.
-
-       * po/POTFILES.in: added src/log.c.
-
-       * po/ca.po, po/es.po: Updated translations.
-       * po/de.po, po/fr.po, po/sv.po: update-po.
-
-Mon Feb 18 12:16:41 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * Added 2 new patches from Vashti, one adds a reconnect feature.
-       and the other fix for aliases.
-
-       * ROADMAP: Moved around.
-
-Wed Feb 13 07:25:14 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * NEWS, ROADMAP: Fixed nested alias.
-
-       * src/log.c: Changed the includes a bit.
-
-       * src/net.c (heck_aliases): Rewritten, now returns void
-       (action_send_to_connection): Now uses a GString internally.
-
-Tue Feb 12 07:51:34 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * Added patch from Vashti which fixes blackbold bug.
-
-       * AUTHORS: Added more information on Vashti
-       * ROADMAP: Added new idea
-
-       * src/gnome-mud.h (system_data): BoldForeGround added.
-       * src/init.c (window_menu_help_about): Removed some contributers,
-       although they still exist in AUTHORS.
-       * src/prefs.c (load_prefs): Added BoldForeground.
-       (prefs_color_frame): Likewise.
-       * src/telnet.c (pre_process): Bug fix, overriting memory which
-       would destroy buf and cd variable.
-       * src/window.c (con_escm): Changed by Vashti (see patch above)
-
-Mon Feb 11 14:50:34 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * Forgot src/log.c.
-
-Mon Feb 11 08:50:34 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * Added new patch from Vashti
-       lets you turn session recording (logging in real time) on and off
-    from the file menu.
-
-       * moves the existing logging code into the same file as the new code,
-       and renames the option on the menu so as to avoid confusion.
-
-       * adds a new message type to textfield_add (MESSAGE_SYSTEM)
-       which is used for non-error system messages.
-
-       * prettifies a few places where strerror(errno) was printed to
-       the window.
-
-       * explicitly closes all open connections and logfiles on
-       program exit.
-
-Mon Feb 11 08:34:56 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * src/net.c (pre_process): Fixed formatting of source to be more
-       readable.
-
-Thu Feb  7 04:00:27 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * doc/C/gnome-mud.sgml: fixes and additions for 0.9.0 features.
-       Python docs still not merged, though.
-
-Wed Feb  6 23:57:20 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * doc/C/main-window.png: moved to figures/.
-       * doc/C/preferences-window.png: likewise.
-       * doc/C/profiles-window.png: likewise.
-
-       * doc/C/figures/main-window.png: updated for 0.9.0.
-       * doc/C/figures/preferences-window.png: likewise.
-       * doc/C/figures/profiles-window.png: likewise.
-       * doc/C/figures/mudlist-window.png: new image.
-       * doc/C/figures/connections-window.png: new image.
-
-       * doc/sgmldocs.make: updated.
-       * doc/C/Makefile.am: cleaned up.
-
-       * doc/C/gnome-mud.sgml: moved to DocBook 4.0. Still needs merge of
-       Petter's stuff and extensions for new features.
-
-Tue Feb  5 19:46:22 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * macros/codeset.m4: removed, looks it's not really needed.
-       * macros/compiler-flags.m4: likewise.
-       * macros/curses.m4: likewise.
-       * macros/gettext.m4: likewise.
-       * macros/glibc21.m4: likewise.
-       * macros/iconv.m4: likewise.
-       * macros/isc-posix.m4: likewise.
-       * macros/lcmessage.m4: likewise.
-       * macros/progtest.m4: likewise.
-
-       * macros/gnome-gettext.m4: added. This looks like the right macro
-       for GNOME apps. It should work with automake 1.4 and 1.5.
-
-Tue Feb  5 16:07:18 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/gnome-mud.h, src/net.c, src/prefs.c, src/telnet.c: new
-       patch from Vashti, adds terminal autodetection support, allows
-       users to specify their term type from preferences, and other
-       cleanups for telnet code.
-
-Tue Feb  5 15:26:15 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mudlist.c (mudlist_parse_hoststring): Added.
-       (mudlist_button_import_cb): Added.
-       (window_mudlist): Different behavior if called from wizard
-       or not.
-
-       * src/profiles.c (connections_fields_clean): Moved from
-       connections_button_info_cancel_cb.
-       (connections_button_info_fethc_cb): Added.
-
-Tue Feb  5 12:21:17 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mudlist.c (mudlist_fix_codebase): Added, now changes some
-       codebases into better namnes.
-
-Mon Feb  4 22:45:20 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/mccpDecompress.c: include config.h.
-
-Mon Feb  4 13:13:21 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * ROADMAP: Updated
-
-       * src/gnome-mud.c: init_window renamed to main_window
-
-       * src/init.c: Renamed of alot of functions to more intelligent
-       names.
-       * src/keybind.c: Ditto.
-       * src/prefs.c: Renamed copy_preferences to prefs_copy.
-
-Mon Feb  4 11:58:14 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * ROADMAP: Updated
-
-       * src/keybind.c (on_KB_button_delete_clicked): Segfault fix,
-       now uses correct profile data.
-
-Mon Feb  4 11:22:15 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * src/init.c: More MCCP #ifdef's
-       * src/mccpDecompress.c: Ditto
-
-Mon Feb  4 10:31:36 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * ROADMAP: Changed a little.
-
-       * src/net.c (make_connection): Added MCCP #ifdef's
-       (disconnect): Ditto
-       (road_from_connection): Removed unused variable.
-
-Mon Feb  4 09:50:38 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c (about_window): added Vashti.
-       * src/net.c (read_from_connection): Robin's fix to MCCP segfaults.
-       * src/prefs.c (window prefs): added title to preferences window.
-       * src/modules.c (do_plugin_information): likewise.
-       * po/{ca,es}.po: Updated translations.
-       * BUGS: removed old color dialog bug.
-
-Mon Feb  4 09:31:23 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * AUTHORS: added Vashti.
-       * CONTRIBUTERS: removed.
-
-Sat Feb  2 20:11:21 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * Forgot to cvs remove some stuff in intl/.
-       * Removed config.guess & config.sub, provided by automake,
-       added them to .cvsignore.
-
-Sat Feb  2 17:29:25 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * Upgraded to gettext 0.10.40.
-
-Sat Feb  2 16:21:42 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/telnet.c: patch from Vashti to get rid of the annoying
-       ASCII 255 char at the end of telnet packets in some MUDs.
-
-Fri Feb  1 17:35:44 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c: patch from Petter Stokke to fix a bug in the
-       python stuff.
-
-Fri Feb  1 15:34:32 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * Added patch from Vashti <vashti jml net> which adds support
-       for keypad keys for directions.
-
-       * CONTRIBUTERS: Added.
-       * src/gnome-mud.h (system_data): Added bool DisableKeys;
-
-       * src/init.c (text_entry_send_command): Added.
-       (text_entry_key_press_cb): profilekeybinds can now override
-       system keybinds.
-
-       * src/prefs.c: Added prefs.DisableKeys to load/save, and to
-       prefs dialog.
-
-Fri Feb  1 14:08:27 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: added some 0.9.0 notes.
-
-Fri Feb  1 13:40:36 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * po/{ca,es}.po: Updated.
-
-Fri Feb  1 13:17:35 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * intl/Makefile.in: temporary fix for non-glibc systems.
-
-Fri Feb  1 10:42:42 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * src/Makefile.in: color.c removed.
-
-Fri Feb  1 09:19:36 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * po/POTFILES.in: removed color.c
-       * po/*.po: make update-po
-
-       * src/color.c: removed.
-
-       * src/gnome-mud.c (main): Removed load_colors().
-
-       * src/gnome-mud.h (connection_data): Added foreground/background.
-       (system_data): Added Foreground/Background and Colors[16].
-
-       * src/init.c (init_window): Use colors from prefs instead of
-       extern variables.
-
-       * src/modules_api (plugin_add_connection_text): Changed behaviour
-       of textfield_add()
-
-       * src/net.c: Changed calls to textfield_add.
-       Use colors from prefs instead of extern variables.
-
-       * src/prefs.c (prefs_load_color): Added.
-       (prefs_save_color): Added.
-       (load_prefs): Loading of colors added.
-       (save_prefs): Saving of colors added.
-       (prefs_copy_color): Added.
-       (copy_preferences): Now takes another argument if allocate colors.
-       (prefs_select_color_cb): Added.
-       (prefs_set_color): Added.
-       (prefs_color_frame): Added.
-       (prefs_window): Added color frame. Removed old frame.
-
-       * src/python.c: textfield_add fixed.
-
-       * src/window.c: Changed from extern colors to prefs.
-
-Sun Jan 27 03:43:21 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * po/POTFILES.in: removed wizard.c.
-
-Thu Jan 17 15:46:39 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * ROADMAP: Moved things around :)
-
-       * config.h.in, configure.in: Made a few fixes for python
-       detection.
-
-       * src/Makefile.am: Removed wizard.c
-
-       * src/init.c (free_connection_data): Moved from wizard.c
-
-       * src/keybind.c: Global variables removed.
-
-       * src/map.c: Commented #includes reomved.
-
-       * src/modules.c: Global variables removed.
-       * src/profiles.c: Ditto.
-
-Wed Jan 16 08:23:38 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * src/profiles (profilelist_cleanup): Added.
-       (profilelist_dialog): Changed signal to check if widget already
-       have been destroyed.
-
-Mon Jan 14 14:26:07 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * ROADMAP: Updated.
-
-Mon Jan 14 14:04:39 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * src/mudlist.c (mudlist_tree_fill_subtree): Added.
-       (mudlist_tree_fill): Added.
-       (mudlist_compare_char_struct): Added.
-       (mudlist_comapre_structs): Added.
-       (mudlist_parse): HashTable removed, linked list added.
-
-Mon Jan 14 12:21:18 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * src/init.c (text_entry_key_press_cb): Added support for Page Up
-       and Page Down (Bug #481493)
-       (init_window): scrollbar changed to scrolled window, and now
-       mousewheel works aswell :)
-
-       * src/net.c (make_connection): Removed scrollbar, and added
-       scrolled window.
-
-Fri Jan 11 14:58:10 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * ROADMAP: Updated mudconnect
-
-       * po/POTFILES.in: Added mudlist.c
-       * po/*.po: Updated translations.
-
-       * src/gnome-mud.h [system_data]: Added MudListFile.
-       (window_mudlist): Added.
-
-       * src/init.c [file_menu]: Added MudList to menu.
-
-       * src/mudlist.c: Added.
-
-       * src/prefs.c (load_prefs): Added MudListFile preference.
-       (save_prefs): Ditto.
-       (copy_preferences): Ditto.
-       (prefs_entry_mudlistfile_cb): Added callback.
-       (window_prefs): Added gnomefileentry for mudlist file.
-
-Wed Jan  9 01:27:37 CET 2002  Jordi Mallach  <jordi sindominio net>
-
-       * po/{ca,es}.po: Updated translations.
-
-Tue Jan  8 14:13:09 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * The year is now 2002, and a lot of files were updated.
-
-       * po/*.po: Updated.
-
-Tue Jan  8 09:31:31 CET 2002  Robin Ericsson  <lobbin localhost nu>
-
-       * Added patch from Petter E. Stokke that enables pythons
-       scripting support.
-
-       * ROADMAP: Moved pythonsupport to done section.
-
-       * AUTHORS: Added Petter E. Stokke
-
-       * po/*.po: make update-po
-
-Sat Jan  5 02:51:40 CET 2002  Jordi Mallach  <jordi debian org>
-
-       * gnome-mud.1: renaming leftovers.
-
-Mon Dec 10 12:26:40 CET 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * ROADMAP: Added some more.
-
-       * src/gnome-mud.c (main): Changed formatting, and readded init
-       for modules.
-
-       * src/profiles.c: Removed a global variable.
-
-Tue Nov 27 18:33:07 CET 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * README: Copied changed from BRANCH_0_8.
-
-       * ROADMAP: Added.
-
-       * src/net.c (check_aliases): Added to be able to do nested
-       aliases.
-       (action_sent_to_connection): Now calls check_aliases instead
-       of check_alias.
-
-Fri Nov 23 15:23:17 CET 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * Makefile.am: PLUGIN.API should be distributed in "HEAD" CVS
-       aswell as BRANCH_0_8.
-
-       * ROADMAP: Added double entry for easier NEWS catchup :)
-
-       * src/profiles.c (connections_button_press_cb): Added function
-       to trap doubleclick events.
-       (window_profiles): Added signal for "button_press_event"
-
-Mon Nov 12 17:21:59 CET 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * configure.in: Stepped version to 0.8.99.
-
-       * ROADMAP: Done on save log.
-
-       * src/init.c (save_log_cb): Added.
-       (save_log_file_ok_cb): Added.
-       Now able to save logfiles from mud.
-
-Mon Nov 12 11:22:39 CET 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * ROADMAP: Added GNOME 2.0 and some other.
-
-Wed Nov  7 16:34:41 CET 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * NEWS: Added relasedate to version 0.8.
-
-Wed Nov  7 10:54:39 CET 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * Branched into GNOMEMUD_0_8_BRANCH
-
-Wed Nov  7 09:42:31 CET 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/init.c (window_menu_help_manual_activate_cb): Changed to
-       just call "ghelp:gnome-mud", which seems to do the trick.
-
-Tue Nov  6 18:30:01 CET 2001  Jordi Mallach <jordi sindominio net>
-
-       * po/{ca,es}.po: Updated.
-
-Tue Nov  6 16:46:59 CET 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * po/sv.po: Updated.
-
-Tue Nov  6 16:42:17 CET 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * doc/C/Makefile.am: Removed a circular dependency.
-       * src/init.c: (window_menu_help_manual_activate_cb): Added.
-       Also added help entry to menu.
-
-Mon Nov  5 16:49:34 CET 2001  Jordi Mallach <jordi sindominio net>
-
-       * src/init.c: Robin's patch for the Manual link in the help
-       menu.
-
-       * po/{ca,es,fr}.po: updated About entry.
-
-       * NEWS: added note about the GNOME limitation described below.
-
-       * AUTHORS: added Martin Quinson, updated myself.
-
-Mon Nov  5 16:43:04 CET 2001  Jordi Mallach <jordi sindominio net>
-
-       * doc/C/topic.dat: added, file with the title of the manual
-       for the Help menu. Beware, it won't work if GNOME-Mud is
-       installed in /usr/local. Known GNOME bug, will be fixed in
-       GNOME 2.
-       * doc/C/Makefile.am: added topic.dat to EXTRA_DIST.
-
-Mon Nov  5 13:20:16 CET 2001  Jordi Mallach <jordi sindominio net>
-
-       * po/fr.po: French update by Martin Quinson.
-       * src/init.c: added Martin to "About".
-
-Mon Oct 29 14:17:32 CET 2001  Jordi Mallach <jordi sindominio net>
-
-       * po/{ca,es}.po: minor fixes.
-
-Mon Oct 29 03:05:35 CET 2001  Jordi Mallach <jordi sindominio net>
-
-       * Makefile.am: added gnome-mud.desktop to EXTRA_DIST.
-
-       * doc/sgmldocs.make: woops, too much snipage. Fixed the
-       installation of generated docs.
-
-Mon Oct 29 02:31:27 CET 2001  Jordi Mallach <jordi sindominio net>
-
-       * Makefile.am: removed VERSION from EXTRA_DIST.
-
-Mon Oct 29 02:22:52 CET 2001  Jordi Mallach <jordi sindominio net>
-
-       * NEWS: added notes about the manual.
-
-       * ROADMAP: request for IPv6 support.
-
-Mon Oct 29 02:17:11 CET 2001  Jordi Mallach  <jordi sindominio net>
-
-       * doc/sgmldocs.make: fixed paths of screenshots and removed
-       cruft that we (still) don't need.
-
-       * configure.in, Makefile.am: enable doc building. Beware, you now
-       need a shitload of sgml packages to build gnome-mud.
-
-Fri Oct 26 14:04:49 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/gnome-mud.h (pre_process): Returns gint instead of char*.
-       * src/telnet.c (pre_process): Ditto.
-
-       * src/map.c: Changed (void *) casting to glib macros to remove
-       warnings on alpha systems.
-       * src/modules.c, src/net.c, src/profiles.c: Ditto.
-
-Thu Oct 25 17:19:49 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * po/*.po: Updated
-
-       * src/map.c (get_direction_type): Changed gettext macro used to
-       fix segfault when not using synced translation.
-
-Thu Oct 25 15:04:56 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * ROADMAP: Added one entry, and changed another.
-
-Thu Oct 25 13:05:43 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/profiles.c (profilelist_new_cb): Close this window when
-       parent window closes.
-       (profilelist_delete_cb): Close this window when parent window
-       closes.
-
-Wed Oct 24 15:33:23 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/map.c (button_cb): Changed /.amcl/ to /.gnome-mud/.
-
-       * src/prefs.c (load_prefs): Added code for check if ~/.gnome-mud
-       exists, and if not, then create it.
-
-Mon Oct 22 12:34:20 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/color.c (window_color): Menu now works when you close the
-       window via window manager destroy.
-
-       * src/gnome-mud.h: Removed old unused function calls.
-
-       * src/keybind.c (save_keys, load_keys): Removed, not used.
-
-       * src/profiles.c (profilelist_new_input_cb): Send in parent
-       window to gnome_request_dialog().
-
-       * src/wizard.c (load_wizard, save_wizard): Removed, not used.
-
-Mon Oct 22 02:25:23 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * doc/C/gnome-mud.sgml: fixes (missing closing tags, etc).
-       Thanks to jfleck, of #docs irc gnome org.
-
-       * doc/Makefile.am, doc/sgmldocs.make doc/C/Makefile.am,
-       doc/C/gnome-mud-C.omf: added automake and scrollkeeper files, not
-       activating it in configure.in still, not sure if things are working
-       ok still.
-
-Sun Oct 21 23:46:55 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * doc/C/gnome-mud.sgml: first draft of the GNOME-Mud Manual.
-       It describes all the current features in GNOME-Mud, all the menu's,
-       dialogs and toolbars. And, I had to write it twice! (luckily, this
-       second version is so much better than the original).
-
-       * doc/C/main-window.png, doc/C/preferences-window,
-       doc/C/profiles-window.png: screenshots for the manual.
-
-Fri Oct 19 18:00:18 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * src/prefs.c: fixed typos.
-
-       * src/init.c: fixed labels of some menu entries.
-
-Fri Oct 19 15:35:09 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * ROADMAP: Added some more entries.
-
-Fri Oct 19 14:23:53 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/net.c [open_connection]: Fixed a small bug I added a few
-       days ago :)
-
-Fri Oct 19 13:02:18 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * gnome-mud.desktop: removed path to icon.
-
-Fri Oct 19 12:43:10 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * Makefile.am: TODO removed and ROADMAP added once again :)
-
-Fri Oct 19 10:59:35 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/init.c [do_close]: Fixed small bug which occured if you
-       closed a notebook-tag somewhere before the last tab.
-
-       * src/wizard.c [free_connection_data]: Added #ifdef ENABLE_MCCP
-       so that we are not removing non-existing timers.
-
-Fri Oct 19 09:26:15 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * gnome-mud.desktop: Added translation into swedish.
-
-Fri Oct 19 04:00:33 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * gnome-mud.desktop: make "gnome-gmush.png" our icon for now.
-
-Fri Oct 19 03:19:03 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * gnome-mud.desktop: added GNOME menu entry for gnome-mud.
-       It's missing an icon... artists around?
-
-       * Makefile.am: install .desktop file into the apps dir.
-
-Thu Oct 18 16:36:21 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/sv.po: updated.
-
-Thu Oct 18 16:28:52 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * src/wizard.c: fixed typos (conection -> connection).
-
-       * po/{ca,es,sv}.po: fixed the generated fuzzy's.
-
-Thu Oct 18 15:38:25 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS, ROADMAP: doc updates.
-
-Thu Oct 18 14:38:10 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/net.c [open_connection]: A little fix when not entering a
-       port.
-
-Thu Oct 18 10:22:21 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * Makefile.am: TODO removed, ROADMAP added.
-
-       * configure.in: Old things for version.h removed.
-
-       * Alot of code cleanup, removed various comments, and fixed code
-       with warnings, etc...
-
-Wed Oct 17 17:19:29 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * TODO: Removed.
-
-       * ROADMAP: Added.
-
-Wed Oct 17 15:53:40 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * po/ca.po: tons of grammar fixes and updates to the Catalan
-       translation.
-
-Tue Oct 16 14:55:22 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * po/sv.po: Translation fixes.
-
-       * README: Updated a bit.
-
-Tue Oct 16 13:48:00 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * configure.in: really commit po/ fixes.
-
-Fri Oct 12 13:45:53 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: added new releases and dates.
-
-Fri Oct 12 09:36:25 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * TODO: Added some more.
-
-       * src/color: c_structs[], changed order of color_grey and
-       color_white.
-
-Thu Oct 11 16:56:36 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * TODO: Added some things, and removed some other things :)
-
-Wed Oct 10 18:22:53 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: reformatted this, and added some things after some
-       research on old versions.
-       * ChangeLog: added a missing chunk from before March 1999.
-       * VERSION: removed, it's worthless and it's not getting updated.
-
-Wed Oct 10 16:52:38 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c: renamed Connection Wizard menu entry.
-
-       * configure.in: fixed things so po/ works again.
-
-       * po/es.po: updated.
-
-Wed Oct 10 16:17:35 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/Makefile.am: dialog.c deleted.
-
-       * src/dialog.c: Removed.
-
-       * src/init.c: Removed README and AUTHORS menu.
-
-Wed Oct 10 15:54:01 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * NEWS: updated release info for 0.8.0.
-
-Wed Oct 10 15:00:39 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * init.c: print version information, the easy way.
-
-Wed Oct 10 13:32:21 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * mkhelp lobotomy! Removed Anything related to version.c or
-       author and readme .h's.
-
-       * src/Makefile.mkhelp src/config.h.in src/mkhelp.c src/version.c
-       src/version.h.in: removed.
-
-       * configure.in. Removed VERSION and PACKAGE cruft. It now
-       outputs these defines to config.h.
-
-       * Robin bumped version to 0.7.99.
-
-       * po/POTFILES.in: removed version.c.
-
-       * dialog.c: README and AUTHORS options should be removed. Right now,
-       they display a nice, blank box.
-
-       * init.c: don't call get_version_info()
-
-       * automake.sh: removed echo's about version.c & cia.
-
-Wed Oct 10 13:08:01 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * configure.in: Moved config.h.in from src to root
-
-Wed Oct 10 09:16:13 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/init.c: Removed keybinds from the menu.
-
-       * src/profiles.c (profiledata_find): When creating a new profile,
-       also create lists and profile information.
-
-Tue Oct  9 16:08:42 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/gnome-mud.c (main): Commented out some signaling, removed
-       loading of plugins, and loading of keys.
-
-       * src/gnome-mud.h: window_keybind() changed, and
-       profiledata_savekeys() added.
-
-       * src/init.c (destroy): Added profiledata_savekeys().
-       (text_entry_key_press_cb): Reformatted and added code for
-       keybinds on profiles.
-
-       * src/keybind.c ((load|save)_keys): Commented out.
-       Removed save button, reformatted code.
-
-       * src/profiles.c (load_profiles): keybinds, variables and
-       triggers added to savelist.
-       (profiledata_savekeys): New function for saving keybinds to
-       profile.
-       (window_profiles): Added close button, and now only displays
-       one window until window closed.
-
-Thu Oct  4 16:40:16 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * src/map.c: Ok, it only took 14 months and one week to notice
-       this major bug in map.c. If using a locale, clicking on directions
-       or Load/Save, etc. would make amcl/gnome-mud crash.
-       The "fix" right now is to translate some extra directions, but that
-       code should be cleaned a bit. Removed gettext marks from debug
-       messages.
-
-       * po/es.po: updated Spanish translation.
-
-Thu Oct  4 15:46:02 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c: tiny typo fixes.
-
-Thu Oct  4 15:29:56 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * src/init.c: merged AUTHORS into the gnome_about dialog. Marked
-       many things as translatable. Hopefully this is the first step to
-       get rid of those widgets in the Help menu.
-
-       * autogen.sh: call automake with -add-missing, for automake 1.5.
-
-Thu Oct  4 15:23:18 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/.cvsignore, src/Makefile.am: changed gnomemud to gnome-mud.
-
-       * src/gnome-mud.h, src/net.c (make_connection): Now takes a third
-       argument which is the profile being used, and Default if not found.
-
-       * src/init.c, src/wizard.c: Pass profilename "Default" to
-       make_connection()
-
-       * src/profiles.c: Pass profilename to make_connection().
-
-Thu Oct  4 13:56:33 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/data.c [own_data]: Removed some unused variables.
-       (load_data()/save_data()): Removed, no longer needed.
-       (window_data): Takes PROFILE_DATA * as argument instead of GtkWidget,
-       also all references to own_data.menu was removed.
-
-       * src/init.c: Removed alias/triggers/variables from menu.
-
-       * src/gnome-mud.h (window_data): Changed.
-
-       * src/profiles.c (profilelist_alias_cb): Callback for editing profiles
-       through old data_* function.
-       (profilelist_triggers_cb): ditto
-       (profilelist_variables_cb): ditto
-       (profilelist_(un)select_row_cb): Remade a little.
-       (profilelist_dialog): Removed some functionality.
-       (window_profile_edit): Added some signals.
-
-Wed Oct  3 13:18:50 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/data.c (save_data, load_data, data_button_delete):
-       Removed sensitivity of button_save, which is not in use
-       anymore.
-
-       * src/profiles.c (profilelist_new_input_cb): Use live ProfileList,
-       do not use temporary.
-       (profilelist_new_cb): append clist with gnome_dialog call.
-       (profilelist_delete_cb): Check and delete from right ProfileList
-       and CList.
-       (window_profile_edit): Added a few signal for button new/delete
-       and CList.
-
-Thu Sep 13 11:44:41 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * Small changes to README.
-
-Thu Aug 30 09:55:43 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/gnome-mud.h: Added window_profile_edit()
-
-       * src/init.c: Added "Profiles" to toolbarmenu.
-
-       * src/profiles.c (load_profiles): Fixed crash that appeared
-       when running AMCL first time without config.
-       (window_profile_edit): Added better editor for profiles.
-
-       * po/*.po: make update-po, with profiles.c included.
-
-Mon Aug 27 18:43:58 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * po/es.po: minor typo fix.
-
-Sun Aug 12 20:52:41 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/net.c (read_from_connection): Changed buf from 2048 to 3000.
-
-       * src/window.c (textfield_add): Removed some old commented code.
-
-Mon Jul  9 15:34:24 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * config.sub, config.guess: updated to latest versions to fix
-       compile problems in new arches like IA64 or HPPA.
-
-Tue Jun 19 22:58:29 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * po/POTFILES.in, *.po: Added profiles.c to the list, and updated
-       .po files.
-
-       * src/color.c: Small fixes, removed some GTK warnings.
-
-       * src/config.h.in: New update
-
-       * src/gnome-mud.c: Removed load_wizard(), and added load_profiles()
-
-       * src/gnome-mud.h [struct wizard_data2]: added.
-       [struct profile_data]: added.
-
-       * src/init.c (destroy): Added saving for profiles and connections.
-       (init_window): Added profiles, and remove old data*
-
-       * src/data.c (data_button_close): Changed to new profiles.
-       (window_data): Changed to new profiles.
-
-       * src/net.c: Changed old lists[*] to use the new profile-lists.
-
-       * src/profiles.c: Complely new and working connection and profile
-       list functions.
-
-Sat Jun  9 18:17:24 CEST 2001  Jordi Mallach  <jordi sindominio net>
-
-       * src/Makefile.am: added LOCALEDIR to INCLUDES, so the
-       translated mo's can get installed wherever "datadir" points to.
-
-       * src/gnome-mud.c: removed the static LOCALEDIR define, and
-       removed the libintl.h include too. Every file including gnome.h
-       has libintl.h included already, so we need to wipe those of every
-       c source file, later.
-
-       * po/sv.po, po/fr.po: corrected charset and encoding definitions.
-
-Fri Jun  8 17:15:58 CEST 2001  Robin Ericsson  <robin noname4us com>
-
-       * src/color.c [(load|save)_colors): Removed old code for saving
-       to file, and changed to use gnome_config_(get|set)_vector.
-
-Fri Jun  8 15:34:02 CEST 2001  Robin Ericsson  <robin noname4us com>
-
-       * src/init.c: Added window_color() to the menu again.
-
-Thu May 31 22:05:49 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/net.c: Fixed bug #408834.
-
-Thu May 31 21:15:27 CEST 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/profiles.c: Added, going to contain the new connection wizard
-
-       * src/gnome-mud.h, src/init.c: Added new function-def and added
-       new wizard to menu.
-
-Thu Mar  8 04:18:57 CET 2001  Jordi Mallach  <jordi sindominio net>
-       * po/fr.po: added missing "\n".
-
-Tue Feb 20 04:10:49 CET 2001  Jordi Mallach  <jordi sindominio net>
-
-       * configure.in, po/fr.po: added French translation from Martin
-       Quinson.
-
-Wed Jan 24 20:59:31 CET 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * configure.in, src/Makefile.am, version.h.in, applied
-       patch from CrezyboY.
-
-       * src/data.c: Small patch sent in from message board.
-
-Sat Jan 20 02:29:40 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * Makefile.am, amcl-lsm, gnome-mud.lsm: renamed amcl.lsm
-       to gnome-mud.lsm.
-
-       * NEWS, PLUGIN.API, README, autogen.sh, configure.in:
-       Changed AMCL to GNOME-Mud.
-
-       * src/amcl.c, src/gnome-mud.c, Makefile.am: amcl.c renamed
-       to gnome-mud.c
-
-Sun Jan 14 22:50:09 2001  Robin Ericsson  <lobbin localhost nu>
-
-       * src/*: Renamed amcl.h to gnome-mud.h, and tried to change
-       AMCL into GNOME-Mud where I could.
-
-       * po/*.po: make update-po
-
-Thu Jan  1 17:08:21 2001  Jordi Mallach  <jordi sindominio net>
-       * amcl.1, gnome-mud.1, Makefile.am: renamed the fake manpage
-       and added the real one to the distribution.
-
-Thu Dec 28 23:30:43 2000  Robin Ericsson  <robin noname4us com>
-
-       * src/amcl.c [main]: save_plugins() removed.
-       * src/init.c: Removed some global variables.
-       [about_window]: Added a gnome_href widget to gnome-mud
-       homepage.
-       [do_close]: Fix for not closing main_window.
-       * src/modules.c [do_plugin_information]: rebuild the
-       window, and saves for plugins now uses gnome_config_*.
-       [save_plugins]: removed.
-       * src/modules_api.c: Commented out some code.
-       * src/prefs.c [open_file]: Added some more debug.
-
-Thu Dec 28 09:51:45 2000  Robin Ericsson  <robin noname4us com>
-
-       * Makefile.am: Added manpage.
-       * amcl.1: Manpage added.
-
-Wed Dec 27 18:03:55 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * TODO: removed some outdated stuff
-       * po/*.po: Made another update-po and edited the sv and de.po
-       * src/init.c [destroy]: Added yes/no question when quitting amcl.
-       Also saving the command history here.
-       * src/modules_api.c [plugin_register_menu]: Commented out some
-       variables.
-       * src/net.c: Removed some unused variables.
-       * src/prefs.c [save_prefs]: Save Command history as a vector.
-       * src/telnet.c: [pre_process]: changed == to =, as it wasn't
-       an if statement ;)
-
-Tue Dec 26 10:37:32 2000  Jordi Mallach  <jordi sindominio net>
-       * TODO: added some GNOME specific items.
-       * Moved some items to "Under Development".
-
-Tue Dec 26 15:42:34 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * po/ca.po, de.po, es.po, sv: make update-po,
-
-       * src/.cvsignore: Added TAGS and tags.
-
-       * src/amcl.h [system_data]: gint History; added.
-
-       * src/data.c: Removed include for gtk.h and added gnome.h
-       instead.
-
-       * src/init.c [text_entry_select_child_cb]: Changes EntryCurr
-       if the combo box changes the textentry.
-       [do_disconnect]: disconnect only if connected.
-       (toolbar_menu[]): added variable for setting toolbar.
-       [init_window]: changed text_entry into a combo box to make it
-       look more like zmud.
-
-       * src/modules_api.c: Commented out code for adding a menuitem
-       from a plugin.
-
-       * src/net.c [general]: Removed a bunch of gtk_widget_set_sensitive
-       for mostly main_disconnect menu.
-       [send_to_connection]: History can now be a configurable length.
-       [connection_send]: Smashed a bug that made command divided commands
-       sendable again.
-
-       * src/prefs.c [load_prefs]: load History.
-       [save_prefs]: Save history.
-       [copy_preferences]: added History.
-       [prefs_entry_history_cb]: get new history.
-       [prefs_window]: new entries for history.
-
-       * src/telnet.c: Small changes with echo usage.
-
-Sat Dec 23 11:24:08 CET 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * Made a lot of changes, trying to make it completly gnome.
-
-       * Added newer files for the gnome macros, and edited almost
-       every file ;).
-
-Tue Dec 19 18:22:09 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * src/init.c, src/net.c, src/prefs.c: Applied patch from
-       Benjamin Geiger <bgeiger ithink net>
-
-       * src/init.c [about_window]: changed url to homepage.
-
-       * configure.in: Moved back to 0.7.5.
-
-       * Makefile.am: changed README-NLS to ABOUT-NLS.
-
-       * AUTHORS: Added Benjamin above.
-
-       * AMCL-0.7.5-RELEASE!
-
-Tue Dec 12 20:34:44 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * TODO: Added some more things...
-
-Wed Nov 29 10:21:07 CET 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * TODO: Added a few things...
-
-Sun Oct  1 03:40:32 CEST 2000  Jordi Mallach  <jordi sindominio net>
-       * src/prefs.c: fix for a compile error with Woody's CVS gcc.
-       * configure.in: add ca to ALL_LINGUAS.
-       * po/ca.po: Initial Catalan translation.
-       * po/es.po: More of the traditional small fixes.
-
-Tue Sep 26 10:12:18 CEST 2000  Robin Ericsson  <robin noname4us com>
-
-       * README: included OpenBSD in list of successful builds.
-
-Thu Sep 11 02:44:29 CEST 2000 Jordi Mallach <jordi debian org>
-       * po/es.po: updated strings.
-
-Thu Sep  7 01:11:58 CEST 2000 Jordi Mallach <jordi debian org>
-       * plugins/test.plugin/Makefile: stupid fix in libgtk and libglib
-         calls so the test plugin can compile again. Jorge spotted this,
-         really.
-
-Thu Aug 31 23:34:30 CEST 2000 Jorge Garcia <jorge garcia uv es>
-
-       * Added Vars. (generic 'data' functions to work with alias, actions
-                       and vars):
-         + src/data.c: created (absorving code of alias.c and action.c)
-               - src/Makefile.am (+data.c -alias.c -action.c)
-               - src/amcl.h: deleted all alias and action structs
-               - src/init.c: some modifications (alias and action -> data)
-         + src/amcl.c: moved load_alias and load_actions to init.c (load_data)
-         + src/net.c: [action_send_to_connection] more 'gtktized' and
-                       needed modifications to allow vars.c
-       * src/init.c:
-         + converted some global variables to local
-         + removed all gtk_widget_show(...) and added gtk_widget_show_all(...)
-       * src/amcl.h: added <stdio.h> to allow compilation of plugins
-
-Fri Aug 11 18:32:14 2000  Jordi Mallach  <jordi debian org>
-       * src/color.c, src/window.c: fix button labels that remained
-         unchanged, woops (updated *.po's manually, sorry for
-         inconveniences).
-       * BUGS: add the gdk errors in color.c to the buglist.
-
-Wed Aug  9 13:40:31 2000  Robin Ericsson  <robin noname4us com>
-
-       * configure.in, po/de.po: Added german translation.
-
-Wed Aug  2 15:59:36 2000  Robin Ericsson  <robin noname4us com>
-
-       * Initial sv.po, most of the things is translated.
-
-Tue Jul 25 16:04 2000  Jordi Mallach  <jordi debian org>
-       * Cosmetic fixes: unify button labels, MUD and AMCL nomeclature.
-       * Reformat or delete redundant comments in the sources. We've had an
-         AUTHORS file for a while.
-       * Improvements in help strings, etc.
-
-Tue Jul 25 10:49:57 2000  Robin Ericsson  <robin noname4us com>
-
-       * acconfig.h: added #undef ENABLE_MCCP
-
-       * configure.in: Added --enable-mccp as option.
-
-       * src/net.c [open_connection,read_from_connection]: made some changes
-       so AMCL can compile with MCCP as it don't really seems to work right now.
-
-Thu Jul 20 17:20 2000  Jordi Mallach  <jordi debian org>
-       * Added internationalization support.
-         + Added gettext calls to all strings. Affects action.c, amcl.c,
-           alias.c, color.c, init.c, keybind.c, map.c, modules.c,
-           modules_api.c, net.c, prefs.c, version.c, window.c and wizard.c.
-         + added libintl.h include in all the gettextized files.
-         + src/amcl.c: added locale.h include and setlocale() and
-           textdomain calls in main().
-         + Added intl/ and po/ directories.
-         + aclocal.m4: added needed macros by gettext.
-         + acconfig.h: added NLS config options.
-         + configure.in, Makefile.am, Makefile.in, src/Makefile.in: tweaked
-           paths, added variables needed for po making and added ABOUT-NLS
-           to the documentation.
-       * Corrected a selection of typos while browsing the code, specially
-         in src/alias.c and src/wizard.c.
-       * Initial es.po. It's not complete, but only the automapper needs to
-         be translated, the rest is finished.
-
-Mon Jul 17 16:04:20 2000  Robin Ericsson  <robin noname4us com>
-
-       * configure.in: added check for zlib, and if, enable MCCP.
-
-       * src/Makefile.am: added mccpDecompress.[ch].
-
-       * src/amcl.h: #include for stdio.h removed, and added mccpDecompress.h
-       (connection_data): added *mccp, and mccp_timer.
-
-       * src/dialog.h: added stdio.h include.
-
-       * src/init.c: added stdio.h
-       [init_window]: call mudcompress_new() on ->mccp.
-
-       * src/modules_api.c: added stdio.h
-
-       * src/net.c [make_connection]: added call to mudcompress_new()
-       [mccp_pendingresponse]: timer function to check for compress data to
-       send.
-       [disconnect]: clear mccp, and initialize it again.
-       [open_connection]: added timer to mccp_pendingresponse(), also alot
-       of other MCCP changes.
-
-       * src/version.c: added stdio.h
-
-       * src/wizard.c [free_connection_data]: delete timer, and free MCCP
-       data.
-
-Tue Jul 11 02:16:04 CEST 2000  Jorge Garcia <Jorge Garcia uv es>
-
-       * Moved most global variables from init.c to proper files and
-          same about extern declarations.
-
-       * src/alias.c: Added check_aliases with same structure of
-          check_actions.
-
-       * src/amcl.h: Removed comented header functions and declaration of
-          extern global variables.
-
-       * src/init.c: Removed comented functions. Added key accelerators to
-          basic menu items.
-
-        * src/net.c: Removed redundant code and some minor optimizations
-          [str_replace]: Absorved by read_from_connection and optimized
-          [alias_check]: Absorved data from action_send_to_connection and
-          check_aliases (src/alias.c)
-          [connection_send]: Minor optimization.
-          [action_send_to_connection]: Now calls connection_send.
-          [send_to_connection]: Now calls action_send_to_connection.
-
-Sat Jul  8 17:48:47 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * action.c [match_line]: now checking triggers via regex
-       instead of the old strncmp().
-
-       * net.c [action_send_to_connection]: if prefs.EchoText is set,
-       then echo the text sent be actions aswell.
-
-Mon Jul 3 20:52:37 2000  Jeroen Ruigrok  <asmodai wxs nl>
-
-       * AUTHORS: Add my email address.  Fix text to fit 80 column
-       displays.  Remove some leading dots to make the sentences
-       consistent.
-
-       * configure.in: Fix mapper start of sentence to be consistent
-       with the rest.  Add --enable-debug, which adds a few debugging
-       flags, to know: -g -DDEBUG -DG_ENABLE_DEBUG.  This allows easy
-       addition of DEBUG preprocessor definitions and makes sure we
-       debug GTk+, as well as compile it with symbols.
-
-       * plugins/Makefile.am, src/Makefile.am: Make sure the
-       DEBUG_FLAGS get incorporated into CFLAGS.
-
-Sun Jul 2 14:02:11 2000  Jeroen Ruigrok  <asmodai wxs nl>
-
-       * src/amcl.c: Reorder include order.  Fix comments.
-       Fix cosmetics on gtk_main() calling.
-
-Sun Jul 2 13:31:23 2000  Jeroen Ruigrok  <asmodai wxs nl>
-
-       * src/window.c: Reorder include order.  Proper prototyping.
-       Usage of C comment characters to be consistent with the rest.
-       Remove unnecessary prototype.  Divide rcsid[] over two lines.
-
-Sat Jul 1 09:24:28 2000  Jeroen Ruigrok  <asmodai wxs nl>
-
-       * src/prefs.c: Reorder include order.  Proper prototyping.
-       Usage of C comment characters to be consistent with the rest.
-
-Sat Jul 1 03:01:00 CEST 2000 Jorge Garcia <Jorge Garcia uv es>
-
-       * src/misc.c: deleted. No more uid_info used
-
-       * src/amcl.c: uid_info changed to g_get_home_dir()
-
-       * src/Makefile.am: removed misc.c
-
-       * src/net.c: disconnect(...) now deactivates "disconnect" button
-
-       * src/prefs.c: little optimization in load_prefs
-       changed save_prefs header to save_prefs( void )
-
-Fri Jun 30 22:07:16 2000  Jeroen Ruigrok  <asmodai wxs nl>
-
-       * src/action.c: Proper prototyping.
-
-       * src/alias.c: Proper protoyping.  Seperate function declarations
-       from prototypes with 3 white lines, probably want to add a comment
-       delimiter there instead.
-
-       * src/amcl.h: Proper prototyping of load_actions().
-
-       * src/color.c: Remove double inclusion of <string.h>.  Remove
-       bogus function prototype since we include this with <amcl.h>.
-
-       * src/misc.c, src/net.c: Reorder include order, this should make
-       sure it will cause no compilation problems on most non-Linux
-       platforms now and in future.
-
-
-Wed Jun 28 22:58:32 2000  Jeroen Ruigrok  <asmodai wxs nl>
-
-       * src/action.c: Proper prototyping.
-
-       * src/alias.c: Do _real_ function prototyping.
-
-       * src/color.c: Add string.h for strdup(), proper prototyping,
-       be consistent in comment character usage.
-
-       * src/init.c: Be consistent with rcsid[], proper prototyping,
-       be consistent in comment character usage, remove unused
-       variables.
-
-       * src/keybind.c: Use include with quotation marks since we want
-       to search for config.h in the local directory, not system defined
-       ones, proper prototyping, remove unused variables, make sure
-       function definitions are consistent.
-
-       * src/map.c: include stdlib.h for free(), proper prototyping,
-       make sure function definitions are consistent, be consistent in
-       comment character usage.
-
-       * src/window.c: remove alias_button_add() prototype since it is not
-       needed there.
-
-Wed Jun 28 03:00:00 CEST 2000  Jorge Garcia  <Jorge Garcia uv es>
-
-        * Cleaned unused variables in almost all .c files
-        * src/prefs.c: check_amcl_dir changed to
-          FILE *open_file(gchar *filename, gchar *mode)
-          it checks for proper perms on ~/.amcl dir
-          (changes on alias.c action.c init.c wizard.c color.c
-           modules.c init.c)
-        * src/alias.c: fixed minor bugs about buttons
-                       optimized load_aliases
-
-        * src/action.c: fixed minor bugs about buttons
-                        optimized load_actions
-
-Tue Jun 27 08:39:13 2000  Jeroen Ruigrok  <asmodai wxs nl>
-
-       * src/action.c: Proper prototyping, removal of unused variables
-       and proper lining up of the internal functions.
-
-Mon Jun 26 21:34:53 2000  Jeroen Ruigrok  <asmodai wxs nl>
-
-       * AUTHORS: Fix small typo.
-
-       * BUGS: Document small bug about Main > disconnect not being
-       updated.
-
-       * TODO: Add MCCP support request.
-
-       * configure.in: Allow for more compiler warnings.
-
-       * src/alias.c: proper prototyping and removal of unused
-       variables.
-
-Mon Apr  3 20:42:55 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * Fixed bugs:
-       [103619]: Resizing AMCL-Window will not resize the textarea
-
-       * AUTHORS: Added Jörgen Kosche for his focus-patches.
-
-       * README: Added some more OSes and GTK versions.
-
-       * src/amcl.h: grab_focus_cb() added.
-
-       * src/init.c, src/net.c: See bug above.
-
-       * src/prefs.c (check_amcl_dir): Removed some messages.
-
-       * src/version.c (get_version_info): Added some \n:s
-
-       * src/window.c (grab_focus_cb): Added.
-
-Tue Mar 28 22:11:36 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * Fixed bugs:
-       [103542]: Key-bindings are now loaded.
-
-       * src/amcl.c: See above.
-
-       * src/window.c: Fix for focus-problem.
-
-Fri Mar 24 22:07:10 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * Fixed bugs:
-       [103014]: Scroll bar only works for the main window
-
-       * acconfig.h/autogen.sh/configure.in: Changed some checkings
-       mostly regarding dlopen stuff.
-
-       * src/amcl.h (CONNECTION_DATA): the vscrollbar needs to follow
-       the connection, can not use the main one.
-
-       * src/init.c (init_window): Both window and scrollbar are now
-       included in the notebook.
-
-       * src/modules.c: Use some new <dirent.h> stuff I found in the
-       autoconf documentation.
-
-       * src/net.c (make_connection): also create scrollbar when we
-       create a new notebook tab.
-
-       * src/wizard.c: Just some code cleaning.
-
-Mon Mar 13 19:03:35 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * AUTHORS: Added Benjamin Curtis (email not known)
-
-       * TODO: Added some stuff.
-
-       * configure.in: Moved to 0.8.0.
-
-       * src/Makefile.am: telnet.c added to the files.
-
-       * src/Makefile.mkhelp: Fixed compiling errors.
-
-       * src/amcl.c: Do not initialize modules in PKGDATADIR (yet).
-
-       * src/amcl.h: Added savefiles version.
-       (connection_data): Added gboolean echo.
-
-       * src/color.c: Compile warning fixes only.
-
-       * src/net.c: Removed some unnecessary definitions.
-       (read_from_connection): Added TELNET protocol support.
-       (connection_send): Fixed for the above.
-
-       * src/prefs.c: Fixed spelling errors.
-       (prefs_font_selected): Fixed crash when not choosing a font.
-
-       * src/wizard.c: Added version to wizard savefile.
-       (window_wizard): Password is now not seen.
-
-       * src/telnet.c: Added, functions for TELNET protocol.
-
-Mon Feb 28 19:36:49 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * Makefile.am: Added acconfig.h.
-
-       * README: Spelling errors.
-
-       * src/Makefile.am: mkhelp removed, and readme_doc.h and
-       authors_doc.h added.
-
-       * src/Makefile.mkhelp: added to create readme_doc.h and
-       authors_doc.h.
-
-       * src/amcl.c (main): Create ~/.amcl/plugins aswell as
-       ~/.amcl
-
-       * src/color.c (create_color_box): renamed to window_color(),
-       now it doesn't break when opening, closing, and open again.
-
-       * src/init.c (init_window): fix for the above.
-
-       * src/map.c (auto_map_new): Fix window title.
-
-Wed Feb 23 17:00:19 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * AUTHORS: Added Maxim Kiselev.
-
-       * BUGS: This file should be empty for now ;)
-
-       * NEWS: News about version 0.7.
-
-       * PLUGIN.API: Useful information about the plugin api now
-       added.
-
-       * README, TODO, amcl.lsm: Minor changes for 0.7.
-
-       * AMCL-0.7-RELEASE!
-
-Mon Jan  3 20:50:22 2000  Robin Ericsson  <lobbin localhost nu>
-
-       * README: Fixed up a little bit.
-
-       * PLUGIN.API: File which describes the plugin API added.
-
-       * src/error.xpm, src/ok.xpm: removed
-
-       * src/modules.c: Removed the silly nonsens about pixmaps in
-       plugin list. Now it even works.
-
-Sat Nov 20 18:42:55 1999  Robin Ericsson  <lobbin localhost nu>
-
-       * NEWS: Added information about the news in version 0.7.0.
-
-       * TODO: Added information about ongoing development and new
-       ideas.
-
-       * src/amcl.c: removed comment
-
-       * src/error.xpm, src/ok.xpm: added.
-
-       * src/map.c: cleaned up a little bit.
-
-       * src/modules.c: Plugin information now has a pixmap, red
-       or green depended of if module is enabled or disabled.
-
-Thu Nov 11 20:19:04 1999  Robin Ericsson  <lobbin localhost nu>
-
-       * Added keybind.c to CVS.
-
-       * Makefile.am: Added subdir plugins.
-       * src/Makefile.am: Added keybind.c.
-
-       * src/amcl.c (main): init_colors() replace with load_colors().
-       * src/amcl.h (KEYBIND_DATA): structure and typedef added.
-       (SYSTEM_DATA): gchar *CommDev added.
-       Also some extern variables and function declares.
-
-       * src/color.c: Patch received from Maxim Kiselev. Added support for
-       saving colors.
-
-       * src/init.c: As above, some functions moved around.
-       (init_window): Added Key on the options menu.
-       (text_entry_key_press_cb): Maxim Kiselevs patch changed some here.
-
-       * src/modules.c: Just moved around things.
-
-       * src/net.c: Added things from Maxim again so multiple commands
-       can be sent right away.
-
-       * src/prefs.c: Added the ability to set what command char to the
-       above.
-
-       * src/wizard.c: If AutoSave is on, then it should save when closing
-       window.
-
-1999-09-24  Robin Ericsson  <lobbin localhost nu>
-
-       * README: Added info about that is compiles under FreeBSD 3.3-STABLE.
-
-       * src/Makefile.am: amcl.o is now compiled by it self so $(pkgdatadir)
-       can be added to compilation. Also misc.c was added.
-
-       * src/action.c: All getenv("HOME") replaced with uid_info->pw_dir.
-
-       * src/alias.c: ditto
-
-       * src/precs.c: ditto
-
-       * src/wizard.c: ditto
-
-       * src/amcl.c (main): init_uid() now called. init_modules uses the
-       correct PKGDATADIR from configure.
-
-       * src/amcl.h: extern struct passwd *uid_info added in misc.c.
-
-       * src/misc.c: Added.
-
-       * src/modules.c (init_modules): g_warning when not finding the right
-       directory was changed to g_message().
-
-       * src/mkhelp.c (main): char c; changed to int c; so I can compile under
-       MkLinux PPC.
-
-1999-08-17  Robin Ericsson  <lobbin localhost nu>
-
-       * src/modules.c (Plugin_datain_list): Name changed to Plugin_data_list
-       and is now responsible for both in and out data.
-
-       * src/modules.h (_plugin_data): Added enum PLUGIN_DATA_DIRECTION that
-       tell which way it is to be.
-
-       * src/modules_api.c (plugin_data_register_incoming/outging): Both call
-       plugin_data_register() now.
-
-       * src/net.c (read_from_connection): Plugin_datain_list changed name and
-       now checks the direction to be sure there are no problems.
-
-       * src/prefs.c: Fixed stupid font bug that probably appeared with
-       GTK+ 1.2.3. Changed one call from gtk_signal_connect_object() to
-       gtk_signal_connect() and the problem went away.
-
-1999-08-15  Robin Ericsson  <lobbin localhost nu>
-
-       * src/dialog.c: Use font "fixed" instead of no font at all, look a lot
-       better that way.
-
-       * src/init.c: Load font "fixed" into font_fixed.
-
-       * src/modules.c (plugin_get_plugin_object_by_handle): Should be pretty
-       clear.
-       (plugin_get_plugin_object): renamed to plugin_get_plugin_object_by_name.
-       (plugin_enable_check_cb): Take care of enable/disable the plugin.
-
-       * src/modules.h (_plugin_data): Added to be used when register for data
-       in or out going.
-
-       * src/modules_api.c (plugin_register_data_incoming): Check which plugin
-       and add that plugin and function to a linked list.
-
-       * src/modules_api.h: Added a bunch of extern.
-
-       * src/net.c (read_from_connection): Now checks if any plugin is registred
-       for recieving incoming data and if so, run the associated function.
-
-1999-08-10  Robin Ericsson  <lobbin localhost nu>
-
-       * src/modules.c (plugin_get_plugin_object): Get object from linked
-       list via the name.
-       (plugin_clist_select_row_cb): Callback function that updates the
-       entrys in info window.
-       (do_plugin_information): Window that displays information about the
-       plugins, name, author, version, etc. Here is also where you enable
-       the plugin.
-       (plugin_query): No knows what the entire path to the plugin is.
-
-       * src/amcl.c (main): Checks for modules in path ./plugins, ~/.amcl/plugins
-       and /usr/local/share/amcl, the last should be changeable via the configure
-       script.
-
-       * src/init.c (init_window): Added signal so do_plugin_information gets
-       started.
-
-       * src/modules.h (struct plugin_info): redesigned, plugin_startfunc
-       removed.
-
-       * src/net.c (make_connection): Finally got rid of that annoying
-       compilation warning.
-
-       * src/prefs.c (window_prefs): No idea in setting color of tooltip
-       when it is never used.
-
-1999-08-01  Robin Ericsson  <lobbin localhost nu>
-
-       * src/amcl.h (make_connection): Changed to CONNECTION_DATA
-       *make_connection(gchar *host, gchar *port);
-       (connection_send): Changed to
-       void connection_send(CONNECTION_DATA *cd, gchar *message).
-
-       * autogen.sh: automake changed again to just automake.
-
-       * src/init.c (do_connection): Added to use make_connection from a
-       function instead of calling make_connection directly from the menu.
-       (init_window): Added "Plugin Information" menu item which will
-       display information about the plugins ala Gimp.
-
-       * src/modules.c (plugin->info->init_function()): now gets called with
-       NULL, plugin->handle.
-
-       * src/modules_api.c (plugin_register_menu): New function so plugins are
-       able to register a menuitem that can be used.
-
-       * src/net.c (make_connection): changed and some moved into "do_connection".
-       (connection_send): Changed and is now working ;).
-
-       * src/window.c (switch_page_cb): Debug message removed.
-
-       * src/wizard.c: Now calling make_connection() the right way and is
-       thanks to that working with multiple connections.
-
-1999-07-30  Robin Ericsson  <lobbin localhost nu>
-
-       * src/net.c (action_send_to_conneciton): Now takes a connection
-       as argument to make it support multiple connections.
-       (send_to_connection): Ditto.
-
-       * src/wizard.c (free_connection_data): GtkWidget *window, does
-       not need to be freed.
-
-1999-07-29  Robin Ericsson  <lobbin localhost nu>
-
-       * src/amcl.h: New global (CONNECTION_DATA *connections[15]) added.
-
-       * src/init.c (do_close): New function. Close notebook page.
-       (do_disconnect): Support for multiple connections, now even
-       working.
-
-       * src/net.c (make_connection): Support for multiple connections,
-       now even working.
-
-       * src/window.c (switch_page_cb): Enable/disable close/disconnect
-       on the menu.
-
-       * src/wizard.c (free_connection_data): New function for clearing
-       a CONNECTION_DATA entry.
-
-1999-07-24  Robin Ericsson  <lobbin localhost nu>
-
-       * amcl.h (connection_data): Added notebook and sockfd entry.
-       (open_connection): Changed fron gchar *host, gchar *port to
-       CONNECTION_DATA *connection.
-
-       * init.c (do_close/do_disconnect): New functions.
-       (init_window): Added "Close Window" to the menu, added callback
-       for the notebook.
-
-       * modules_api.c (plugin_add_connection_text): Text sent without
-       wanting to a specific connection now goes to main.
-
-       * net.c (make_connection): Added support for multiple connections.
-       (disconnect): ditto
-       (open_connection): ditto
-       (read_from_connection): ditto
-
-       * window.c (switch_page_cb): Added function.
-
-       * wizard.c (wizard_button_connect): Support for multiple connections
-       needed alot of changed. Not ready yet.
-
-Fri Jul 23 18:37:33 CEST 1999  Robin Ericsson  <lobbin localhost nu>
-
-       * autogen.sh: changed automake; to automake --gnu --include-deps;
-
-       * config.h.in, Makefile.am: removed old unused stuff.
-
-
-Tue Mar  9 18:27:42 CET 1999  Robin Ericsson  <lobbin localhost nu>
-
-       * src/init.c [!WITHOUT_GNOME]: Fixed the GNOME compiling
-       bugs.
-
-       * src/net.c: Fixed the bug that accured when you recieved
-       alot of data from the at one time.
-
-       * src/wizard.c: Fixed the bug in connection wizard.
-
-       * src/version.c: Cosmetic fixes.
-
-       * Released 0.6.1.
-
-Thu Mar  4 18:29:46 CET 1999  Robin Ericsson  <lobbin localhost nu>
-
-       * Minor changes.
-
-       * Version 0.6 is going to be released at work tomorrow, this
-       is the last changes.
-
-Tue Mar  2 20:56:08 CET 1999  Robin Ericsson  <lobbin localhost nu>
-
-       * version.h removed, this is created every make so this file
-       is not necissary to include in the archive.
-
-       * The configure option below made working :)
-
-Mon Mar  1 20:56:06 CET 1999  Robin Ericsson  <lobbin localhost nu>
-
-       * version.[ch] added. mkhelp.c added in the dist.
-
-       * Configuring option --without-mapper added to compile
-       without the automapper.
-
-       * Added RCS/CVS $Id tags to the files.
-
-Tue Feb 23 18:15:41 CET 1999  Robin Ericsson  <lobbin localhost nu>
-
-        * Alot of changes..., action.c, mkhelp.c and dialog.c added.
-
-       * src/amcl.c: Added call to load_actions()
-
-       * src/amcl.h: Added action_data stucture and some function
-       defines.
-
-       * src/init.c: Added two new menu items.
-
-       * src/net.c, action.c: Bret Robideaux new trigger system.
-
-
-Thu Jan 28 20:14:54 CET 1999  Robin Ericsson  <lobbin localhost nu>
-
-       * src/color.c added.
-
-       * src/amcl.h: Changed some colorvariables. Added declares
-       for some calls in color.c
-
-       * src/init.c: Added some functions in color initiation
-       (from Robert's patch).
-       (init_window): Added call to create_color_box().
-
-       * src/window.c: Background ANSI, and other minor changes.
-
-Sun Jan 17 20:31:04 CET 1999  Robin Ericsson  <lobbin localhost nu>
-
-       * Changed copyright date from 1998 to 1998-1999.
-
-       * src/map.c added.
-
-       * src/amcl.c (main): Added a couple of things from Paul's
-       automapper.
-
-       * src/init.c: Added AutoMapper to the menus.
-
-Thu Jan 14 22:08:33 CET 1999  Robin Ericsson  <lobbin localhost nu>
-
-       * src/alias: Alias linked list rebuilt completly and should
-       now work as it is supposed to.
-
-       * src/prefs.c: Squashed small memory leek.
-
-Fri Jan  8 21:35:39 CET 1999  Robin Ericsson  <lobbin localhost nu>
-
-       * Changed homepage and email addresses.
-
-       * Applied Paul's patch so it will compile on GTK+ >= 1.1.3
-
-Tue Dec  8 20:46:11 CET 1998  Robin Ericsson  <lobbin spikdildo nu>
-
-       * src/alias.c, src/window.c: Alias specific code moved into
-       alias.c.
-
-       * src/window.c [!WITHOUT_GNOME] (popup_window): Instead of
-       making my own popup function I'm using the gnome built in
-       function gnome_app_message().
-       (textfield_add): If Freeze option is on then use gtk_text_freeze/
-       gtk_text_thaw.
-
-       * src/amcl.h (system_data): bool Freeze, new member.
-
-       * src/prefs.c (load_prefs/save_prefs/window_prefs): New option
-       called Freeze.
-       (prefs_freeze_cb): New function.
-
-Tue Oct 20 18:57:34 CEST 1998  Robin Ericsson  <lobbin lobbin ml org>
-
-       * src/init.c (init_window): Fixed the resizing missfeature.
-
-Mon Oct 19 19:00:06 CEST 1998  Robin Ericsson  <lobbin lobbin ml org>
-
-       * Version 0.5.1 Released!
-
-       * net.c: Applied a patch I recieved, you could create a buffer
-       if you sent text bigger then 300 chars.
-
-       * prefs.c [!HAVE_DEVGTK]: Stable GTK+ (1.0.x) doesn't have the
-       font selection widget included, added some #ifdef HAVE_DEVGTK
-       to fix this.
-
-Sun Oct 18 14:11:38 CEST 1998  Robin Ericsson  <lobbin lobbin ml org>
-
-       * Version 0.5 Released!
-
-Tue Oct 13 21:16:50 CEST 1998  Robin Ericsson  <lobbin lobbin ml org>
-
-       * alias.c (save_aliases): Added a check to see if there are any
-       entries to save.
-
-       * init.c [!WITHOUT_GNOME]: Made all the GnomeUIInfo structures
-       global.
-       [WITHOUT_GNOME] (init_window): Moved pack of menu_bar so that the
-       bar isn't at the bottom. :)
-       [!WITHOUT_GNOME]: Added some gtk_widget_set_sensitive
-
-       * net.c [!WITHOUT_GNOME]: Added some gtk_widget_set_sensitive
-       * prefs.c: Likewise
-       * window.c: Likewise
-       * wizard.c: Likewise
-
-Sun Sep 27 11:16:13 CEST 1998  Robin Ericsson  <lobbin lobbin ml org>
-
-       * README: Added a few things.
-
-       * amcl.c: #include "config.h"
-
-       * prefs.c (prefs_select_font_callback): Now sets the font to
-       preview.
-
-Thu Sep 24 16:08:08 CEST 1998  Robin Ericsson  <lobbin lobbin ml org>
-
-       * init.c (EntryHistory): New global
-       (text_entry_find): New function
-       (text_entry_key_press_cb): Likewise
-       (init_window): Connected text_entry signal "key_press_event" to
-       text_entr_key_press_cb in other to make entry scollback work.
-
-       * net.c (send_to_connection): Added just entered command last, and
-       check if connected and only send text then.
-
-Thu Sep 24 11:09:07 CEST 1998  Robin Ericsson  <lobbin lobbin ml org>
-
-       * amcl.h (system_data): bool AutoSave added.
-       (wizard_data): gchar *cstring added.
-
-       * init.c (init_window,WITH_GNOME): Trailing separators in menu
-       removed.
-
-       * prefs.c (load/save_prefs): AutoSave added.
-       prefs_autosave_cb() added.
-       (window_prefs): Check button for AutoSave added.
-
-       * window.c: Support for AutoSave.
-
-       * wizard.c (window_wizard): Modify button renamed to apply.
-
-Mon Sep 21 03:25:24 1998  Robin Ericsson  <lobbin lobbin ml org>
-
-       * init.c (init_window): Now supports GNOME menus, with pixmaps and
-       all.
-
-Sun Sep 20 15:20:01 1998  Robin Ericsson  <lobbin lobbin ml org>
-
-       * alias.c prefs.c window.c wizard.c: Removed sprintf and snprintf
-       calls and changed those to g_snprintf.
-
-       * config.h.in configure.in: Don't have to check for snprintf now
-       as it isn't used.
-
-Sat Sep 19 16:14:22 1998  Robin Ericsson  <lobbin lobbin ml org>
-
-       * Started using CVS.
+Refer to the "git log" for a detailed list of changes
diff --git a/README b/README
index 1364136..0b58ef5 100644
--- a/README
+++ b/README
@@ -53,7 +53,7 @@ This program is under GPL. See file COPYING for details.
 
     You can hack away as much as you like. If you make something you think
     would be useful for others, please send us a patch, either via
-    bugzilla or our mailing list.
+    gitlab or our mailing list.
 
 
     Things that is in constant need of contrib is:
@@ -65,9 +65,8 @@ This program is under GPL. See file COPYING for details.
 
 6. Reporting bugs.
 
-   GNOME-Mud uses the GNOME Bugtracker at <http://bugzilla.gnome.org/>. Please
-   submit any errors you find there. You may want to install the bug-buddy
-   utility to do this easily.
+   GNOME-Mud uses the GNOME Gitlab at <https://gitlab.gnome.org/GNOME/gnome-mud>. Please
+   submit any errors you find there.
 
 
 7. Contacting.
diff --git a/ROADMAP b/ROADMAP
index 70b9589..a66aa95 100644
--- a/ROADMAP
+++ b/ROADMAP
@@ -3,4 +3,4 @@ ROADMAP
 
 See the wiki for information on future plans and new features being added.
 
-  http://live.gnome.org/GnomeMud
+  https://wiki.gnome.org/Apps/MUD
diff --git a/data/icons/hicolor_apps_16x16_gnome-mud-negative.png 
b/data/icons/hicolor/16x16/apps/gnome-mud-negative.png
similarity index 100%
rename from data/icons/hicolor_apps_16x16_gnome-mud-negative.png
rename to data/icons/hicolor/16x16/apps/gnome-mud-negative.png
diff --git a/data/icons/hicolor_apps_16x16_gnome-mud-positive.png 
b/data/icons/hicolor/16x16/apps/gnome-mud-positive.png
similarity index 100%
rename from data/icons/hicolor_apps_16x16_gnome-mud-positive.png
rename to data/icons/hicolor/16x16/apps/gnome-mud-positive.png
diff --git a/data/icons/hicolor_apps_16x16_gnome-mud.png b/data/icons/hicolor/16x16/apps/gnome-mud.png
similarity index 100%
rename from data/icons/hicolor_apps_16x16_gnome-mud.png
rename to data/icons/hicolor/16x16/apps/gnome-mud.png
diff --git a/data/icons/hicolor_apps_22x22_gnome-mud.png b/data/icons/hicolor/22x22/apps/gnome-mud.png
similarity index 100%
rename from data/icons/hicolor_apps_22x22_gnome-mud.png
rename to data/icons/hicolor/22x22/apps/gnome-mud.png
diff --git a/data/icons/hicolor_apps_24x24_gnome-mud.png b/data/icons/hicolor/24x24/apps/gnome-mud.png
similarity index 100%
rename from data/icons/hicolor_apps_24x24_gnome-mud.png
rename to data/icons/hicolor/24x24/apps/gnome-mud.png
diff --git a/data/icons/hicolor_apps_32x32_gnome-mud.png b/data/icons/hicolor/32x32/apps/gnome-mud.png
similarity index 100%
rename from data/icons/hicolor_apps_32x32_gnome-mud.png
rename to data/icons/hicolor/32x32/apps/gnome-mud.png
diff --git a/data/icons/hicolor_apps_scalable_gnome-mud.svg b/data/icons/hicolor/scalable/apps/gnome-mud.svg
similarity index 100%
rename from data/icons/hicolor_apps_scalable_gnome-mud.svg
rename to data/icons/hicolor/scalable/apps/gnome-mud.svg
diff --git a/data/icons/meson.build b/data/icons/meson.build
new file mode 100644
index 0000000..eff6e4b
--- /dev/null
+++ b/data/icons/meson.build
@@ -0,0 +1 @@
+install_subdir('hicolor', install_dir: icondir)
diff --git a/data/meson.build b/data/meson.build
new file mode 100644
index 0000000..dfbcbe6
--- /dev/null
+++ b/data/meson.build
@@ -0,0 +1,25 @@
+subdir('icons')
+
+gresource = files('org.gnome.MUD.gresource.xml')
+
+resource_data = files(
+  'main.ui',
+  'muds.ui',
+  'prefs.ui'
+)
+
+desktop_file = i18n.merge_file(
+  input: 'org.gnome.MUD.desktop.in',
+  output: 'org.gnome.MUD.desktop',
+  type: 'desktop',
+  po_dir: '../po',
+  install: true,
+  install_dir: desktopdir,
+)
+
+desktop_validator = find_program('desktop-file-validate', required: false)
+if desktop_validator.found()
+  test('Validate desktop file', desktop_validator, args: [desktop_file])
+endif
+
+install_data('org.gnome.MUD.gschema.xml', install_dir: schemadir)
diff --git a/gnome-mud.desktop.in b/data/org.gnome.MUD.desktop.in
similarity index 82%
rename from gnome-mud.desktop.in
rename to data/org.gnome.MUD.desktop.in
index 0fc4eac..f9fd5cc 100644
--- a/gnome-mud.desktop.in
+++ b/data/org.gnome.MUD.desktop.in
@@ -1,6 +1,6 @@
 [Desktop Entry]
-_Name=GNOME-Mud
-_Comment=The GNOME MUD Client
+Name=GNOME-Mud
+Comment=The GNOME MUD Client
 Exec=gnome-mud
 Icon=gnome-mud
 StartupNotify=true
diff --git a/doc/meson.build b/doc/meson.build
new file mode 100644
index 0000000..04e2acf
--- /dev/null
+++ b/doc/meson.build
@@ -0,0 +1,4 @@
+install_man('gnome-mud.6')
+
+# TODO: Removed gnome-doc-utils.make already in autotools.
+# Will need to be replaced with updated docs.
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..aeec739
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,75 @@
+project(
+  'gnome-mud', 'c',
+  license: 'GPL2+',
+  version: '0.11.3',
+  default_options: [
+    'warning_level=2', # TODO: Try 3 after 2 is clean
+    'buildtype=debugoptimized',
+    'c_std=gnu11',
+  ],
+  meson_version: '>= 0.47.0'
+)
+
+gnome = import('gnome')
+i18n = import('i18n')
+
+prefix = get_option('prefix')
+
+bindir = join_paths(prefix, get_option('bindir'))
+libdir = join_paths(prefix, get_option('libdir'))
+datadir = join_paths(prefix, get_option('datadir'))
+
+desktopdir =  join_paths(datadir, 'applications')
+icondir = join_paths(datadir, 'icons')
+localedir = join_paths(datadir, 'locale')
+schemadir = join_paths(datadir, 'glib-2.0', 'schemas')
+
+libgio_dep = dependency('gio-2.0', version: '>= 2.48')
+libgtk_dep = dependency('gtk+-3.0', version: '>= 3.4')
+libvte_dep = dependency('vte-2.91', version: '>= 0.37')
+libpcre_dep = dependency('libpcre', version: '>= 6.0.0')
+libgst_dep = dependency('gstreamer-1.0', version: '>= 1.0', required: get_option('gstreamer'))
+libz_dep = dependency('zlib', required: get_option('mccp'))
+
+status = [
+  'Version ....... : @0@'.format(meson.project_version()),
+  'Build Type .... : @0@'.format(get_option('buildtype')),
+  'Prefix ........ : @0@'.format(get_option('prefix')),
+  '',
+  'GStreamer ..... : @0@'.format(libgst_dep.found()),
+  'MCCP .......... : @0@'.format(libz_dep.found()),
+  'Debug Logger .. : @0@'.format(get_option('debug-logger')),
+  ''
+]
+
+config_h = configuration_data()
+
+set_defines = [
+  ['VERSION', meson.project_version()],
+  ['GETTEXT_PACKAGE', meson.project_name()],
+  ['LOCALEDIR', localedir]
+]
+
+foreach define: set_defines
+  config_h.set_quoted(define[0], define[1])
+endforeach
+
+config_h.set('ENABLE_NLS', true) # FIXME: remove conditionals from source code
+config_h.set('ENABLE_GST', libgst_dep.found())
+config_h.set('ENABLE_MCCP', libz_dep.found())
+config_h.set('ENABLE_DEBUG_LOGGER', get_option('debug-logger'))
+
+configure_file(
+  output: 'config.h',
+  configuration: config_h
+)
+top_inc = include_directories('.')
+
+subdir('data')
+subdir('src')
+subdir('po')
+subdir('doc')
+
+meson.add_install_script('meson_post_install.sh')
+
+message('\n  '.join(status))
\ No newline at end of file
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..5074320
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,17 @@
+option('gstreamer',
+  type: 'feature',
+  value: 'auto',
+  description: 'Enable GStreamer used for MSP (Mud Sound Protocol)'
+)
+
+option('mccp',
+  type: 'feature',
+  value: 'auto',
+  description: 'Enable MCCP (MUD Client Compression Protocol)'
+)
+
+option('debug-logger',
+  type: 'boolean',
+  value: 'false',
+  description: 'Enable debugging info logger'
+)
\ No newline at end of file
diff --git a/meson_post_install.sh b/meson_post_install.sh
new file mode 100755
index 0000000..cb6d41e
--- /dev/null
+++ b/meson_post_install.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+if [ -z "$DESTDIR" ]; then
+  echo Compiling GSettings schemas...
+  glib-compile-schemas ${MESON_INSTALL_PREFIX}/share/glib-2.0/schemas
+
+  echo Updating desktop database...
+  update-desktop-database -q ${MESON_INSTALL_PREFIX}/share/applications
+fi
\ No newline at end of file
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 880d880..bcfcacb 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -1,6 +1,9 @@
-[encoding: UTF-8]
 # List of source files containing translatable strings.
 # Please keep this file sorted alphabetically.
+data/main.ui
+data/muds.ui
+data/prefs.ui
+data/org.gnome.MUD.gschema.xml
 gnome-mud.desktop.in
 src/debug-logger.c
 src/mud-connections.c
@@ -12,7 +15,3 @@ src/mud-trigger.c
 src/mud-window.c
 src/mud-window-prefs.c
 src/handlers/mud-telnet-mccp.c
-[type: gettext/glade]data/main.ui
-[type: gettext/glade]data/muds.ui
-[type: gettext/glade]data/prefs.ui
-[type: gettext/gsettings]data/org.gnome.MUD.gschema.xml
diff --git a/po/meson.build b/po/meson.build
new file mode 100644
index 0000000..e9b77d7
--- /dev/null
+++ b/po/meson.build
@@ -0,0 +1 @@
+i18n.gettext(meson.project_name(), preset: 'glib')
diff --git a/src/debug-logger.c b/src/debug-logger.c
index 65771ac..99f9b47 100644
--- a/src/debug-logger.c
+++ b/src/debug-logger.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include  "config.h"
-#endif
-
 #include <glib.h>
 #include <glib-object.h>
 #include <glib/gi18n.h>
diff --git a/src/gnome-mud.c b/src/gnome-mud.c
index cfd0dc9..7dd2f9d 100644
--- a/src/gnome-mud.c
+++ b/src/gnome-mud.c
@@ -18,10 +18,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#if HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include <glib/gi18n.h>
 #include <gio/gio.h>
 #include <gtk/gtk.h>
diff --git a/src/handlers/meson.build b/src/handlers/meson.build
new file mode 100644
index 0000000..17d7c16
--- /dev/null
+++ b/src/handlers/meson.build
@@ -0,0 +1,43 @@
+telnet_handler_sources = [
+  'mud-telnet-charset.c',
+  'mud-telnet-charset.h',
+  'mud-telnet-echo.c',
+  'mud-telnet-echo.h',
+  'mud-telnet-eor.c',
+  'mud-telnet-eor.h',
+  'mud-telnet-handlers.h',
+  'mud-telnet-handler-interface.c',
+  'mud-telnet-handler-interface.h',
+  'mud-telnet-mssp.c',
+  'mud-telnet-mssp.h',
+  'mud-telnet-naws.c',
+  'mud-telnet-naws.h',
+  'mud-telnet-new-environ.c',
+  'mud-telnet-new-environ.h',
+  'mud-telnet-ttype.c',
+  'mud-telnet-ttype.h',
+  'mud-telnet-zmp.c',
+  'mud-telnet-zmp.h'
+]
+
+if libgst_dep.found()
+  telnet_handler_sources += [
+    'mud-telnet-msp.c',
+    'mud-telnet-msp.h',
+  ]
+endif
+
+if libz_dep.found()
+  telnet_handler_sources += [
+    'mud-telnet-mccp.c',
+    'mud-telnet-mccp.h',
+  ]
+endif
+
+libtelnethandlers = static_library(
+  'telnethandlers',
+  telnet_handler_sources,
+  dependencies: [libgio_dep, libgst_dep, libz_dep, libgtk_dep, libvte_dep], # TODO: get rid of gtk and vte 
here?
+  c_args: gnome_mud_cflags,
+  include_directories: [top_inc, src_inc]
+)
diff --git a/src/handlers/mud-telnet-charset.c b/src/handlers/mud-telnet-charset.c
index 8251275..32feb55 100644
--- a/src/handlers/mud-telnet-charset.c
+++ b/src/handlers/mud-telnet-charset.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <glib-object.h>
 #include <glib/gi18n.h>
diff --git a/src/handlers/mud-telnet-echo.c b/src/handlers/mud-telnet-echo.c
index 25beb47..50455a7 100644
--- a/src/handlers/mud-telnet-echo.c
+++ b/src/handlers/mud-telnet-echo.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <glib-object.h>
 #include <glib/gi18n.h>
diff --git a/src/handlers/mud-telnet-eor.c b/src/handlers/mud-telnet-eor.c
index cb9911a..4b83885 100644
--- a/src/handlers/mud-telnet-eor.c
+++ b/src/handlers/mud-telnet-eor.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <glib-object.h>
 #include <glib/gi18n.h>
diff --git a/src/handlers/mud-telnet-handler-interface.c b/src/handlers/mud-telnet-handler-interface.c
index 934f972..618422b 100644
--- a/src/handlers/mud-telnet-handler-interface.c
+++ b/src/handlers/mud-telnet-handler-interface.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <glib-object.h>
 
diff --git a/src/handlers/mud-telnet-handlers.h b/src/handlers/mud-telnet-handlers.h
index 6e0f916..ee27bb5 100644
--- a/src/handlers/mud-telnet-handlers.h
+++ b/src/handlers/mud-telnet-handlers.h
@@ -22,10 +22,6 @@
 
 G_BEGIN_DECLS
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include "mud-telnet-handler-interface.h"
 #include "mud-telnet-charset.h"
 #include "mud-telnet-echo.h"
diff --git a/src/handlers/mud-telnet-mccp.c b/src/handlers/mud-telnet-mccp.c
index fd57591..da70ef6 100644
--- a/src/handlers/mud-telnet-mccp.c
+++ b/src/handlers/mud-telnet-mccp.c
@@ -17,12 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
-#ifdef ENABLE_MCCP
-
 #include <glib.h>
 #include <glib/gi18n.h>
 #include <zlib.h>
@@ -438,6 +432,3 @@ mud_mccp_decompress(MudTelnetMccp *self, guchar *buffer, guint32 length)
 
     return ret;
 }
-
-#endif // ENABLE_MCCP
-
diff --git a/src/handlers/mud-telnet-msp.c b/src/handlers/mud-telnet-msp.c
index 616baaf..0d83df6 100644
--- a/src/handlers/mud-telnet-msp.c
+++ b/src/handlers/mud-telnet-msp.c
@@ -17,12 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
-#ifdef ENABLE_GST
-
 #include <glib.h>
 #include <string.h>
 #include <gst/gst.h>
@@ -1170,6 +1164,3 @@ mud_telnet_msp_music_bus_call (GstBus *bus, GstMessage *msg, gpointer data)
 
     return TRUE;
 }
-
-#endif
-
diff --git a/src/handlers/mud-telnet-mssp.c b/src/handlers/mud-telnet-mssp.c
index e03ddb1..d4cedb6 100644
--- a/src/handlers/mud-telnet-mssp.c
+++ b/src/handlers/mud-telnet-mssp.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <glib-object.h>
 #include <glib/gi18n.h>
diff --git a/src/handlers/mud-telnet-naws.c b/src/handlers/mud-telnet-naws.c
index 180e6db..7909f85 100644
--- a/src/handlers/mud-telnet-naws.c
+++ b/src/handlers/mud-telnet-naws.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <glib-object.h>
 #include <glib/gi18n.h>
diff --git a/src/handlers/mud-telnet-new-environ.c b/src/handlers/mud-telnet-new-environ.c
index 936a273..02885b0 100644
--- a/src/handlers/mud-telnet-new-environ.c
+++ b/src/handlers/mud-telnet-new-environ.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <glib-object.h>
 #include <glib/gi18n.h>
diff --git a/src/handlers/mud-telnet-ttype.c b/src/handlers/mud-telnet-ttype.c
index 453e981..73e490d 100644
--- a/src/handlers/mud-telnet-ttype.c
+++ b/src/handlers/mud-telnet-ttype.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <glib-object.h>
 #include <glib/gi18n.h>
diff --git a/src/handlers/mud-telnet-zmp.c b/src/handlers/mud-telnet-zmp.c
index e5d8c93..a50f606 100644
--- a/src/handlers/mud-telnet-zmp.c
+++ b/src/handlers/mud-telnet-zmp.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include <glib.h>
 #include <string.h>
 #include <stdarg.h>
diff --git a/src/meson.build b/src/meson.build
new file mode 100644
index 0000000..a66983b
--- /dev/null
+++ b/src/meson.build
@@ -0,0 +1,83 @@
+src_inc = include_directories('.')
+gnome_mud_cflags = [
+  '-include', 'config.h'
+]
+
+subdir('handlers')
+subdir('zmp')
+
+gnome_mud_sources = [
+  'debug-logger.c',
+  'debug-logger.h',
+  'ecma48.h',
+  'gnome-mud.c',
+  'gnome-mud.h',
+  'gnome-mud-icons.h',
+  'mud-character.c',
+  'mud-character.h',
+  'mud-connection-view.c',
+  'mud-connections.c',
+  'mud-connections.h',
+  'mud-connection-view.h',
+  'mud-connection.c',
+  'mud-connection.h',
+  'mud-line-buffer.c',
+  'mud-line-buffer.h',
+  'mud-log.c',
+  'mud-log.h',
+  'mud-mud.c',
+  'mud-mud.h',
+  'mud-parse-alias.c',
+  'mud-parse-alias.h',
+  'mud-parse-base.c',
+  'mud-parse-base.h',
+  'mud-parse-trigger.c',
+  'mud-parse-trigger.h',
+  'mud-profile.c',
+  'mud-profile.h',
+  'mud-profile-manager.c',
+  'mud-profile-manager.h',
+  'mud-regex.c',
+  'mud-regex.h',
+  'mud-subwindow.c',
+  'mud-subwindow.h',
+  'mud-telnet.c',
+  'mud-telnet.h',
+  'mud-trigger.c',
+  'mud-trigger.h',
+  'mud-tray.c',
+  'mud-tray.h',
+  'mud-window.c',
+  'mud-window.h',
+  'mud-window-prefs.c',
+  'mud-window-prefs.h',
+  'mud-window-profile.c',
+  'mud-window-profile.h',
+  'utils.c',
+  'utils.h'
+]
+
+gnome_mud_sources += gnome.compile_resources(
+  'resources', gresource,
+  source_dir: join_paths(meson.source_root(), 'data'),
+  c_name: 'gnome_mud',
+  dependencies: resource_data,
+  export: true, # TODO: Once we don't need to use manual access, we can get rid of this?
+)
+
+enum_headers = files('mud-trigger.h')
+enum_types = 'gnome-mud-builtins'
+gnome_mud_sources += gnome.mkenums(
+  enum_types,
+  sources: enum_headers,
+  c_template: enum_types + '.c.template',
+  h_template: enum_types + '.h.template'
+)
+
+executable('gnome-mud', gnome_mud_sources,
+  gui_app: true,
+  link_with: [libtelnethandlers, libzmp],
+  dependencies: [libgio_dep, libgtk_dep, libvte_dep, libpcre_dep, libgst_dep],
+  c_args: gnome_mud_cflags,
+  install: true
+)
diff --git a/src/mud-character.c b/src/mud-character.c
index cd2f930..eb42c48 100644
--- a/src/mud-character.c
+++ b/src/mud-character.c
@@ -18,10 +18,6 @@
  * SPDX-License-Identifier: GPL-2.0-or-later
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include "mud-character.h"
 #include "mud-profile.h"
 #include "mud-mud.h"
diff --git a/src/mud-connection-view.c b/src/mud-connection-view.c
index 52f1ce9..2a6f1f7 100644
--- a/src/mud-connection-view.c
+++ b/src/mud-connection-view.c
@@ -19,10 +19,6 @@
  * SPDX-License-Identifier: GPL-2.0-or-later
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include <glib-object.h>
 #include <glib/gi18n.h>
 #include <gtk/gtk.h>
diff --git a/src/mud-connection-view.h b/src/mud-connection-view.h
index c4b68d8..74ec6d8 100644
--- a/src/mud-connection-view.h
+++ b/src/mud-connection-view.h
@@ -3,10 +3,6 @@
 
 G_BEGIN_DECLS
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <gtk/gtk.h>
 #include <vte/vte.h>
 
diff --git a/src/mud-connections.c b/src/mud-connections.c
index 04c42c0..770e960 100644
--- a/src/mud-connections.c
+++ b/src/mud-connections.c
@@ -19,10 +19,6 @@
  * SPDX-License-Identifier: GPL-2.0-or-later
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 /* TODO: Review includes.. */
 #include <glib.h>
 #include <gio/gio.h>
diff --git a/src/mud-line-buffer.c b/src/mud-line-buffer.c
index 068094f..9f1fdce 100644
--- a/src/mud-line-buffer.c
+++ b/src/mud-line-buffer.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <string.h>
 #include <glib-object.h>
diff --git a/src/mud-log.c b/src/mud-log.c
index 2f0df7f..8b3f47c 100644
--- a/src/mud-log.c
+++ b/src/mud-log.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include <glib/gi18n.h>
 #include <stdio.h>
 #include <sys/stat.h>
diff --git a/src/mud-mud.c b/src/mud-mud.c
index 5d185e1..eccbe7c 100644
--- a/src/mud-mud.c
+++ b/src/mud-mud.c
@@ -18,10 +18,6 @@
  * SPDX-License-Identifier: GPL-2.0-or-later
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include "mud-mud.h"
 
 #include <gio/gio.h>
diff --git a/src/mud-parse-alias.c b/src/mud-parse-alias.c
index 81fb66b..3bcda51 100644
--- a/src/mud-parse-alias.c
+++ b/src/mud-parse-alias.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include <glib-object.h>
 #include <glib/gi18n.h>
 #include <string.h>
diff --git a/src/mud-parse-base.c b/src/mud-parse-base.c
index c0afd8b..e0dabe9 100644
--- a/src/mud-parse-base.c
+++ b/src/mud-parse-base.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include <glib-object.h>
 #include <glib/gi18n.h>
 #include <stdlib.h>
diff --git a/src/mud-parse-trigger.c b/src/mud-parse-trigger.c
index de2d20a..1203366 100644
--- a/src/mud-parse-trigger.c
+++ b/src/mud-parse-trigger.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include <glib-object.h>
 #include <glib/gi18n.h>
 #include <string.h>
diff --git a/src/mud-profile-manager.c b/src/mud-profile-manager.c
index c3864c1..fd58249 100644
--- a/src/mud-profile-manager.c
+++ b/src/mud-profile-manager.c
@@ -18,13 +18,10 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <glib/gi18n.h>
 #include <glib/gprintf.h>
+#include <errno.h>
 
 #include "gnome-mud.h"
 #include "mud-window.h"
diff --git a/src/mud-profile.c b/src/mud-profile.c
index 1f111ca..c6714e1 100644
--- a/src/mud-profile.c
+++ b/src/mud-profile.c
@@ -19,10 +19,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include <string.h>
 
 #include <glib-object.h>
diff --git a/src/mud-regex.c b/src/mud-regex.c
index 18bb0c1..156e2ab 100644
--- a/src/mud-regex.c
+++ b/src/mud-regex.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include <pcre.h>
 #include <glib-object.h>
 #include <glib/gi18n.h>
diff --git a/src/mud-subwindow.c b/src/mud-subwindow.c
index ff9759b..3f98a12 100644
--- a/src/mud-subwindow.c
+++ b/src/mud-subwindow.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib/gi18n.h>
 #include <gtk/gtk.h>
 #include <vte/vte.h>
diff --git a/src/mud-telnet.c b/src/mud-telnet.c
index 38211f8..0bf30a8 100644
--- a/src/mud-telnet.c
+++ b/src/mud-telnet.c
@@ -20,10 +20,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include <glib.h>
 #include <stdarg.h>
 #include <string.h> // memset
diff --git a/src/mud-trigger.c b/src/mud-trigger.c
index 81fcacc..a98c1ee 100644
--- a/src/mud-trigger.c
+++ b/src/mud-trigger.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <glib/gi18n.h>
 #include <glib/gprintf.h>
diff --git a/src/mud-window-prefs.c b/src/mud-window-prefs.c
index 97f3324..b33fd3f 100644
--- a/src/mud-window-prefs.c
+++ b/src/mud-window-prefs.c
@@ -1,7 +1,7 @@
 /* GNOME-Mud - A simple Mud Client
  * mud-window-prefs.c
  * Copyright 2005-2009 Les Harris <lharris gnome org>
- * Copyright 2018 Mart Raudsepp <leio gentoo org>
+ * Copyright 2018-2019 Mart Raudsepp <leio gentoo org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -18,10 +18,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <gtk/gtk.h>
 #include <glib/gprintf.h>
diff --git a/src/mud-window-profile.c b/src/mud-window-profile.c
index e0aed98..9992dd0 100644
--- a/src/mud-window-profile.c
+++ b/src/mud-window-profile.c
@@ -18,10 +18,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include <glib/gi18n.h>
 #include <string.h>
 #include <glib/gprintf.h>
diff --git a/src/mud-window.c b/src/mud-window.c
index abaa3c2..06f2ca6 100644
--- a/src/mud-window.c
+++ b/src/mud-window.c
@@ -2,7 +2,7 @@
  * mud-window.c
  * Copyright (C) 1998-2005 Robin Ericsson <lobbin localhost nu>
  * Copyright (C) 2005-2009 Les Harris <lharris gnome org>
- * Copyright (C) 2018 Mart Raudsepp <leio gentoo org>
+ * Copyright (C) 2018-2019 Mart Raudsepp <leio gentoo org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -19,10 +19,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#  include "config.h"
-#endif
-
 #include <gdk/gdkkeysyms.h>
 #include <gtk/gtk.h>
 #include <glib/gi18n.h>
diff --git a/src/zmp/meson.build b/src/zmp/meson.build
new file mode 100644
index 0000000..7aa14cf
--- /dev/null
+++ b/src/zmp/meson.build
@@ -0,0 +1,18 @@
+zmp_sources = [
+  'zmp-package-interface.c',
+  'zmp-package-interface.h',
+  'zmp-core.c',
+  'zmp-core.h',
+  'zmp-main.c',
+  'zmp-main.h',
+  'zmp-subwindow.c',
+  'zmp-subwindow.h'
+]
+
+libzmp = static_library(
+  'zmp',
+  zmp_sources,
+  dependencies: [libgio_dep, libgtk_dep, libgst_dep, libvte_dep], # TODO: get rid of gtk and vte here? Also 
gst is badly depended on via telnethandlers header
+  c_args: gnome_mud_cflags,
+  include_directories: [top_inc, src_inc]
+)
diff --git a/src/zmp/zmp-core.c b/src/zmp/zmp-core.c
index ca8572c..e73728c 100644
--- a/src/zmp/zmp-core.c
+++ b/src/zmp/zmp-core.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <glib-object.h>
 #include <glib/gi18n.h>
diff --git a/src/zmp/zmp-main.c b/src/zmp/zmp-main.c
index 3f1a30f..7871ee5 100644
--- a/src/zmp/zmp-main.c
+++ b/src/zmp/zmp-main.c
@@ -18,7 +18,6 @@
  */
 
 #include <glib/gi18n.h>
-#include <gtk/gtk.h>
 #include <glib/gprintf.h>
 
 #include "gnome-mud.h"
diff --git a/src/zmp/zmp-package-interface.c b/src/zmp/zmp-package-interface.c
index 0e45c47..2da9567 100644
--- a/src/zmp/zmp-package-interface.c
+++ b/src/zmp/zmp-package-interface.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <glib-object.h>
 
diff --git a/src/zmp/zmp-subwindow.c b/src/zmp/zmp-subwindow.c
index 6e87bff..b42060c 100644
--- a/src/zmp/zmp-subwindow.c
+++ b/src/zmp/zmp-subwindow.c
@@ -17,10 +17,6 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #include <glib.h>
 #include <glib-object.h>
 #include <glib/gi18n.h>


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]