0.4 pl1
--------
Split process into two again.The slow display speed occurs in 0.4 is solved.

0.5
--------
(1) Fix the bugs about root shell
(2) seperate system dependent code from chinese.c.The port is much easy now.
    Please see PORTABLE.DOC
(3) add two perl script tit2def.perl tit2phone.perl for translating cxterm
    *.tit file to .def or phone file.
(4) Add Mule ISO2202 character set support.Because BIG5 is not registered
    in ISO2002, the form is private to Mule.
(5) other minor bugs fix.

0.52
--------
(1) Change Makefile,you can specify CHBIN,CHSRC & CHFONT to assign which
    directory you want to put you bin,source and font file.

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
(2) Add a new command chsys,you can setup chdrv system parameter with this
    command.In this version,the command support
	-k <style>    : assign keyboard style for phonetic input method
	-wx <x>       : change default 	-wy <y>       : change default window height
	-f <hbf>      : change default font style file,if <hbf> is empty
			the internal kc font is used.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
For some reason (2) can' see in 0.52,but you can hope it occur in the latter version

(3) Add a configuration file chinese.conf,This file be put in /etc.The style of
    it is very simple you can see the comment in it.Whenever you change the 
    chinese.conf ,you must execute script chconfig to translate it.
(4) There are many keymap for phonetic input method.This version render a
    remapable keyboard.There is a new enviroment variable PHONETIC_KBD.This
    variable should be set to a keymap file whose length is 128.It is a ascii
    to key mapper.The first byte is the related key of '\0',thesecond byte 
    is the related key of '\1' and etc.To be more explicit,for example,
	in = fopen("xxxx","rb");
	fread(keymap,128,1,in);
	close(in);
	for(i=0;i<128;i++) new_keyboard[i] = old_keyboard[keymap[i]];
    the above code load the keyboard,and when input 
	read from tty to buf
	for(i=0;i<strlen(buf);i++)
		buf[i] = new_keyboard[buf[i]];
    you must prepare the keymap by yourself.If you complete some     send me to let more people can live with your work.Thanks.		

(5) add two startup script,the first is ch_profile.This script will be executed
    before any user startup by 'ccc'.The second is './chrc',the file is call 
    after 'ch_profile' but it can be different between every user.
 
(6) You can kill chinese daemon from main memory by 'ccc -k'.A direct kill 
    is not recommended.

(7) fix a bugs in virtual screen switch.If you still see the chdrv interface
    other textmode screen,please let me know.  

0.53
--------------------------------
(1) clear the first line of screen correctly
(2) no longer hang when type exit to exit from ccc
(3) some refine in install procedure
(4) a major bugs fix in scroll
(5) the environment variable $MAIL $USER $LOGNAME $SHELL has been setup
    correctly.The method is not so good and so I will reimplement it latter.
    But ,at least, it works fine.
(6) /etc/chinese.conf will not be overwrite when it exists.
(7) The HBF font path options is added in config 0.9
----------------
(1) fix scroll error.
(2) go into BETA release.
(3) make some improvement in install procedure.
(4) the function key is usable when Chinese input method is active.That is,
    you can move your cursor when Chinese method is active.
(5) Fix a major bugs in output.c
(6) You can use tcsh as login shell now.
(7) The problem that Chinese console interface other screen is 'resolve'.If
    you still find abnormal situation,please let me know.
(8) the speed is some improvement by turn off cursor when display character.
    This is only obvious when you use 'cat' to display file.
(9) A new multiple input method driver.Its behavior has some strange because
    of the quick sort can't preserve the order of it.It should be improve soon.
(10) The format of *.tbl is modified.So you must to recompile your *.def file.
     
