Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-04-17 | Test --attr failures | Steven Schubiger | 1 | -1/+4 | |
2017-04-16 | Don't xstrdup() optarg | Steven Schubiger | 1 | -6/+2 | |
2017-04-16 | Tweak comment | Steven Schubiger | 1 | -1/+1 | |
2017-04-16 | First draft of attr option | Steven Schubiger | 1 | -27/+84 | |
2017-04-11 | Add plain documentation | Steven Schubiger | 10 | -19/+121 | |
2017-04-02 | colorize 0.60v0.60 | Steven Schubiger | 3 | -5/+5 | |
2017-04-02 | Define _DEFAULT_SOURCE | Steven Schubiger | 1 | -0/+1 | |
Silence # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | |||||
2017-04-02 | Debian packaging: Add Conflicts against forensics-colorize | Axel Beckert | 1 | -0/+1 | |
It also contains /usr/bin/colorize. | |||||
2017-03-19 | Const data | Steven Schubiger | 1 | -1/+1 | |
2017-03-11 | Document Makefile install target | Steven Schubiger | 1 | -3/+5 | |
2017-03-04 | Include all flags in version output | Steven Schubiger | 2 | -2/+16 | |
2017-01-27 | Eliminate goto | Steven Schubiger | 1 | -11/+11 | |
2017-01-14 | Add homepage field | Steven Schubiger | 1 | -0/+1 | |
P: colorize source: no-homepage-field | |||||
2017-01-12 | Enable all hardening flags | Steven Schubiger | 1 | -3/+3 | |
I: colorize: hardening-no-bindnow usr/bin/colorize I: colorize: hardening-no-pie usr/bin/colorize | |||||
2017-01-10 | Add watch file | Steven Schubiger | 1 | -0/+2 | |
2017-01-07 | Fix spelling of preceeded | Steven Schubiger | 2 | -4/+4 | |
I: colorize: spelling-error-in-binary usr/bin/colorize preceeded preceded | |||||
2017-01-06 | Amend files to satisfy lintian | Steven Schubiger | 3 | -6/+8 | |
Thanks Axel Beckert | |||||
2016-12-31 | Include debian/ directory | Steven Schubiger | 8 | -0/+79 | |
2016-12-24 | Add Makefile install target | Steven Schubiger | 1 | -1/+5 | |
2016-11-27 | Round version to 2 digits after decimal point | Steven Schubiger | 1 | -2/+2 | |
2016-10-25 | Stack and release color names memory | Steven Schubiger | 1 | -7/+7 | |
Don't call the color_names memory freeing code explicitly in the cleanup function as it is taken care of via {STACK,RELEASE}_VAR(). This implies the memory is "garbage collected" like other uses of those macros, too. Also, declare and initialize the color_names array in a non-global, tighter scope. | |||||
2016-10-04 | Mention running tests through valgrind in README | Steven Schubiger | 1 | -0/+7 | |
2016-10-01 | Run tests through valgrind | Steven Schubiger | 3 | -22/+41 | |
2016-09-21 | Add screenshots | Steven Schubiger | 9 | -0/+20 | |
2016-08-19 | Print list of options dynamically in help output | Steven Schubiger | 1 | -23/+44 | |
2016-07-27 | colorize 0.59v0.59 | Steven Schubiger | 2 | -2/+2 | |
2016-07-24 | Modify .gitignore to match in project root | Steven Schubiger | 1 | -4/+4 | |
2016-07-24 | Add HACKING | Steven Schubiger | 1 | -0/+9 | |
2016-07-19 | Move common data to a perl module | Steven Schubiger | 4 | -37/+53 | |
2016-06-20 | Extract fail tests to test file | Steven Schubiger | 2 | -50/+83 | |
2016-05-27 | Reorder initialization of skip message | Steven Schubiger | 1 | -2/+2 | |
2016-05-27 | Set skip message once for merge tests | Steven Schubiger | 1 | -4/+6 | |
2016-05-20 | Const pointer | Steven Schubiger | 1 | -1/+1 | |
2016-04-07 | Use more descriptive enumerator name | Steven Schubiger | 1 | -5/+5 | |
2016-03-23 | Declare release target as phony | Steven Schubiger | 1 | -1/+1 | |
2016-03-23 | Add Makefile release target | Steven Schubiger | 1 | -0/+3 | |
2016-03-21 | Terminate buffer with single NUL | Steven Schubiger | 1 | -1/+1 | |
2016-03-16 | Set compiler once for tests | Steven Schubiger | 2 | -6/+8 | |
2016-03-09 | Add Usage example | Steven Schubiger | 1 | -0/+12 | |
2016-01-21 | colorize 0.58v0.58 | Steven Schubiger | 2 | -3/+3 | |
2016-01-21 | Add AUTHORS | Steven Schubiger | 1 | -0/+7 | |
2016-01-21 | Remove a.out on make clean | Steven Schubiger | 1 | -1/+1 | |
2016-01-20 | List color separator in version output | Steven Schubiger | 1 | -0/+1 | |
2016-01-19 | Make color separator configurable | Steven Schubiger | 1 | -1/+7 | |
2016-01-15 | Optimize merging for partial lines further | Steven Schubiger | 1 | -12/+18 | |
Completing partial lines (i.e., to ones without truncated escape sequences) can be handled more efficiently by concatenating only the partial line beginning at the last escape control character with the characters read from the input stream. Compared to previous code which concatenated the *entire* partial line with the characters read, pass now the resulting string of aforementioned concatenation separately to the escape sequence cleaning function. Even though it may appear as a minor optimisation, it is a /substantial/ improvement in terms of memory being allocated when cleaning lines. | |||||
2016-01-01 | Add README section header | Steven Schubiger | 1 | -0/+2 | |
2015-11-28 | Bring data type into line | Steven Schubiger | 1 | -4/+3 | |
2015-11-07 | Circumvent cleanup function for testing output | Steven Schubiger | 1 | -2/+2 | |
2015-10-27 | Move path skipping code to a function | Steven Schubiger | 1 | -47/+52 | |
2015-10-27 | Move color names code to a function | Steven Schubiger | 1 | -55/+64 | |