1. d4d2148 Don't use '_' as an identifier to avoid a compiler warning with Java 8 by Emmanuel Bourg · 10 years ago
  2. 7be83c0 COMPRESS-270 two more cases where readFully should be used by Stefan Bodewig · 10 years ago
  3. c1ae99e COMPRESS-270 reading PAX headers may fail on unbuffered InputStreams by Stefan Bodewig · 10 years ago
  4. f7f2dab Simplify by Sebastian Bazley · 10 years ago
  5. 59c1780 COMPRESS-257 turn error thrown by XZ into a more useful exception by Stefan Bodewig · 10 years ago
  6. 951240b Add serialVersionUID by Sebastian Bazley · 10 years ago
  7. eb2daf3 Explicit boxing by Sebastian Bazley · 10 years ago
  8. 4687b89 Fix Javadoc syntax warning from Eclipse by Sebastian Bazley · 10 years ago
  9. e936436 add delta filter to 7z by Stefan Bodewig · 10 years ago
  10. 1365093 COMPRESS-257 add the remaining BCJ implementations provided by XZ for Java by Stefan Bodewig · 10 years ago
  11. bd6e3f2 7z doesn't use the single byte id for 7z archives but only for XZ streams by Stefan Bodewig · 10 years ago
  12. 5a8030a COMPRESS-257 add support for x86 BCJ - XZ for Java also supports some of the other BJJs and Delta by Stefan Bodewig · 10 years ago
  13. 6894802 The declared exception IOException is not actually thrown by the constructor. by Gary D. Gregory · 10 years ago
  14. 18d900b Format. by Gary D. Gregory · 10 years ago
  15. 070d464 Add missing serial version ID (default). by Gary D. Gregory · 10 years ago
  16. 712a038 Add final modifier to private fields. by Gary D. Gregory · 10 years ago
  17. a5936af unused import by Stefan Bodewig · 10 years ago
  18. 891f056 COMPRESS-258 read back some of the method's options as well by Stefan Bodewig · 10 years ago
  19. 303a757 re-shuffle som code by Stefan Bodewig · 10 years ago
  20. b75dc0d move lookup method for SevenZMethod by byte sequence by Stefan Bodewig · 10 years ago
  21. d07d5eb COMPRESS-258 provide access to methods that have been used when creating the archive - method part, configuration properties to follow by Stefan Bodewig · 10 years ago
  22. ce13559 move static method to end of class by Stefan Bodewig · 10 years ago
  23. 1a502ae COMPRESS-261 allow the per-entry methods to be set to null explicitly by Stefan Bodewig · 10 years ago
  24. 845b370 COMPRESS-261 allow content compression to be overriden per entry by Stefan Bodewig · 10 years ago
  25. 1144ed7 COMPRESS-266 document changes by Stefan Bodewig · 10 years ago
  26. 1aaf567 wire multiple codecs by the specified binding pairs rather than relying on order by Stefan Bodewig · 10 years ago
  27. b5baeae when using more than one codec the codecs must be combined using 'binding pairs' and the 'compressed size' of each codec must be recorded by Stefan Bodewig · 10 years ago
  28. 3fa07b1 allow some numeric values to be configured easily by Stefan Bodewig · 10 years ago
  29. fef6bca keep options <=> properties translations in a single place, the Codec by Stefan Bodewig · 10 years ago
  30. eb76019 the codec should know the options, not the enum by Stefan Bodewig · 10 years ago
  31. 9c4bbcb a bit more typesafety by using a custom class rather than Map.Entry - more incremental changes to follow by Stefan Bodewig · 10 years ago
  32. 44e2059 COMPRESS-266 now you can set options for 7z methods, still need to write docs and tests by Stefan Bodewig · 10 years ago
  33. 2cf0595 add infrastructure for user specified options for 7z codecs - would finish COMPRESS-266 immediately if there was a Pair class in Java5. by Stefan Bodewig · 10 years ago
  34. 00fe306 allow a stack of methods when writing 7z files - preparation for COMPRESS-266 and needed by COMPRESS-257 as well by Stefan Bodewig · 10 years ago
  35. 8b7817b some things I've learned by wading through the format spec by Stefan Bodewig · 10 years ago
  36. 8167612 remove magic number by Stefan Bodewig · 10 years ago
  37. a99d1e3 COMPRESS-267 throw a specific exception in ArchiveStreamFactory if asked to read/write 7z - or any other future format we don't support streaming for by Stefan Bodewig · 10 years ago
  38. 3a1451b COMPRESS-267 add a matches method to SevenZFile by Stefan Bodewig · 10 years ago
  39. c608c33 COMPRESS-265 tariling backslashes are as bad for PAX headers as trailing slashes - on Windows by Stefan Bodewig · 10 years ago
  40. 26210c6 cosmetics by Stefan Bodewig · 10 years ago
  41. aed5611 COMPRESS-264 make sure the very first read operation actually fills the ByteBuffer by Stefan Bodewig · 10 years ago
  42. 8da3772 COMPRESS-262 be more lenient when parsing tar headers as some dialect use up all space for big numbers by Stefan Bodewig · 10 years ago
  43. c237668 magic strings by Stefan Bodewig · 10 years ago
  44. 7c068db COMPRESS-260 provide read access to GZIP metadata by Stefan Bodewig · 10 years ago
  45. 07b15a1 COMPRESS-259 also honor decompressConcatenated when the format has been specified explicitly by Stefan Bodewig · 11 years ago
  46. cbb5a1a COMPRESS-256 bad calculation of LZMA dictionary sizes by Stefan Bodewig · 11 years ago
  47. 71e4eea no longer try to read one byte ahead in BZip2CompressorInputStream - COMPRESS-253 by Stefan Bodewig · 11 years ago
  48. 33461de bring back javadocs for _internal but make the warning even stronger by Stefan Bodewig · 11 years ago
  49. 77e54b7 even if those arrays are small, ensure they are read completely - also make draining more efficient. by Stefan Bodewig · 11 years ago
  50. 6106e8d use skip for more efficient draining of archive entries by Stefan Bodewig · 11 years ago
  51. 885d205 extract "close and swallow exception" code to IOUtils by Stefan Bodewig · 11 years ago
  52. 661db5c Fixed the decompression of imploded zip entries using a Shannon-Fano tree of depth 16 by Emmanuel Bourg · 11 years ago
  53. 45e51c2 fix javadoc errors detected by Java8 EA b120 by Stefan Bodewig · 11 years ago
  54. 8caf1f7 upgrade findbugs, this allows us to remove equals from JarEntry but needs a few additional adjustments by Stefan Bodewig · 11 years ago
  55. 281e608 package.html for _internal_ package by Stefan Bodewig · 11 years ago
  56. d7275a2 Rename local variable to avoid hiding class field by Sebastian Bazley · 11 years ago
  57. 41dc6e8 Remove some unnecessary parentheses. by Gary D. Gregory · 11 years ago
  58. 3e45dc8 Rename private field to avoid multiple name clashes with fields and parameters by Sebastian Bazley · 11 years ago
  59. eee4f61 Revert some paren changes. by Gary D. Gregory · 11 years ago
  60. 7f84f26 make clear AbstractLZWInputStream is only public for technical reasons by Stefan Bodewig · 11 years ago
  61. 651c295 Explicit boxing by Sebastian Bazley · 11 years ago
  62. e94bf1a Javadoc. by Gary D. Gregory · 11 years ago
  63. 5436797 Rename local variable to avoid hiding field by Sebastian Bazley · 11 years ago
  64. 6311a90 Javadoc. by Gary D. Gregory · 11 years ago
  65. f11922f Javadoc. by Gary D. Gregory · 11 years ago
  66. 14a57a1 Add missing '@Deprecated' annotations. by Gary D. Gregory · 11 years ago
  67. b3b9ab6 explain why JarArchiveEntry overrides equals/hashCode by Stefan Bodewig · 11 years ago
  68. b739157 Rename local variable to avoid hiding class field by Sebastian Bazley · 11 years ago
  69. ca25d44 The declared exception IOException is not actually thrown by the method partialClear(). by Gary D. Gregory · 11 years ago
  70. 6e64f0b Javadoc. by Gary D. Gregory · 11 years ago
  71. e40f6e0 Remove some unnecessary parentheses. by Gary D. Gregory · 11 years ago
  72. 80d4929 Remove some unnecessary parentheses. by Gary D. Gregory · 11 years ago
  73. 83afa3d Remove some unnecessary parentheses. by Gary D. Gregory · 11 years ago
  74. 492af6f Remove some unnecessary parentheses. by Gary D. Gregory · 11 years ago
  75. 88d7809 Remove some unnecessary parentheses. by Gary D. Gregory · 11 years ago
  76. 8a2f04c Remove some unnecessary parentheses. by Gary D. Gregory · 11 years ago
  77. db4109f Java5 compatibility by Stefan Bodewig · 11 years ago
  78. c364195 Convert 'for' loops to enhanced 'for' loops. by Gary D. Gregory · 11 years ago
  79. 7134f38 Proper links to the snappy specification by Emmanuel Bourg · 11 years ago
  80. 3bc692d Move PureJavaCrc32C to the snappy package and make it package private by Emmanuel Bourg · 11 years ago
  81. 34ad7f3 try-with-resources support for the *File classes by Stefan Bodewig · 11 years ago
  82. 3306ac9 make PMD a bit happier by Stefan Bodewig · 11 years ago
  83. 5c2d32b COMPRESS-252 off-by-one error writing bitsets that leads to corrupt 7z headers by Stefan Bodewig · 11 years ago
  84. afce414 can't write shrunk entries either by Stefan Bodewig · 11 years ago
  85. f9487ac Explode support for ZipFile and ZipArchiveInputStream (COMPRESS-115) by Emmanuel Bourg · 11 years ago
  86. 3fd6f60 data descriptor is not supported for shrunk entries by Stefan Bodewig · 11 years ago
  87. 8d44f86 Changed canReadEntryData() to support shrunk entries by Emmanuel Bourg · 11 years ago
  88. 1b47ffe Support shrunk entries in ZipArchiveInputStream by Emmanuel Bourg · 11 years ago
  89. bfc8e03 Defer checking the inflater state to the readDeflated() method by Emmanuel Bourg · 11 years ago
  90. 429462a Formatting by Emmanuel Bourg · 11 years ago
  91. d11e8d1 Moved the entry crc into the CurrentEntry inner class by Emmanuel Bourg · 11 years ago
  92. 8bfb898 Update the entry CRC in the main read() method only (fixes the CRC for stored entries with a data descriptor) by Emmanuel Bourg · 11 years ago
  93. c6c7ec4 Renamed the 'start' parameter in the read methods to 'offset' for consistency with the standard terminology by Emmanuel Bourg · 11 years ago
  94. c83c462 Exception chaining by Emmanuel Bourg · 11 years ago
  95. 29f975e Replaced ZipArchiveInputStream.Buffer with a ByteBuffer by Emmanuel Bourg · 11 years ago
  96. 8301ee7 Modified ZipArchiveInputStream.Buffer to look more like a java.nio.ByteBuffer by Emmanuel Bourg · 11 years ago
  97. 7e06782 avoid magic constant number by Stefan Bodewig · 11 years ago
  98. 3c6e807 GzipCompressorOutputStream revamp to support custom compression level and header metadata (COMPRESS-250) by Emmanuel Bourg · 11 years ago
  99. ec5bd47 reduce duplication in read method by Stefan Bodewig · 11 years ago
  100. b3ddff6 force caller to deal with 0-reads by Stefan Bodewig · 11 years ago