Comparing version 2.1.0 to 2.2.0
@@ -84,1 +84,3 @@ <p align="center"><img src="https://brotli.org/brotli.svg" alt="Brotli" width="64"></p> | ||
7Zip [plugin](https://github.com/mcmilk/7-Zip-Zstd) | ||
Dart [native bindings](https://github.com/thosakwe/brotli) |
@@ -5,2 +5,15 @@ # Change Log | ||
## [2.2.0] - 2018-03-30 | ||
### Changed | ||
- Updated brotli from [v1.0.3] to [v1.0.4] | ||
### Added | ||
- Support for new brotli compression parameters: | ||
- `large_window` | ||
- `npostfix` | ||
- `ndirect` | ||
### Fixed | ||
- brotli parameter `size_hint` was being parsed as a boolean instead of an integer. | ||
## [2.1.0] - 2018-03-24 | ||
@@ -245,2 +258,3 @@ ### Changed | ||
[2.2.0]: https://github.com/MayhemYDG/iltorb/compare/v2.1.0...v2.2.0 | ||
[2.1.0]: https://github.com/MayhemYDG/iltorb/compare/v2.0.9...v2.1.0 | ||
@@ -286,2 +300,3 @@ [2.0.9]: https://github.com/MayhemYDG/iltorb/compare/v2.0.8...v2.0.9 | ||
[v1.0.4]: https://github.com/google/brotli/compare/v1.0.3...c6333e1e79fb62ea088443f192293f964409b04e | ||
[v1.0.3]: https://github.com/google/brotli/releases/tag/v1.0.3 | ||
@@ -288,0 +303,0 @@ [v1.0.2]: https://github.com/google/brotli/releases/tag/v1.0.2 |
{ | ||
"name": "iltorb", | ||
"version": "2.1.0", | ||
"version": "2.2.0", | ||
"description": "Brotli compression/decompression with native bindings", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/MayhemYDG/iltorb", |
@@ -106,5 +106,5 @@ # iltorb | ||
The `compress`, `compressSync` and `compressStream` methods may accept an optional `brotliEncodeParams` object to define some or all of brotli's compression parameters: | ||
- [type definition](https://github.com/google/brotli/blob/v1.0.2/c/enc/quality.h#L43-L52) | ||
- [defaults](https://github.com/google/brotli/blob/v1.0.2/c/enc/encode.c#L672-L679) | ||
- [explanations](https://github.com/google/brotli/blob/v1.0.2/c/include/brotli/encode.h#L128-L180) | ||
- [type definition](https://github.com/google/brotli/blob/c6333e1e79fb62ea088443f192293f964409b04e/c/enc/params.h#L30-L42) | ||
- [defaults](https://github.com/google/brotli/blob/c6333e1e79fb62ea088443f192293f964409b04e/c/enc/encode.c#L706-L720) | ||
- [explanations](https://github.com/google/brotli/blob/c6333e1e79fb62ea088443f192293f964409b04e/c/include/brotli/encode.h#L133-L205) | ||
@@ -117,4 +117,7 @@ ```javascript | ||
lgblock: 0, | ||
disable_literal_context_modeling: false, | ||
size_hint: 0, // automatically set for `compress` and `compressSync` | ||
disable_literal_context_modeling: false | ||
large_window: false, | ||
npostfix: 0, | ||
ndirect: 0 | ||
}; | ||
@@ -121,0 +124,0 @@ ``` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1953095
132