From 15dc066c10b7ea79e70549ab195acd0381e5516c Mon Sep 17 00:00:00 2001 From: Hayaki Saito Date: Sun, 26 Oct 2014 02:29:22 +0900 Subject: [PATCH] Update ChangeLog and NEWS --- ChangeLog | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ NEWS | 20 +++++++++++-- 2 files changed, 106 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ee4a7b39..f0902ce1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,14 +1,102 @@ +2014-10-25 Hayaki Saito + + * configure, configure.ac: Don't terminate configure process if + --with-libcurl=auto + + * configure, configure.ac: Don't check pkg-config availability if + $cross_compile == yes + + * Makefile.in, configure, configure.ac, converters/Makefile.in, + include/Makefile.in, src/Makefile.in: Use $PKG_CONFIG environment variable + instead of $have_pkg_config + + * configure, configure.ac: Don't use system pkg-config if $cross_compile == + "yes" + + * configure, configure.ac: Checks zlib availability with libpng, workaround + for MinGW build + + * README.md, configure, configure.ac: Links libcurl automatically + + * Makefile.in, NEWS, configure, configure.ac, converters/Makefile.am, + converters/Makefile.in, include/Makefile.in, src/Makefile.in: Build with + libjpeg/libpng automatically + + * converters/loader.c: Strip alpha in png loader + +2014-10-22 Hayaki Saito + + * Makefile.am, Makefile.in, converters/Makefile.am, converters/Makefile.in, + images/snake.png: Add test for loading png with libpng + + * configure, configure.ac, converters/Makefile.am, converters/Makefile.in, + images/snake-progressive.jpg: Add a test for loading progressive jpeg + +2014-10-20 Hayaki Saito + + * configure, configure.ac, include/sixel.h.in, src/dither.c, src/dither.h, + src/tosixel.c: Add new API, sixel_dither_set_body_only + + * converters/img2sixel.c: Update usage + + * configure: Minor fix + + * configure, configure.ac: Minor fix + + * configure.ac: Fix build error + + * converters/loader.c: Fix build error + + * converters/loader.c: Use libpng reader + + * Makefile.in, config.h.in, configure, configure.ac, converters/Makefile.am, + converters/Makefile.in, include/Makefile.in, src/Makefile.in: Add --with-png + configure option + + * LICENSE.xterm, README.md, src/fromsixel.c: Fix wrong HLS-to-RGB conversion + routine + +2014-10-18 Hayaki Saito + + * converters/img2sixel.c: Introduce --verbose option + + * src/fromsixel.c: Rename some functions as snake case + + * src/fromsixel.c: Rename some functions as snake case + 2014-10-17 Hayaki Saito + * src/tosixel.c: Omit DCS parameters by default + + * src/tosixel.c: Strip an extra DECGNL character at the end of output data + + * src/tosixel.c: Strip an extra LF character from output data + * converters/loader.c: Suppress gdk-pixbuf assersion on processing some GIF images, reported by @ttdoda +2014-10-14 Hayaki Saito + + * LICENSE.sdump, Makefile.in, README.md, config.h.in, configure, + configure.ac, converters/Makefile.am, converters/Makefile.in, + converters/loader.c, include/Makefile.in, src/Makefile.in: Add libjpeg + support with --with-jpeg configure option + 2014-10-12 Hayaki Saito + * package.json.in.in: clib integration: add --with-libcurl option by default + * NEWS: Add missing items to NEWS * converters/loader.c: Include errno.h in loader.c + * converters/Makefile.am, converters/Makefile.in, src/Makefile.am, + src/Makefile.in: Add -Werror to CFLAGS when --enable-debug configure option + is specified + + * config.h.in, configure, configure.ac: Introduce --enable-debug configure + option + * converters/img2sixel.c: Fix a double free error 2014-10-11 Hayaki Saito diff --git a/NEWS b/NEWS index 97bfabdb..28ff8787 100644 --- a/NEWS +++ b/NEWS @@ -2,9 +2,23 @@ What's new in libsixel-1.3 ? ------------------------------ -* Add libjpeg integration +* Now libcurl is automatically linked. + If you don't want to build with libcurl, you should configure with + --without-libcurl option. -* Add libpng integration +* Add libjpeg integration(linked automatically). + +* Add libpng integration(linked automatically). + +* Introduce -t(--palette-type) option. + img2sixel can output HLS paletted sixel with "-t hls". + Add new API sixel_output_set_palette_type. + +* Introduce -v(--verbose) option. + +* Add new API sixel_dither_set_body_only. + +* Some bug fixes and minor improvements. ------------------------------ What's new in libsixel-1.2 ? @@ -25,6 +39,8 @@ * Introduce static image extraction from Gif animation (-S). (discussion with @isaki68k) +* Introduce --enable-debug configure option. + * Add APIs for skipping DCS envelope sixel_output_{get,set}_skip_dcs_envelope. (disscussion with @uobikiemukot)