2004/04/10 - Diego Essaya:
	* NLS (gettext) support and English translation.

2004/02/29 - Diego Essaya
	* Documentation: Wrote man pages for gems-server(1) and gems-client(1)
	  in doc/.

2004/02/26 - Diego Essaya
	* status_t: Changed the osret_t definition to status_t:
	  enum {EXIT_OK = 0, EXIT_FAIL, CONTINUE} status_t;
	  Changed some functions in server and client to use variables
	  of this type for flow control.

2004/02/25 - Diego Essaya
	* Protocol: Change in the order in which the versions are
	interchanged. Now the server sends its version first. This allows
	the client to know that the connection was refused if the server
	does not send its version. See doc/Protocol.

2004/02/23 - Diego Essaya
	Changed the name gems_msg_t to t_gems_msg.

2004/02/22 - Diego Essaya
	Changed the module name 'signal' to 'sighandlers', because there is
	a 'signal.h' in the standard C include directory.

2004/02/16 - Diego Essaya
	* General code cleanup: Every c/h file was adapted to the specs in
	  CodingStandards. I used the indent(1) tool to acomplish this. The
	  only problem were the comments at the right of code, because indent
	  uses tabs instead of spaces. Indentation was set to 4 spaces.
	* signal.c / signal.h: Functions for signal handling, common to the
	server and client. 

2004/02/14 - Emiliano Castagnari
	* version.h: Declarations and macros related to the project version.

2004/01/09 - Diego Essaya
	Protocol modified: if the server denies connection for X cause,
	the client now has a way to know this. See doc/Protocol.

2004/01/03 - Diego Essaya
	Code cleanup and optimization. To save memory and execution time,
	I use one single I/O buffer for the whole program. This buffer is
	declared globally as msg_buffer[BUFSIZE] in protocol.c.

2004/01/02 - Diego Essaya
	- Code cleanup. The function parse_msg() was a pain in the ass (I
	  don't know what I was thinking of when I wrote it :P ), so I
	  changed it to get_msg(), which is much more simple and useful.
	- Implemented functions for sending & receiving the terminal size:
	  get_winsize(), send_winsize() and compare_winsize().

2003/12/31 - Diego Essaya
	Started to implement the communication protocol. Files added:
	* protocol.h and protocol.c: Functions and declarations for message
	I/O following the protocol defined in doc/Protocol.
	o y seguramente defectuoso, pero 
	es algo como para empezar...

2003/12/29 - Diego Essaya
	Release: 0.2.0
	Files in this directory contain declarations and code common to both
	server and client. By now, the only file created is:
	* common.h: common declarations, as the default TCP port and project
	version.

