include NEWS in lz4_x64.zip and lz4_x86.zip
authorPrzemyslaw Skibinski <inikep@gmail.com>
Wed, 16 Nov 2016 10:06:28 +0000 (11:06 +0100)
committerPrzemyslaw Skibinski <inikep@gmail.com>
Wed, 16 Nov 2016 10:06:28 +0000 (11:06 +0100)
appveyor.yml
lib/dll/example/README.md

index 2885e30..93c1101 100644 (file)
@@ -70,11 +70,11 @@ build_script:
       COPY programs\lz4.exe bin\lz4.exe
     )
   - if [%COMPILER%]==[gcc] if [%PLATFORM%]==[mingw64] (
-      7z.exe a bin\lz4_x64.zip .\bin\lz4.exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include &&
+      7z.exe a bin\lz4_x64.zip NEWS .\bin\lz4.exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include &&
       appveyor PushArtifact bin\lz4_x64.zip
     )
   - if [%COMPILER%]==[gcc] if [%PLATFORM%]==[mingw32] (
-      7z.exe a bin\lz4_x86.zip .\bin\lz4.exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include &&
+      7z.exe a bin\lz4_x86.zip NEWS .\bin\lz4.exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include &&
       appveyor PushArtifact bin\lz4_x86.zip
     )
   - if [%COMPILER%]==[gcc] (COPY tests\fullbench.exe programs\)
index 216c1e9..4908663 100644 (file)
@@ -1,13 +1,13 @@
-The static and dynamic LZ4 libraries
+LZ4 Windows binary package
 ====================================
 
 #### The package contents
 
-- `lz4.exe` :                  Command Line Utility, supporting gzip-like arguments
-- `dll\liblz4.dll` :           The DLL of LZ4 library
-- `dll\liblz4.lib` :           The import library of LZ4 library for Visual C++
-- `example\` :                 The example of usage of LZ4 library
-- `include\` :                 Header files required with LZ4 library
+- `lz4.exe`                  : Command Line Utility, supporting gzip-like arguments
+- `dll\liblz4.dll`           : The DLL of LZ4 library
+- `dll\liblz4.lib`           : The import library of LZ4 library for Visual C++
+- `example\`                 : The example of usage of LZ4 library
+- `include\`                 : Header files required with LZ4 library
 - `static\liblz4_static.lib` : The static LZ4 library
 
 
@@ -16,12 +16,14 @@ The static and dynamic LZ4 libraries
 Command Line Interface (CLI) supports gzip-like arguments.
 By default CLI takes an input file and compresses it to an output file:
 ```
-Usage: lz4 [arg] [input] [output]
+    Usage: lz4 [arg] [input] [output]
 ```
-The full list of commands for CLI can be obtained with `-h` or `-H`.
-The ratio can be improved with commands from `-3` to `-16` but higher levels also have slower compression. 
-CLI supports aggregation of parameters i.e. `-b1`, `-e18`, and `-i1` can be joined into `-b1e18i1`.
-CLI includes in-memory compression benchmark module with compression levels starting from `-b` and ending with `-e` with iteration time of `-i` seconds.
+The full list of commands for CLI can be obtained with `-h` or `-H`. The ratio can
+be improved with commands from `-3` to `-16` but higher levels also have slower
+compression. CLI includes in-memory compression benchmark module with compression
+levels starting from `-b` and ending with `-e` with iteration time of `-i` seconds.
+CLI supports aggregation of parameters i.e. `-b1`, `-e18`, and `-i1` can be joined
+into `-b1e18i1`.
 
 
 #### The example of usage of static and dynamic LZ4 libraries with gcc/MinGW