From df7d44128cce223aa2ed36aeb259fa950fc06d21 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 17 Oct 2017 17:49:08 +0200 Subject: [PATCH] Release of kiwix-tools 0.3.0. --- Changelog | 25 ++++++++++++++++++++++++- meson.build | 4 ++-- 2 files changed, 26 insertions(+), 3 deletions(-) diff --git a/Changelog b/Changelog index 1f94a8a..5986d02 100644 --- a/Changelog +++ b/Changelog @@ -1,10 +1,33 @@ +kiwix-tools 0.3.0 +================= + + * Move to C++11 + +kiwix-serve +----------- + + * Add a global taskbar in the welcome page to search in all zims (#49) + * Serve the taskbar as css file instead of including it in the html (#68): + * Better client caching + * The html encoding is now in the first 1024 bytes and firefox correctly + detect the encoding + * Make kiwix-server multi-threaded (#82) + * Correctly return 404 instead of crashing when request inexistant skin file + (#83) + * Correctly respond to bytes-range requests.(#84) + * Directly respond to first request for a url instead of refusing the first + connexion + * Add support to relative url location. (#86) + * Remove caching (on client side) for the welcome page. (#86) + + kiwix-tools 0.2.0 ================= * Remove indexer tools kiwix-serve ----------- +----------- * Correctly fix the deflate data we send over http. (#15) * Update in the taskbar (or topbar): diff --git a/meson.build b/meson.build index d98f208..9ffb714 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-tools', 'cpp', - version : '0.2.0', + version : '0.3.0', license : 'GPL', default_options: ['c_std=c11', 'cpp_std=c++11']) @@ -11,7 +11,7 @@ if static_linkage endif thread_dep = dependency('threads') -kiwixlib_dep = dependency('kiwix', static:static_linkage) +kiwixlib_dep = dependency('kiwix', version:'>=1.0.0', static:static_linkage) microhttpd_dep = dependency('libmicrohttpd', static:static_linkage) z_dep = dependency('zlib', static:static_linkage)