summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #122 from keszybz/masterYann Collet2015-06-263-2/+176
|\ | | | | New example using frame api as DLL - redirect from #118
| * Use lz4 binary to check outputZbigniew Jędrzejewski-Szmek2015-06-182-0/+3
| |
| * Add example which uses the frame api through the libraryZbigniew Jędrzejewski-Szmek2015-06-183-2/+173
| |
* | Merge pull request #121 from keszybz/add-gitignoreYann Collet2015-06-262-0/+10
|\ \ | | | | | | Add gitignore - redirect from #117
| * | Make git ignore generated filesZbigniew Jędrzejewski-Szmek2015-06-162-0/+10
| |/
| * Merge pull request #111 from Cyan4973/devr130lz4-r130Yann Collet2015-05-2613-42/+285
| |\ | | | | | | Dev
* | \ Merge branch 'dev' of github.com:Cyan4973/lz4 into devYann Collet2015-05-295-5/+190
|\ \ \
| * \ \ Merge pull request #114 from lpsantil/djgppYann Collet2015-05-285-5/+190
| |\ \ \ | | |_|/ | |/| | Djgpp
| | * | READM fixupLouis P. Santillan2015-05-271-1/+1
| | | |
| | * | djgpp port now using the proposed contrib structureLouis P. Santillan2015-05-274-19/+175
| | | |
| | * | Reverted all `Makefile` changesLouis P. Santillan2015-05-273-18/+8
| | | |
| | * | Renamed the djgpp README so that it gets converted to HTML by github. Fixed ↵Louis P. Santillan2015-05-262-9/+9
| | | | | | | | | | | | | | | | breakage of `make install`.
| | * | Makefile cleanups to make building with Andrew Wu's build-djgpp cross ↵Louis P. Santillan2015-05-261-2/+6
| | | | | | | | | | | | | | | | compilers (and everyone else) simpler.
| | * | Fixup lib/Makefile so that is builds a library for djgpp using Andrew Wu's ↵Louis P. Santillan2015-05-261-2/+8
| | | | | | | | | | | | | | | | build-djgpp cross compilers
| | * | Fixup programs/{Makefile,lz4cli.c,lz4io.c} to build with Andrew Wu's ↵Louis P. Santillan2015-05-264-6/+35
| | |/ | | | | | | | | | build-djgpp cross compilers. Add some documentation in README.DJ
* | | Updated badgesYann Collet2015-05-291-6/+12
|/ /
* | Updated NEWSYann Collet2015-05-251-0/+2
| |
* | Fixed : default sparse mode disabled on stdout, to support ` >>` ↵Yann Collet2015-05-253-10/+20
| | | | | | | | redirection scenario reported by Takayuki Matsuoka (#110)
* | Performance fix : big compression speed boost for clang (+30%)Yann Collet2015-05-213-2/+3
| |
* | Merge branch 'dev' of github.com:Cyan4973/lz4 into devYann Collet2015-05-201-3/+16
|\ \
| * \ Merge pull request #107 from t-mat/issue/103pr2Yann Collet2015-05-201-3/+16
| |\ \ | | | | | | | | Add supporting iterative edit and testing to versionstest
| | * | Combine unique .lz4 file infoTakayuki MATSUOKA2015-05-201-7/+1
| | | |
| | * | Support iterative edit and testingTakayuki MATSUOKA2015-05-201-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit will allows iterative edit and testing to local working copy. You could iterate edit and testing by the following commands: cd /path/to/lz4 cd test make versionstest my-favorite-text-editor ../lib/lz4.c make versionstest my-favorite-text-editor ./test-lz4-versions.py make versionstest ...
| | * | Add log output of succeeded decompression to test scriptTakayuki MATSUOKA2015-05-201-0/+5
| | | |
| | * | Add log of same files and sha1 hash of unique files to versionstestTakayuki MATSUOKA2015-05-201-0/+11
| |/ /
* | | Added LZF Yann Collet2015-05-201-0/+1
|/ /
* | Fixed : LZ4IO exits too early when frame crc not present, reported by ↵Yann Collet2015-05-203-3/+13
| | | | | | | | Yongwoon Cho (#106)
* | minor tests improvementsYann Collet2015-05-191-2/+7
| |
* | minor test refactorYann Collet2015-05-182-8/+11
| |
* | Fixed sparse issue with non seekable streams (#105)Yann Collet2015-05-183-8/+17
| |
* | removed "flush" argument to please Travis's python versionYann Collet2015-05-171-3/+3
| |
* | cosmetic changes, 2nd tryYann Collet2015-05-153-7/+20
| |
* | minor cosmetic changes for Takayuki's testVersionsYann Collet2015-05-151-1/+1
| |
* | Merge branch 'dev' of github.com:Cyan4973/lz4 into devYann Collet2015-05-1511-22/+198
|\ \ | |/ |/|
| * Merge pull request #104 from t-mat/issue/103pr2Yann Collet2015-05-154-0/+167
| |\ | | | | | | Add compatibility test between releases (resolves issue #103 )
| | * Issue #103 : Add compatibility test between releasesTakayuki MATSUOKA2015-05-154-0/+167
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add forward/backward compatibility test between all versions - Add new Makefile target "versionstest". - Standard test procedure like "make versionstest && make clean" works properly. test/test-lz4-versions.py - This script creates test/lz4test and checkout all Release tagged versions. After that, compile all versions of lz4c and lz4c32 and compress/decompress between all versions. - This test clones entire git repository to checkout all tags. - Since Travis's default command does not clone entire repository, we could not checkout all tags from Travis' default clone. - After that, test script shows all unique .lz4 files. In this list, 'r999' means 'head' of current working copy.
| * Added a few more interoperability tests (32bits vs 64 bits)Yann Collet2015-05-133-7/+16
| |
| * Updated a few commentsYann Collet2015-05-123-5/+4
| |
| * Fixed minor typoYann Collet2015-05-071-1/+1
| |
| * minor introduction updateYann Collet2015-05-071-9/+10
| |
* | Merge pull request #102 from Cyan4973/devrc129v0r129Yann Collet2015-05-0749-1674/+3393
|\ \ | |/ | | Dev
| * minor parsing updateYann Collet2015-05-061-10/+12
| |
| * Updated commentsYann Collet2015-05-061-4/+4
| |
| * Fixed typoYann Collet2015-05-061-1/+1
| |
| * Added : LZ4_compress_destSize()Yann Collet2015-05-064-6/+269
| |
| * Added compilation flag -Wcast-qualYann Collet2015-05-0611-95/+92
| |
| * Updated readmeYann Collet2015-05-042-19/+37
| |
| * Updated lz4hc APIYann Collet2015-05-038-100/+97
| |
| * Fixed minor Visual warningYann Collet2015-05-031-1/+1
| |
| * Updated streaming examplesYann Collet2015-05-032-4/+4
| |