summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCompress
AgeCommit message (Expand)Author
2023-01-03LibCompress: Port `ZlibCompressor` to `Core::Stream`Tim Schumacher
2023-01-03LibCompress: Switch `ZlibCompressor` to a constructor patternTim Schumacher
2023-01-03LibCompress: Rename `Compress::Zlib` to `Compress::ZlibDecompressor`Tim Schumacher
2022-12-26LibCompress: Add two missing return statementsNico Weber
2022-12-15LibCore: Rename `MemoryStream` to `FixedMemoryStream`Tim Schumacher
2022-12-12LibCompress: Port `DeflateDecompressor` to `Core::Stream`Tim Schumacher
2022-12-12LibCore: Use the new `Handle` type for the `BitStream` typesTim Schumacher
2022-12-12LibCore: Remove `Stream::is_{readable,writable}`Tim Schumacher
2022-12-10LibCompress: Port GzipDecompressor to `Core::Stream`Tim Schumacher
2022-12-06Everywhere: Rename to_{string => deprecated_string}() where applicableLinus Groh
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-11-26Everywhere: Add support for compilation under emscriptenAli Mohammad Pur
2022-11-01Everywhere: Mark dependencies of most targets as PRIVATETim Schumacher
2022-11-01Everywhere: Explicitly link all binaries against the LibC targetTim Schumacher
2022-10-11LibCompress: Brotli support metadata of skip_length=0Tommy Murphy
2022-10-10AK+Userland: Replace Linux, macOS, and *BSD macros with platform definesAndrew Kaster
2022-09-17LibCompress+Tests: Demonstrate and fix faulty metadata lengthBen Wiederhake
2022-07-10LibCompress: Write Deflate window size in the Zlib headerKarol Kosek
2022-06-30LibCompress: Implement a Zlib compressorKarol Kosek
2022-06-30LibCompress: Use newly created Zlib header structure when decompressingKarol Kosek
2022-06-30LibCompress: Add Zlib header structureKarol Kosek
2022-05-21LibCompress: Implement Brotli decompressorMichiel Visser
2022-04-03LibCompress: Change DeflateSpecialCodeLengths to constexpr variablesLenny Maiorani
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-10Libraries: Use default constructors/destructors in LibCompressLenny Maiorani
2022-01-28Userland: Remove a bunch of unnecessary Vector importskleines Filmröllchen
2022-01-07Everywhere: Fix many spelling errorsmjz19910
2021-11-11Everywhere: Pass AK::ReadonlyBytes by valueAndreas Kling
2021-10-06LibCompress: Add missing header to DeflateTables.hBen Wiederhake
2021-05-18LibCompress: Discard GZip NAME & COMMENT optional stringsIdan Horowitz
2021-05-16LibCompress: Add missing #includeGunnar Beutner
2021-05-16Userland: Add missing #includesGunnar Beutner
2021-05-07LibCompress: Add a method that describes a Gzip HeaderIdan Horowitz
2021-05-06Tests: Move LibCompress tests to Tests/LibCompressBrian Gianforcaro
2021-04-29Everywhere: Use "the SerenityOS developers." in copyright headersLinus Groh
2021-04-25AK+Userland: Move AK/TestSuite.h into LibTest and rework Tests' CMakeAndrew Kaster
2021-04-22AK+Userland: Use idan.horowitz@serenityos.org for my copyright headersIdan Horowitz
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-21Tests: Reorganize LibCompress unit testsMarco Biscaro
2021-04-18Everywhere: Fix a bunch of typosLinus Groh
2021-03-21LibCompress: Convert GzipDecompressor from recursive to iterativeIdan Horowitz
2021-03-19LibCompress: Convert DeflateDecompressor from recursive to iterativeIdan Horowitz
2021-03-17LibCompress: fail gracefuly on invalid symbols in DeflateDecompressorIdan Horowitz
2021-03-17LibCompress: Check for impossible back references in DeflateDecompressorIdan Horowitz
2021-03-16LibCompress: Fail gracefuly on missing huffman codes in DeflateDecompressorIdan Horowitz
2021-03-16LibCompress: Check and fail for input stream errors in DeflateDecompressorIdan Horowitz
2021-03-16LibCompress: Allow partial header reads in GzipDecompressorIdan Horowitz
2021-03-16LibCompress: Handle and propagate stream errors in GzipDecompressorIdan Horowitz
2021-03-16LibCompress+AK: Dont short-circuit error handling propagationIdan Horowitz
2021-03-15LibCompress+AK: Propagate error handling to wrapped streamsIdan Horowitz