Browse Source

Set version to 0.2 and update COPYING, NEWS, README, TODO...

pull/1/head
Sam Hocevar sam 15 years ago
parent
commit
ec7c63a624
7 changed files with 123 additions and 7 deletions
  1. +2
    -2
      COPYING
  2. +100
    -0
      ChangeLog
  3. +2
    -0
      Makefile.am
  4. +16
    -0
      NEWS
  5. +1
    -0
      README
  6. +0
    -3
      TODO
  7. +2
    -2
      configure.ac

+ 2
- 2
COPYING View File

@@ -1,8 +1,8 @@
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004 Version 2, December 2004


Copyright (C) 2004 Sam Hocevar
22 rue de Plaisance, 75014 Paris, France
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long copies of this license document, and changing it is allowed as long
as the name is changed. as the name is changed.


+ 100
- 0
ChangeLog View File

@@ -1,3 +1,103 @@
Commit: 4353
Author: sam
Date: Tue Feb 9 00:50:15 2010 +0000

Improve testsuite.

test/Makefile.am | 4 ++--
test/check-build | 38 --------------------------------------
test/check-fonts | 39 ++++++++++++++++++---------------------
test/check-source | 37 +++++++++++++++++++++++++++++++++++++
4 files changed, 57 insertions(+), 61 deletions(-)

Commit: 4350
Author: sam
Date: Tue Feb 9 00:24:47 2010 +0000

Get rid of $Id$ keywords.

NEWS | 1 -
README | 1 -
TODO | 1 -
bootstrap | 1 -
configure.ac | 10 ++--------
doc/Makefile.am | 1 -
src/export.c | 2 --
src/export.h | 2 --
src/figlet.c | 2 --
src/filter.c | 2 --
src/filter.h | 2 --
src/main.c | 2 --
src/render.c | 2 --
src/render.h | 2 --
src/term.c | 2 --
src/toilet.h | 2 --
test/Makefile.am | 1 -
tools/Makefile.am | 1 -
18 files changed, 2 insertions(+), 35 deletions(-)

Commit: 4349
Author: sam
Date: Tue Feb 9 00:09:34 2010 +0000

Get rid of deprecated libcaca calls now that beta17 is out.

src/render.c | 6 +++---
tools/caca2tlf.c | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)

Commit: 4348
Author: sam
Date: Tue Feb 9 00:09:29 2010 +0000

Put package version in manual page.

doc/toilet.1.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

Commit: 4347
Author: sam
Date: Mon Feb 8 23:56:33 2010 +0000

Add mygetopt.c to the project. Fixes #42.

configure.ac | 9 +++-
src/Makefile.am | 14 +++++--
src/main.c | 78 ++++++++++++------------------------
src/mygetopt.c | 120 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
src/mygetopt.h | 29 +++++++++++++
5 files changed, 192 insertions(+), 58 deletions(-)

Commit: 4345
Author: sam
Date: Mon Feb 8 23:34:05 2010 +0000

Search for missing fonts in the current directory (Fixes #40) and display
an error message in case of failure.

doc/toilet.1.in | 1 +
src/figlet.c | 9 ++++++++-
2 files changed, 9 insertions(+), 1 deletions(-)

Commit: 4344
Author: sam
Date: Mon Feb 8 23:21:46 2010 +0000

Build-depend on libcaca 0.99.beta17, to get colour font support.

configure.ac | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

Commit: 4343
Author: sam
Date: Mon Feb 8 23:21:40 2010 +0000

Better ChangeLog generation.

ChangeLog | 1606 +++++++++++++++++++++++++++++++++++++++++++++++------------
Makefile.am | 5 +
2 files changed, 1303 insertions(+), 308 deletions(-)

Commit: 4306 Commit: 4306
Author: sam Author: sam
Date: Wed Jan 27 00:48:05 2010 +0000 Date: Wed Jan 27 00:48:05 2010 +0000


+ 2
- 0
Makefile.am View File

@@ -35,4 +35,6 @@ update-changelog: FORCE
&& test -d .git \ && test -d .git \
&& git log --stat | awk 'function flush() { if (m != "") { print "Commit: " v "\nAuthor: " a m } m=""; v="UNSUBMITTED" } { if ($$1 == "commit") flush(); else if ($$1 == "Author:") { a = $$2 } else if ($$1 == "git-svn-id:") { split($$2,tmp,"@"); v=tmp[2] } else if ($$_ != " ") { m=m "\n" $$_ } } END { flush() }' > ChangeLog && git log --stat | awk 'function flush() { if (m != "") { print "Commit: " v "\nAuthor: " a m } m=""; v="UNSUBMITTED" } { if ($$1 == "commit") flush(); else if ($$1 == "Author:") { a = $$2 } else if ($$1 == "git-svn-id:") { split($$2,tmp,"@"); v=tmp[2] } else if ($$_ != " ") { m=m "\n" $$_ } } END { flush() }' > ChangeLog


echo-dirs: ; echo src tools

FORCE: FORCE:

+ 16
- 0
NEWS View File

@@ -1,5 +1,21 @@


New in 0.2:
- support for 90-degree rotations
- new border filter
- look for fonts in the current directory
- new fonts:
+ wideterm, a wide character terminal font
+ letter, a font using only ASCII for ASCII glyphs
+ ascii9, ascii12, smascii9, smascii12, bigascii9, bigascii12,
modifications of the standard fonts to use only ASCII subcharacters
+ biggray9, biggray12, fonts using only coloured whitespace
+ pagga, a CP437 font
- improved fonts:
+ circle
+ smblock

New in 0.1: New in 0.1:
- initial release - initial release
- opens all known FIGlet fonts - opens all known FIGlet fonts
- handles horizontal smushing - handles horizontal smushing


+ 1
- 0
README View File

@@ -3,3 +3,4 @@ This is experimental software. Do not rely on it for strong and
secure ASCII art generation, it will only output ugly things. secure ASCII art generation, it will only output ugly things.


See NEWS for the work in progress. See NEWS for the work in progress.


+ 0
- 3
TODO View File

@@ -8,6 +8,3 @@ FIGlet features that we are still missing:
- -m layoutmode - -m layoutmode
- RL support - RL support


Other missing features:
- colour fonts


+ 2
- 2
configure.ac View File

@@ -1,12 +1,12 @@


AC_INIT(toilet, 0.1)
AC_INIT(toilet, 0.2)


AC_PREREQ(2.50) AC_PREREQ(2.50)
AC_CONFIG_SRCDIR(src/main.c) AC_CONFIG_SRCDIR(src/main.c)
AC_CONFIG_AUX_DIR(.auto) AC_CONFIG_AUX_DIR(.auto)
AC_CANONICAL_SYSTEM AC_CANONICAL_SYSTEM


AM_INIT_AUTOMAKE(toilet, 0.1)
AM_INIT_AUTOMAKE(toilet, 0.2)
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)


AM_PROG_CC_C_O AM_PROG_CC_C_O


Loading…
Cancel
Save