Skip to content
Snippets Groups Projects
  1. Jan 27, 2025
  2. Feb 09, 2023
  3. Jan 04, 2023
  4. Dec 20, 2022
    • W. Felix Handte's avatar
      Coalesce Almost All Copyright Notices to Standard Phrasing · 5d693cc3
      W. Felix Handte authored
      ```
      for f in $(find . \( -path ./.git -o -path ./tests/fuzz/corpora -o -path ./tests/regression/data-cache -o -path ./tests/regression/cache \) -prune -o -type f); do sed -i '/Copyright .* \(Yann Collet\)\|\(Meta Platforms\)/ s/Copyright .*/Copyright (c) Meta Platforms, Inc. and affiliates./' $f; done
      
      git checkout HEAD -- build/VS2010/libzstd-dll/libzstd-dll.rc build/VS2010/zstd/zstd.rc tests/test-license.py contrib/linux-kernel/test/include/linux/xxhash.h examples/streaming_compression_thread_pool.c lib/legacy/zstd_v0*.c lib/legacy/zstd_v0*.h
      nano ./programs/windres/zstd.rc
      nano ./build/VS2010/zstd/zstd.rc
      nano ./build/VS2010/libzstd-dll/libzstd-dll.rc
      ```
      5d693cc3
    • W. Felix Handte's avatar
      Rewrite Copyright Date Ranges from `-present` to `-2022` · 7f12f24c
      W. Felix Handte authored
      Apparently it's better. Somehow.
      
      ```
      for f in $(find . \( -path ./.git -o -path ./tests/fuzz/corpora -o -path ./tests/regression/data-cache -o -path ./tests/regression/cache \) -prune -o -type f); do echo $f; sed -i 's/\-present/-2022/' $f; done
      
      g co HEAD -- build/meson/
      ```
      7f12f24c
    • W. Felix Handte's avatar
      Update Copyright Year ('2021' -> 'present') · 36d5c2f3
      W. Felix Handte authored
      ```
      for f in $(find . \( -path ./.git -o -path ./tests/fuzz/corpora -o -path ./tests/regression/data-cache -o -path ./tests/regression/cache \) -prune -o -type f);
      do
        sed -i 's/\-2021/-present/' $f;
      done
      
      g co HEAD -- .github/workflows/dev-short-tests.yml # fix bad match
      ```
      36d5c2f3
    • W. Felix Handte's avatar
      Update Copyright Headers 'Facebook' -> 'Meta Platforms' · 8927f985
      W. Felix Handte authored
      ```
      for f in $(find . \( -path ./.git -o -path ./tests/fuzz/corpora \) -prune -o -type f);
      do
        sed -i 's/Facebook, Inc\./Meta Platforms, Inc. and affiliates./' $f;
      done
      ```
      8927f985
  5. Dec 14, 2022
  6. Oct 27, 2022
  7. Oct 22, 2022
  8. Sep 24, 2021
  9. Sep 23, 2021
    • Nick Terrell's avatar
      [lib] Make lib compatible with `-Wfall-through` excepting legacy · 189e87bc
      Nick Terrell authored
      Switch to a macro `ZSTD_FALLTHROUGH;` instead of a comment. On supported
      compilers this uses an attribute, otherwise it becomes a comment.
      
      This is necessary to be compatible with clang's `-Wfall-through`, and
      gcc's `-Wfall-through=2` which don't support comments. Without this the
      linux build emits a bunch of warnings.
      
      Also add a test to CI to ensure that we don't regress.
      189e87bc
  10. Mar 16, 2021
  11. Jan 04, 2021
  12. Dec 02, 2020
  13. Sep 25, 2020
  14. Sep 09, 2020
  15. Apr 12, 2019
    • Josh Soref's avatar
      Spelling (#1582) · a880ca23
      Josh Soref authored
      * spelling: accidentally
      
      * spelling: across
      
      * spelling: additionally
      
      * spelling: addresses
      
      * spelling: appropriate
      
      * spelling: assumed
      
      * spelling: available
      
      * spelling: builder
      
      * spelling: capacity
      
      * spelling: compiler
      
      * spelling: compressibility
      
      * spelling: compressor
      
      * spelling: compression
      
      * spelling: contract
      
      * spelling: convenience
      
      * spelling: decompress
      
      * spelling: description
      
      * spelling: deflate
      
      * spelling: deterministically
      
      * spelling: dictionary
      
      * spelling: display
      
      * spelling: eliminate
      
      * spelling: preemptively
      
      * spelling: exclude
      
      * spelling: failure
      
      * spelling: independence
      
      * spelling: independent
      
      * spelling: intentionally
      
      * spelling: matching
      
      * spelling: maximum
      
      * spelling: meaning
      
      * spelling: mishandled
      
      * spelling: memory
      
      * spelling: occasionally
      
      * spelling: occurrence
      
      * spelling: official
      
      * spelling: offsets
      
      * spelling: original
      
      * spelling: output
      
      * spelling: overflow
      
      * spelling: overridden
      
      * spelling: parameter
      
      * spelling: performance
      
      * spelling: probability
      
      * spelling: receives
      
      * spelling: redundant
      
      * spelling: recompression
      
      * spelling: resources
      
      * spelling: sanity
      
      * spelling: segment
      
      * spelling: series
      
      * spelling: specified
      
      * spelling: specify
      
      * spelling: subtracted
      
      * spelling: successful
      
      * spelling: return
      
      * spelling: translation
      
      * spelling: update
      
      * spelling: unrelated
      
      * spelling: useless
      
      * spelling: variables
      
      * spelling: variety
      
      * spelling: verbatim
      
      * spelling: verification
      
      * spelling: visited
      
      * spelling: warming
      
      * spelling: workers
      
      * spelling: with
      a880ca23
  16. Jun 29, 2017
  17. May 16, 2017
  18. Apr 04, 2017
Loading