diff -Nru aha-0.4.10.1/aha.1 aha-0.4.10.3/aha.1 --- aha-0.4.10.1/aha.1 2016-10-22 19:36:36.000000000 +0000 +++ aha-0.4.10.3/aha.1 2016-11-19 22:09:46.000000000 +0000 @@ -1,4 +1,4 @@ -.TH aha 1 "October 22, 2016" "" "Ansi HTML Adapter" +.TH aha 1 "November 19, 2016" "" "Ansi HTML Adapter" .SH NAME diff -Nru aha-0.4.10.1/aha.c aha-0.4.10.3/aha.c --- aha-0.4.10.1/aha.c 2016-10-22 19:36:36.000000000 +0000 +++ aha-0.4.10.3/aha.c 2016-11-19 22:09:46.000000000 +0000 @@ -17,23 +17,15 @@ For feedback and questions about my Files and Projects please mail me, Alexander Matthes (Ziz) , ziz_at_mailbox.org */ -#define AHA_VERSION "0.4.10.1" +#define AHA_VERSION "0.4.10.3" #define AHA_YEAR "2016" #include #include #include -int future=0; -int future_char=0; - int getNextChar(register FILE* fp) { int c; - if (future) - { - future=0; - return future_char; - } if ((c = fgetc(fp)) != EOF) return c; fprintf(stderr,"Unknown Error in File Parsing!\n"); diff -Nru aha-0.4.10.1/CHANGELOG aha-0.4.10.3/CHANGELOG --- aha-0.4.10.1/CHANGELOG 2016-10-22 19:36:36.000000000 +0000 +++ aha-0.4.10.3/CHANGELOG 2016-11-19 22:09:46.000000000 +0000 @@ -1,4 +1,10 @@ -Version 0.4.10.1 (recent): +Version 0.4.10.3 (recent): +- Removed two unused variables (thanks to Anthony "Pi" Martinez) + +Version 0.4.10.2: +- Improved README and added screenshot + +Version 0.4.10.1: - Fixed bug with "tput sgr0" (thanks to Hervé Renault) Version 0.4.10: diff -Nru aha-0.4.10.1/debian/changelog aha-0.4.10.3/debian/changelog --- aha-0.4.10.1/debian/changelog 2016-10-23 13:46:21.000000000 +0000 +++ aha-0.4.10.3/debian/changelog 2016-11-22 00:39:27.000000000 +0000 @@ -1,3 +1,10 @@ +aha (0.4.10.3-1) unstable; urgency=medium + + * New upstream bugfix release. + * Add debian/upstream/metadata. + + -- Axel Beckert Tue, 22 Nov 2016 01:39:27 +0100 + aha (0.4.10.1-1) unstable; urgency=medium * New upstream bugfix release. diff -Nru aha-0.4.10.1/debian/upstream/metadata aha-0.4.10.3/debian/upstream/metadata --- aha-0.4.10.1/debian/upstream/metadata 1970-01-01 00:00:00.000000000 +0000 +++ aha-0.4.10.3/debian/upstream/metadata 2016-11-22 00:32:19.000000000 +0000 @@ -0,0 +1,6 @@ +Bug-Database: https://github.com/theZiz/aha/issues +Contact: Alexander Matthes +Name: Ansi HTML Adapter +Repository: https://github.com/theZiz/aha.git +Repository-Browse: https://github.com/theZiz/aha +Changelog: https://github.com/theZiz/aha/blob/master/CHANGELOG diff -Nru aha-0.4.10.1/README aha-0.4.10.3/README --- aha-0.4.10.1/README 2016-10-22 19:36:36.000000000 +0000 +++ aha-0.4.10.3/README 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -aha -=== - -Ansi HTML Adapter - -To compile just type -:make -To "install" aha type (as root, or with sudo) -:make install -All files are subjects to the LGPL2+ or the MPL1.1 (Dual licensed). diff -Nru aha-0.4.10.1/README.md aha-0.4.10.3/README.md --- aha-0.4.10.1/README.md 1970-01-01 00:00:00.000000000 +0000 +++ aha-0.4.10.3/README.md 2016-11-19 22:09:46.000000000 +0000 @@ -0,0 +1,34 @@ +aha - Ansi HTML Adapter +======================= + +Converts ANSI escape sequences of a unix terminal to HTML code. + +![aha screenshot](/screenshot.png?raw=true "aha screenshot") + +Examples +======== + +* `aha --help | aha --black --title "the awesome aha help"> aha-help.htm` + * Creates an HTML file of the help of aha with black background +* `colordiff oldfile.c newfile.c | aha > colordiff.htm` + * Creates an HTML file with a colorful diff-output of two files "oldfile.c" and "newfile.c" with white background +* `ls --color=always | aha --pink > ls.htm` + * Creates an HTML file with a colorful ls-output with pink background. +* `echo q | htop | aha --black --line-fix > htop.htm` + * Creates an HTML file with the output of htop. You have to use --line-fix due the other new-line-commands htop uses. +* `MAN_KEEP_FORMATTING=1 COLUMNS=80 man aha | ul | aha > man-aha.htm` + * Creates an HTML file with the man page of aha. Man uses nroff's bold and underline, which ul converts to SGR. + +Compilation / Installation +========================== + +Aha has no dependencies except for a C compiler and `make`. + +To compile just type `make`. +To install aha type `make install`. +You can change the installation directory with `make install PREFIX=/your/path`. + +Licensing +========= + +All files are subjects to the LGPL2+ or the MPL1.1 (Dual licensed). Binary files /tmp/tmp65XUuW/7Rw4XGR2iA/aha-0.4.10.1/screenshot.png and /tmp/tmp65XUuW/tgzYiR3_2T/aha-0.4.10.3/screenshot.png differ