kc3-lang/brotli/tools

Branch :


Log

Author Commit Date CI Message
165022d2 2015-10-02 13:12:20 Add window size parameter to bro tool. Fix bug in --force behaviour.
b5c92e54 2015-10-02 11:32:42 Add tools/version.h that conatins the brotli version. This can be reused by all of the tools. Set the version to the next git release tag.
d4cc4f8f 2015-10-01 13:08:43 Define the encoder dictionary in the .cc file and link only once.
76bf3745 2015-09-23 21:39:47 Add missing time.h header. This commit fixes compilation on some build systems.
a67f0056 2015-09-01 13:44:17 Add "repeat" and "verbose" flags to "bro" tool.
8d83839a 2015-05-11 14:14:05 Expose the quality parameter to the bro.cc tool.
3dbe2e03 2015-04-23 15:26:08 Encoder implementation using input/output classes. Add a BrotliCompress() method to the public encoder API that uses the BrotliIn and BrotliOut classes and use that in the 'bro' command-line tool. Use the streaming api in BrotliCompressBuffer() and BrotliCompressor::WriteMetaBlock(). Use the appropiate hashers for quality <= 9.
0c81a136 2015-04-23 12:05:39 Merge pull request #35 from mitya57/master Makefile fixes and cleanups
707b78ae 2015-04-07 16:58:07 Add the current version of the brotli specification. Add the .nroff source file and a python script to generate the .txt version (requires the nroff command).
5da7e37a 2015-03-13 18:00:28 Makefile fixes and cleanups - Distinguish between CC/CFLAGS, CPP/CPPFLAGS and CXX/CXXFLAGS. Do not store compiler flags in CPPFLAGS, which is for preprocessor, and do not try to link files using a preprocessor. - Use COMMON_FLAGS for flags that are for both C and C++. - Drop -m64 flag which is wrong on 32-bit systems. - Use $(MAKE) instead of make, so that parallel building works.
66f6b66c 2014-11-24 16:20:22 Remove unneeded malloc.h header.
ac455c50 2014-11-17 15:31:00 Improvements to the command-line tool. - Don't read the whole input to memory. - Support reading from stdin and writing to stdout.
e1739826 2014-10-30 13:59:37 Add command-line tool and tests.