mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-09-12 22:09:48 -04:00
v0.2
This commit is contained in:
parent
f2c3a5b4e9
commit
27125469cd
16
NEWS
Normal file
16
NEWS
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
Version 0.2:
|
||||||
|
Implemented a new block splitting algorithm which typically improves the
|
||||||
|
compression ratio slightly at all compression levels.
|
||||||
|
|
||||||
|
The compressor now outputs each block using the cheapest type (dynamic
|
||||||
|
Huffman, static Huffman, or uncompressed).
|
||||||
|
|
||||||
|
The gzip program has received an overhaul and now behaves more like the
|
||||||
|
standard version.
|
||||||
|
|
||||||
|
Build system updates, including: some build options were changed and
|
||||||
|
some build options were removed, and the default 'make' target now
|
||||||
|
includes the gzip program as well as the library.
|
||||||
|
|
||||||
|
Version 0.1:
|
||||||
|
Initial official release.
|
@ -9,6 +9,10 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define LIBDEFLATE_VERSION_MAJOR 0
|
||||||
|
#define LIBDEFLATE_VERSION_MINOR 2
|
||||||
|
#define LIBDEFLATE_VERSION_STRING "0.2"
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
/* Microsoft C / Visual Studio garbage. If you want to link to the DLL version
|
/* Microsoft C / Visual Studio garbage. If you want to link to the DLL version
|
||||||
|
@ -56,7 +56,7 @@ static void
|
|||||||
show_version(void)
|
show_version(void)
|
||||||
{
|
{
|
||||||
printf(
|
printf(
|
||||||
"libdeflate compression benchmark program\n"
|
"libdeflate compression benchmark program v" LIBDEFLATE_VERSION_STRING "\n"
|
||||||
"Copyright 2016 Eric Biggers\n"
|
"Copyright 2016 Eric Biggers\n"
|
||||||
"\n"
|
"\n"
|
||||||
"This program is free software which may be modified and/or redistributed\n"
|
"This program is free software which may be modified and/or redistributed\n"
|
||||||
|
@ -73,7 +73,7 @@ static void
|
|||||||
show_version(void)
|
show_version(void)
|
||||||
{
|
{
|
||||||
printf(
|
printf(
|
||||||
"gzip compression program\n"
|
"gzip compression program v" LIBDEFLATE_VERSION_STRING "\n"
|
||||||
"Copyright 2016 Eric Biggers\n"
|
"Copyright 2016 Eric Biggers\n"
|
||||||
"\n"
|
"\n"
|
||||||
"This program is free software which may be modified and/or redistributed\n"
|
"This program is free software which may be modified and/or redistributed\n"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user