From: Shang-Feng Y. <sf...@us...> - 2000-09-12 08:43:57
|
Update of /cvsroot/pydict In directory slayer.i.sourceforge.net:/tmp/cvs-serv2995 Modified Files: CHANGELOG README dict.py install.sh Log Message: Modify CHANGELOG to reflect the change of v0.2.5 release Modify version number to 0.2.5 in README and dict.py Modify install.sh to fit the change of v0.2.5 release Index: README =================================================================== RCS file: /cvsroot/pydict/README,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** README 2000/09/04 02:57:05 1.2 --- README 2000/09/12 08:43:53 1.3 *************** *** 1,12 **** ! pyDict-0.2.4 ³o¬O¤@Ó^º~¦r¨åµ{¦¡¡C¥ÑDaniel Gau§Q¥Îpython/gtk¼g¦¨¡C ! pyDict±N¥HGPLµo¦æ¡C¦pªG¦³¥ô¦óªº«ØÄ³¡AÅwªï§A¸ò§ÚÁpµ¸ ¦³Ãöª©Åv½Ð°Ñ¨£COPYING http://www.linux.org.tw/~plateau/linux_notes/index.html pl...@pa... ! maintainer: Shang-Feng Yang <st...@ch...> Debian package maintainer: Anthony Fok <fo...@de...> --- 1,13 ---- ! pyDict-0.2.5 ³o¬O¤@Ó^º~¦r¨åµ{¦¡¡C¥ÑDaniel Gau§Q¥Îpython/gtk¼g¦¨¡C ! pyDict¥HGPLµo¦æ¡C¦pªG¦³¥ô¦óªº«ØÄ³¡AÅwªï§A¸ò§ÚÁpµ¸ ¦³Ãöª©Åv½Ð°Ñ¨£COPYING http://www.linux.org.tw/~plateau/linux_notes/index.html + http://sourceforge.net/projects/pydict/ pl...@pa... ! maintainer: Shang-Feng Yang <sf...@us...> Debian package maintainer: Anthony Fok <fo...@de...> Index: dict.py =================================================================== RCS file: /cvsroot/pydict/dict.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** dict.py 2000/09/10 23:05:35 1.4 --- dict.py 2000/09/12 08:43:53 1.5 *************** *** 87,91 **** self.entry.grab_focus() ! self.set_title("pyDict-0.2.4") self.set_usize(600,400) --- 87,91 ---- self.entry.grab_focus() ! self.set_title("pyDict-0.2.5") self.set_usize(600,400) *************** *** 183,187 **** # create a button for small hbox # ! button = GtkButton("pyDict-0.2.4") button.connect("clicked",self.change_size) self.b_small.pack_start(button,expand=FALSE) --- 183,187 ---- # create a button for small hbox # ! button = GtkButton("pyDict-0.2.5") button.connect("clicked",self.change_size) self.b_small.pack_start(button,expand=FALSE) *************** *** 410,415 **** def help_about(self,mi=None): ! GtkExtra.message_box("pyDict v0.2.4", ! """pyDict v0.2.4 Made by Daniel Gau <pl...@pa...> --- 410,415 ---- def help_about(self,mi=None): ! GtkExtra.message_box("pyDict v0.2.5", ! """pyDict v0.2.5 Made by Daniel Gau <pl...@pa...> *************** *** 595,599 **** # print title print '#----------------------------------------------------#' ! print '# pyDict-0.2.4 Made by Daniel Gau(plateau) #' print '#----------------------------------------------------#' print --- 595,599 ---- # print title print '#----------------------------------------------------#' ! print '# pyDict-0.2.5 Made by Daniel Gau(plateau) #' print '#----------------------------------------------------#' print Index: install.sh =================================================================== RCS file: /cvsroot/pydict/install.sh,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** install.sh 2000/09/06 14:49:04 1.3 --- install.sh 2000/09/12 08:43:53 1.4 *************** *** 1,35 **** #!/bin/sh # define some variables ! VERSION='0.2.4' ! GNOME_SHORTCUT='/usr/share/gnome/apps/Chinese/' ! ICONS='/usr/share/icons/' # install main files ! mkdir -p /usr/X11R6/lib/X11/pyDict/ ! install -m 644 pydict.lib yaba.xpm /usr/X11R6/lib/X11/pyDict/ mv dict.py pydict ! install -D -m 755 pydict /usr/X11R6/bin/ # install pyDict.desktop and dict.xpm if corresponding directories exist ! [ -d $GNOME_SHORTCUT ] && install -m 644 pyDict.desktop $GNOME_SHORTCUT ! [ -d $ICONS ] && install -m 644 dict.xpm $ICONS # install documents ! mkdir -p /usr/doc/pyDict-$VERSION ! install -m 644 CHANGELOG README COPYING /usr/doc/pyDict-$VERSION/ ! echo '########################################' ! echo '# #' ! echo '# pyDict v0.2.4 #' ! echo '# Made by Daniel Gau #' ! echo '# <pl...@pa...> #' ! echo '# for my lovely wife,Cecile Ho #' ! echo '# #' ! echo '########################################' ! echo ! echo 'Thank you for installing pyDict v0.2.4' ! echo ! echo '½Ð¥´ pydict -x ±Ò°Êµøµ¡¼Ò¦¡' ! echo '©Î¥´ pydict [-e|c] ±Ò°Ê¤å¦r¼Ò¦¡' ! echo '©Î¥´ pydict -h Åã¥Ü²³æªº»¡©ú' ! echo --- 1,50 ---- #!/bin/sh + ######### CVS informations ######### + # $Id$ + #################################### + # + # pyDict Installation Script + # + # created by plateau <dan...@us...> + # modified by storm <sf...@us...> + # # define some variables ! VERSION='0.2.5' ! GNOME_SHORTCUT_DIR='/usr/share/gnome/apps/Chinese/' ! ICONS_DIR='/usr/share/icons/' ! DATA_DIR='/usr/X11R6/lib/X11/pyDict/' ! EXEC_DIR='/usr/X11R6/bin/' ! DOC_DIR="/usr/doc/pyDict-$VERSION/" ! MAIN_DATA='pydict.lib yaba.xpm HELP' ! DOC='CHANGELOG README COPYING' # install main files ! mkdir -p $DATA_DIR ! install -m 644 $MAIN_DATA $DATA_DIR mv dict.py pydict ! install -D -m 755 pydict $EXEC_DIR # install pyDict.desktop and dict.xpm if corresponding directories exist ! [ -d $GNOME_SHORTCUT_DIR ] && install -m 644 pyDict.desktop $GNOME_SHORTCUT_DIR ! [ -d $ICONS_DIR ] && install -m 644 dict.xpm $ICONS_DIR # install documents ! mkdir -p $DOC_DIR ! install -m 644 $DOC $DOC_DIR + cat << EOF + ######################################## + # # + # pyDict v$VERSION # + # Made by Daniel Gau # + # <pl...@pa...> # + # for my lovely wife,Cecile Ho # + # # + ######################################## ! Thank you for installing pyDict v$VERSION ! ! ½Ð¥´ pydict -x ±Ò°Êµøµ¡¼Ò¦¡ ! ©Î¥´ pydict [-e|c] ±Ò°Ê¤å¦r¼Ò¦¡ ! ©Î¥´ pydict -h Åã¥Ü²³æªº»¡©ú ! ! EOF |