diff options
author | Nick White <git@njw.me.uk> | 2011-09-08 00:52:41 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2011-09-08 00:52:41 +0100 |
commit | e3a8b3b59d5a9c64eb141ae02a67e5cd92ffe402 (patch) | |
tree | d246c49facfc11f3dc3ceb921ad11b5516709b0a | |
parent | 2b57396a362a70d7a1cae36a246e682181b5f023 (diff) |
Only show existing tools in GUI, improve webpage & readme
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | config.mk | 1 | ||||
-rwxr-xr-x | getxbookgui | 2 |
5 files changed, 5 insertions, 7 deletions
@@ -62,7 +62,7 @@ index.html: doap.ttl README echo "</style></head><body>" >> $@ smu < README >> $@ echo "<h2>download</h2>" >> $@ - echo "[$(NAME) $(VERSION)]($(NAME)-$(VERSION).tar.bz2) ([sig]($(NAME)-$(VERSION).tar.bz2.sig))" | smu >> $@ + echo "[$(NAME) $(VERSION)]($(NAME)-$(VERSION).tar.bz2) ([sig]($(NAME)-$(VERSION).tar.bz2.sig)) ($(RELDATE))" | smu >> $@ echo '<hr />' >> $@ sh websummary.sh doap.ttl | smu >> $@ echo '</body></html>' >> $@ @@ -41,5 +41,5 @@ form of tyranny over the mind of man." Each tool is written in around 200 lines of portable C code, with no dependencies beyond libc. They should work well on Linux, BSDs, OSX -and Windows. There is also an optional graphical interface, written -in Tcl/Tk. +and Windows. There is also an optional graphical interface, using +Tcl/Tk. @@ -2,9 +2,6 @@ mkdir of bookid and save pages in there -have websummary.sh print the date of release, e.g. - getxbook 0.3 (sig) (2011-08-02) - before 1.0: create other 2 utilities, make sure memory usage is sensible, be unicode safe, package for osx & windows # other utils @@ -1,5 +1,6 @@ # See COPYING file for copyright and license details. VERSION = 0.3 +RELDATE = 2011-08-07 # paths PREFIX = /usr/local diff --git a/getxbookgui b/getxbookgui index 08d3f04..e476ca0 100755 --- a/getxbookgui +++ b/getxbookgui @@ -2,7 +2,7 @@ # See COPYING file for copyright and license details. package require Tk -set bin [list getgbook getabook] +set bin [list getgbook] proc go {} { set cmd "[.bin get [.bin curselection]] [.id get]" |