1. 1d39550 Merge pull request #744 from terrelln/dev by Yann Collet · 7 years ago
  2. 56e3964 [man] Specify that strategies start at 1 by Nick Terrell · 7 years ago
  3. 811deae Merge pull request #736 from terrelln/cover-default-api by Yann Collet · 7 years ago
  4. 5b7fd7c [zdict] Make COVER the default algorithm by Nick Terrell · 7 years ago
  5. d88a441 [zstdcli] Document HAVE_LZMA and zstd-noxz by Nick Terrell · 7 years ago
  6. 6aeb50e [zstdcli] Add unlzma and unxz symlinks by Nick Terrell · 7 years ago
  7. 849ecf3 [zstdcli] Support xz by default when liblzma is available by Nick Terrell · 7 years ago
  8. ef269c1 Merge pull request #725 from facebook/advancedAPI2 by Yann Collet · 7 years ago
  9. 991f9df switched fileio.c to ZSTD_DEBUG trigger macro by Yann Collet · 7 years ago
  10. 5be0f55 added newline to align output by Paul Cruz · 7 years ago
  11. 6f5fe71 added error check for when file could not be opened by Paul Cruz · 7 years ago
  12. 74a725d reversed calculation of ratio by Paul Cruz · 7 years ago
  13. 7bd1a29 added ZSTD_dictMode_e to control dictionary loading mode by Yann Collet · 7 years ago
  14. a73c2a4 added tests with null files, changed condition to check that the file is more than 0 bytes by Paul Cruz · 7 years ago
  15. b44ab82 ensure new ZSTD_strategy starts at value 1 by Yann Collet · 7 years ago
  16. 0765602 fixed error where extremely small files were not being detected as not compressed with zstd by Paul Cruz · 7 years ago
  17. 3701dde changed to use LONG_SEEK by Paul Cruz · 7 years ago
  18. 93a5510 added progress metric to display by Paul Cruz · 7 years ago
  19. bda5775 moved signifcant operations to fileio.c by Paul Cruz · 7 years ago
  20. c594507 removed double if statements for same condition by Paul Cruz · 7 years ago
  21. 72e0ac9 minor update to logic by Paul Cruz · 7 years ago
  22. cea55a9 size_t const value by Paul Cruz · 7 years ago
  23. bed0dc9 changed displayInfo alignment and const by Paul Cruz · 7 years ago
  24. cb2dbe6 changed fileInfo initialization, updated error code by Paul Cruz · 7 years ago
  25. c08e649 first implementation of bench.c with new API ZSTD_compress_generic() by Yann Collet · 7 years ago
  26. fe234bf fix attempts : fullbench for VS2008 by Yann Collet · 7 years ago
  27. 55b9b28 made style changes, added description in man file by Paul Cruz · 7 years ago
  28. 4a0e4c8 fixing more spacing on loops by Paul Cruz · 7 years ago
  29. b3e6244 added in correct error return from main in zstdcli.c by Paul Cruz · 7 years ago
  30. 0d7c4d7 initialized info manually to avoid error by Paul Cruz · 7 years ago
  31. d3b34e4 changed spacing on if statements by Paul Cruz · 7 years ago
  32. b316691 added const by Paul Cruz · 7 years ago
  33. 60a2e55 added case for when file is not compressed with zstd (incorrect magic number) by Paul Cruz · 7 years ago
  34. acaefb5 refactoring brackets to allow for const values by Paul Cruz · 7 years ago
  35. 0757eae rearranging code to allow for consts by Paul Cruz · 7 years ago
  36. e49afae changed implicit precision loss again by Paul Cruz · 7 years ago
  37. 54e0b6c got rid of imlpicit precision loss by Paul Cruz · 7 years ago
  38. b766211 made another function static by Paul Cruz · 7 years ago
  39. e7f02fc closed file at end of function, created another variable to keep exit points simpler by Paul Cruz · 7 years ago
  40. 8b3ff7c changed info to static allocation by Paul Cruz · 7 years ago
  41. 96cabf7 cleaned up if statements by Paul Cruz · 7 years ago
  42. 9437cc7 added --list command by Paul Cruz · 7 years ago
  43. 4495e9a allow analysis even if file does not have zst extension by Paul Cruz · 7 years ago
  44. a9b77c8 cleaning up code for analyzing frames by Paul Cruz · 7 years ago
  45. e208992 cleaning up code by Paul Cruz · 7 years ago
  46. fc428ab changing formatting again by Paul Cruz · 7 years ago
  47. 607ee9f print message when no files are given, rearrange code for readability by Paul Cruz · 7 years ago
  48. ebd6034 changed U64 to unsigned long to get rid of build test errors by Paul Cruz · 7 years ago
  49. 81fa33b cleaning up code by Paul Cruz · 7 years ago
  50. a56dcbf changed print format for non-verbose version by Paul Cruz · 7 years ago
  51. c828b52 yet more refactoring by Paul Cruz · 7 years ago
  52. 28dbf8e more refactoring for C90 by Paul Cruz · 7 years ago
  53. 618a7b6 refactoring for C90 syntax by Paul Cruz · 7 years ago
  54. 6e33c74 formatting issues resolved by Paul Cruz · 7 years ago
  55. 173a739 code refactorings with explicit conversion by Paul Cruz · 7 years ago
  56. f3d6ab2 formated information for verbose output by Paul Cruz · 7 years ago
  57. 6e02044 displayed decompressed size by Paul Cruz · 7 years ago
  58. dcd6ba6 incremented decompressedSize instead of setting value by Paul Cruz · 7 years ago
  59. 6996bd2 removed useless lines by Paul Cruz · 7 years ago
  60. 9cb602e added in logic for parsing through blocks/frames by Paul Cruz · 7 years ago
  61. 786b7ca added code to analyze the first frame header by Paul Cruz · 7 years ago
  62. a3d54cf added line spacing for clarity by Paul Cruz · 7 years ago
  63. bb0aaf9 minor man update on -B# option in benchmark mode by Yann Collet · 7 years ago
  64. 9e6a2ea added MT support to NEWAPI by Yann Collet · 7 years ago
  65. 0f06f4f added display for compressed size by Paul Cruz · 7 years ago
  66. 4128f67 added in check suffix check to ensure file was compressed with zstd by Paul Cruz · 7 years ago
  67. 901435e setup basic functions for adding --list functionality by Paul Cruz · 7 years ago
  68. 8bcbf42 fixed g++ prototype mismatch by cyan4973 · 7 years ago
  69. 6d4fef3 Added ZSTD_compress_generic() by Yann Collet · 8 years ago
  70. 23c256e removed useless variable from CCtx by Yann Collet · 8 years ago
  71. e12ae02 minor coding style update by Yann Collet · 8 years ago
  72. 2d4d31c removed gcc compilation flag -Wbad-function-cast by Yann Collet · 8 years ago
  73. 46ac9ad fixed vla warning on linux by Yann Collet · 8 years ago
  74. 83d0c76 added several compilation flags by Yann Collet · 8 years ago
  75. a99ece9 Update zstd.1.md to use btultra by Nick Terrell · 8 years ago
  76. 5f2c721 Merge remote-tracking branch 'upstream/dev' into btopt by Nick Terrell · 8 years ago
  77. 01a1abf cli : -d and -t do not stop after a failed decompression by Yann Collet · 8 years ago
  78. a00e959 removed -g from DEBUGFLAGS by Yann Collet · 8 years ago
  79. c08e568 updated dict graphs to 2D mode by Yann Collet · 8 years ago
  80. 710497d updated programs/README.md, to introduce compilation variables by Yann Collet · 8 years ago
  81. f47284f reorganized Makefile for multiple targets by Yann Collet · 8 years ago
  82. 3791d21 added xzstd4 target by Yann Collet · 8 years ago
  83. 2e63a87 fixed xzstd by Yann Collet · 8 years ago
  84. f376d47 [CLI] Switch dictionary builder on CLI to cover by Nick Terrell · 8 years ago
  85. 020b960 [cover] Make optimization faster by Nick Terrell · 8 years ago
  86. f2d9ef1 [cover] Optimize case where d <= 8 by Nick Terrell · 8 years ago
  87. feba969 Fix LZ4_MSG in xzstd by Nick Terrell · 8 years ago
  88. 31533ba Changed ZSTD_createCDict_advanced() by Yann Collet · 8 years ago
  89. eab41c1 Fix LZ4 wrapper deprecation warnings by Sean Purcell · 8 years ago
  90. 2c4b6fe Make lz4 compression/decompression compatible with library r123 by Sean Purcell · 8 years ago
  91. 4de8632 Add LZ4 compress/decompress support to CLI by Sean Purcell · 8 years ago
  92. 230d7ac cli : add support for --threads=# command by Yann Collet · 8 years ago
  93. 9606256 Fix no thread message by Sean Purcell · 8 years ago
  94. 1c28695 Merge pull request #663 from iburinoc/zstdmt-default by Yann Collet · 8 years ago
  95. c8b2df7 Compile CLI using files instead of objs by Sean Purcell · 8 years ago
  96. e6c504d Update -T0 comment in man page by Sean Purcell · 8 years ago
  97. 5935c99 Add zstdmt and -T0 to man page by Sean Purcell · 8 years ago
  98. f6ef4db Install zstdmt even without threading support by Sean Purcell · 8 years ago
  99. 5a61f36 Make zstd compile with mt by default by Sean Purcell · 8 years ago
  100. 7dd14d0 Enable multithreading on BSD by Baptiste Daroussin · 8 years ago