Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Copy owner, file permissions and modification time | Przemyslaw Skibinski | 2016-11-07 | 1 | -8/+7 |
| | |||||
* | util.h requires CharacterSet=MultiByte | Przemyslaw Skibinski | 2016-11-07 | 1 | -4/+4 |
| | |||||
* | fixed --test | Przemyslaw Skibinski | 2016-11-07 | 1 | -1/+1 |
| | |||||
* | Merge remote-tracking branch 'refs/remotes/lz4/dev' into dev | Przemyslaw Skibinski | 2016-11-06 | 9 | -43/+226 |
|\ | |||||
| * | Merge pull request #254 from terrelln/dev | Yann Collet | 2016-11-05 | 3 | -2/+146 |
| |\ | | | | | | | Fix LZ4_decompress_fast_continue() bug | ||||
| | * | Fix LZ4_decompress_fast_continue() bug | Nick Terrell | 2016-11-05 | 3 | -2/+146 |
| |/ | | | | | | | | | It specified the external dictionary location incorrectly. Add tests that expose this bug with both normal compilation and ASAN. | ||||
| * | Updated man page | Yann Collet | 2016-11-05 | 2 | -13/+32 |
| | | |||||
| * | restricted deprecation warning to fairly recent gcc versions (>=6.0) | Yann Collet | 2016-11-05 | 1 | -1/+1 |
| | | |||||
| * | lz4frame obsolete enum should trigger deprecation warnings (on supported ↵ | Yann Collet | 2016-11-04 | 1 | -14/+21 |
| | | | | | | | | compilers) | ||||
| * | removed support for old error code enums from lz4frame_static.h, to free up ↵ | Yann Collet | 2016-11-04 | 1 | -1/+1 |
| | | | | | | | | | | | | | | namespace. note : lz4frame_static.h does not guaranteed API stability. note 2 : the macro to enable old error code enums is still present. Just needs to comment one line to re-enable them. | ||||
| * | Merge pull request #252 from inikep/dev | Yann Collet | 2016-11-04 | 9 | -342/+966 |
| |\ | |/ |/| | Dev | ||||
* | | fixed Travis tests | Przemyslaw Skibinski | 2016-11-04 | 3 | -10/+18 |
| | | |||||
* | | updated #include in util.h | Przemyslaw Skibinski | 2016-11-04 | 1 | -0/+2 |
| | | |||||
* | | updated lz4cli.c | Przemyslaw Skibinski | 2016-11-04 | 3 | -12/+12 |
| | | |||||
* | | bench.c based on zstd | Przemyslaw Skibinski | 2016-11-04 | 3 | -329/+433 |
| | | |||||
* | | redefined VOID for Windows/MSYS | Przemyslaw Skibinski | 2016-11-04 | 3 | -8/+5 |
| | | |||||
* | | added -r option | Przemyslaw Skibinski | 2016-11-04 | 2 | -13/+526 |
| | | |||||
* | | Merge remote-tracking branch 'refs/remotes/lz4/dev' into dev | Przemyslaw Skibinski | 2016-11-04 | 11 | -265/+271 |
|\ \ | |||||
* \ \ | Merge remote-tracking branch 'refs/remotes/lz4/dev' into dev | Przemyslaw Skibinski | 2016-11-04 | 3 | -14/+21 |
|\ \ \ | |||||
| | | * | Merge pull request #253 from terrelln/exit-code | Yann Collet | 2016-11-04 | 4 | -5/+10 |
| | | |\ | | | | | | | | | | | Return error if input file does not exist. | ||||
| | | | * | Fix typo in lz4 manpage | Nick Terrell | 2016-11-04 | 1 | -1/+1 |
| | | | | | |||||
| | | | * | Quiet gcc-4.6.3 narrowing warning | Nick Terrell | 2016-11-04 | 1 | -2/+2 |
| | | | | | |||||
| | | | * | Return error if input file does not exist. | Nick Terrell | 2016-11-04 | 2 | -2/+7 |
| | | |/ | | | | | | | | | | | | | Make `lz4 file-does-not-exist` return non-zero. | ||||
| | | * | better correctness on big-endian 64-bits platforms | Yann Collet | 2016-11-04 | 2 | -2/+7 |
| | | | | |||||
| | | * | small compression speed improvement on 64-bits systems | Yann Collet | 2016-11-04 | 2 | -9/+12 |
| | |/ | |||||
| | * | Merge pull request #250 from terrelln/test-mode | Yann Collet | 2016-11-04 | 4 | -4/+19 |
| | |\ | | | | | | | | | Fix test mode and write to null | ||||
| | | * | Rename passThrough to testMode | Nick Terrell | 2016-11-04 | 3 | -10/+10 |
| | | | | |||||
| | | * | Fix tests for test mode | Nick Terrell | 2016-11-04 | 1 | -1/+4 |
| | | | | |||||
| | | * | Fix test mode and write to null | Nick Terrell | 2016-11-03 | 3 | -3/+15 |
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix test mode to not always return success. Don't ask for permission to overwrite `nulmark`. Before: > echo "hello world" > file > lz4 -t file successfully decoded 12 bytes > lz4 -tf file successfully decoded 12 bytes > lz4 file null Warning : /dev/null already exists Overwrite ? (Y/n) : n Error 12 : No. Operation aborted : /dev/null already exists > lz4 file /dev/null Warning : /dev/null already exists Overwrite ? (Y/n) : n Error 12 : No. Operation aborted : /dev/null already exists After: > lz4 -t file Error 44 : Unrecognized header : file cannot be decoded > lz4 -tf file Error 44 : Unrecognized header : file cannot be decoded > lz4 file null Compressed 12 bytes into 31 bytes ==> 258.33% > lz4 file /dev/null Compressed 12 bytes into 31 bytes ==> 258.33% | ||||
| | * | minor code refactoring | Yann Collet | 2016-11-04 | 2 | -48/+53 |
| | | | |||||
| | * | fix #198 : no longer requires to restart streaming decompression from where ↵ | Yann Collet | 2016-11-04 | 3 | -134/+110 |
| | | | | | | | | | | | | | | | | | | | | | it stopped. It permits relocating remaining data into another memory space. Still, the same content must be presented. | ||||
| | * | fixed strict warnings | Yann Collet | 2016-11-04 | 3 | -19/+19 |
| | | | |||||
| | * | updated comments | Yann Collet | 2016-11-04 | 5 | -66/+76 |
| |/ | |||||
| * | fixed travis badges | Yann Collet | 2016-11-03 | 1 | -3/+3 |
| | | |||||
| * | Merge pull request #249 from inikep/dev | Yann Collet | 2016-11-03 | 35 | -297/+776 |
| |\ | |/ |/| | Dev | ||||
* | | updated programs/README.md | Przemyslaw Skibinski | 2016-11-03 | 3 | -6/+66 |
| | | |||||
* | | versionsTests moved to tests/ | Przemyslaw Skibinski | 2016-11-03 | 5 | -45/+379 |
| | | |||||
* | | updated .travis.yml | Przemyslaw Skibinski | 2016-11-03 | 3 | -25/+21 |
| | | |||||
* | | updated Visual Studio projects | Przemyslaw Skibinski | 2016-11-03 | 4 | -4/+4 |
| | | |||||
* | | updated links to LZ4 repository | Przemyslaw Skibinski | 2016-11-03 | 19 | -19/+19 |
| | | |||||
* | | test programs moved to tests/ | Przemyslaw Skibinski | 2016-11-03 | 7 | -197/+286 |
| | | |||||
* | | documentation moved to doc/ | Przemyslaw Skibinski | 2016-11-03 | 5 | -4/+4 |
| | | |||||
* | | Merge remote-tracking branch 'refs/remotes/lz4/dev' into dev | Przemyslaw Skibinski | 2016-11-03 | 38 | -380/+760 |
|\ \ | |||||
| | * | fixed clang conversion warning | Yann Collet | 2016-11-03 | 1 | -1/+1 |
| | | | |||||
| | * | check fread() operation results (#243) | Yann Collet | 2016-11-03 | 2 | -10/+17 |
| |/ | |||||
| * | fix for ARM platform | Yann Collet | 2016-11-02 | 1 | -2/+2 |
| | | |||||
| * | Clarified license (#115, #244) | Yann Collet | 2016-11-02 | 6 | -8/+390 |
| | | |||||
| * | moved cmake and debian directories to contrib (#245) | Yann Collet | 2016-11-02 | 15 | -28/+34 |
| | | |||||
| * | fixed #247, reported by Felix Bolte | Yann Collet | 2016-11-01 | 1 | -205/+144 |
| | | |||||
| * | fixes static compilation under Windows (#246) | Yann Collet | 2016-10-21 | 3 | -6/+6 |
| | |