From abbb6024ca9d887a5b4f99d5668ad9dfe00a8aea Mon Sep 17 00:00:00 2001 From: Larry Kollar Date: Fri, 3 Jun 2016 22:46:36 -0400 Subject: [PATCH] Version 1.10. See CHANGELOG in the wiki for additions. --- README.md | 13 ++----------- src/Makefile~ | 38 -------------------------------------- 2 files changed, 2 insertions(+), 49 deletions(-) delete mode 100644 src/Makefile~ diff --git a/README.md b/README.md index 4677458..d59e96a 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,9 @@ # tines Tines is a console-based outliner/planner/notebook. It is a fork of the hnb outliner, -which has not been updated in >10 years. +which has not been updated in over 10 years. -The current version, 1.9.20, is based on hnb version 1.9.18pre7 -and introduces support for 64-bit computers. -Further updates (so far) include: - -* new `--subtree` option to `expand` and `collapse` commands, -merged in from _lhnb_ with other bugfixes and updates. -* new `type="text"` attribute, with supporting command (`toggle_text`) -and string variables. -* Tines now loads `.tinesrc` and `.tines` as default files. -If you have used _hnb_, merge your old data with these new files. +The current version is 1.10. See the [Changelog](https://github.com/larrykollar/tines/wiki/Changelog.md) for a list of new features. See the ROADMAP file for further planned updates along the way to version 2.0 and beyond. diff --git a/src/Makefile~ b/src/Makefile~ deleted file mode 100644 index 1811667..0000000 --- a/src/Makefile~ +++ /dev/null @@ -1,38 +0,0 @@ -LIBS=-lncurses libcli/libcli.a -CFLAGS=-I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g - -CFILES=$(wildcard *.c) -OBJS=$(patsubst %.c,%.o,$(CFILES)) - -%.o: %.c *.h - $(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@ $< - -hnb: libcli/libcli.a Makefile $(OBJS) init_subsystems.c *.h *.inc - $(CC) -o hnb $(OBJS) $(LIBS) $(CFLAGS) -# strip hnb -libcli/libcli.a: libcli/*.c - (cd libcli;make libcli.a) -libcli/libcli_p.a: libcli/*.c - (cd libcli;make libcli_p.a) -init_subsystems.c: *.c - echo "/* this file is autogenerated, do not edit */">init_subsystems.c - cat *.c | grep "^\!init_" | sort | sed -e "s/^\!/void /g">>init_subsystems.c - echo "">>init_subsystems.c - echo "void init_subsystems(){">>init_subsystems.c - cat *.c | grep "^\!init_" | sort | sed -e "s/^\!/ /g">>init_subsystems.c - echo "}">>init_subsystems.c -clean: - rm -f xml_debug hnb $(OBJS) *~ cli_*.inc - (cd libcli;make clean) -hnb_p: *.c libcli/libcli_p.a init_subsystems.c - $(CC) -o hnb_p *.c -pg -lncurses_p libcli/libcli_p.a -I.. -Ilibcli -DHAVE_CONFIG_H - -ps: xml_states.ps -xml_states.ps: xml.dot - dot -Tps xml.dot > xml_states.ps -hnb1: - cc -o hnb -lcurses -I.. -DHAVE_CONFIG_H -Ilibcli libcli/cli.c libcli/cli_history.c *.c -Wall -hnb2: - cc -o hnb -lncurses -I.. -DHAVE_CONFIG_H -Ilibcli libcli/cli.c libcli/cli_history.c *.c -Wall -hnb3: - /path/to/cross-compiler/cc -o hnb /usr/local/cross-tools/i386-mingw32msvc/lib/pdcurses.a libcli/libcli.a -I.. -DHAVE_CONFIG_H -Ilibcli libcli/cli.c libcli/cli_history.c *.c -Wall