From a14cd5de23b7ff008cc448449f27907cef02eaa4 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 19 Aug 2019 17:26:28 +0200 Subject: [PATCH 1/2] Fix kiwix-serve usage message. --- src/server/kiwix-serve.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/kiwix-serve.cpp b/src/server/kiwix-serve.cpp index 685c3f2..acb78b2 100644 --- a/src/server/kiwix-serve.cpp +++ b/src/server/kiwix-serve.cpp @@ -55,7 +55,7 @@ void usage() << "Optional arguments:" << std::endl << "\t-a, --attachToProcess\texit if given process id is not running anymore" << std::endl << "\t-d, --daemon\t\tdetach the HTTP server daemon from the main process" << std::endl - << "\t-f, --interface\t\tlisten only on this interface, all available ones otherwise (POSIX only)" << std::endl + << "\t-i, --address\t\tlisten only on this ip address, all available ones otherwise" << std::endl << "\t-m, --nolibrarybutton\tdo not print the builtin home button in the builtin top bar overlay" << std::endl << "\t-n, --nosearchbar\tdo not print the builtin bar overlay on the top of each served page" << std::endl << "\t-p, --port\t\tTCP port on which to listen to HTTP requests (default: 80)" << std::endl From e2f7c7a0acea970ee3311fb19c153a1cb895c6ae Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 19 Aug 2019 17:26:37 +0200 Subject: [PATCH 2/2] New version 3.0.0 --- Changelog | 5 +++++ meson.build | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 0b7157f..fff3972 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,8 @@ +kiwix-tools 3.0.0 +================= + + * Move kiwix-serve implementation in kiwix-lib. + kiwix-tools 2.1.0 ================= diff --git a/meson.build b/meson.build index 62435ac..3502624 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-tools', 'cpp', - version : '2.1.0', + version : '3.0.0', license : 'GPL', default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true']) @@ -11,7 +11,7 @@ if static_linkage endif thread_dep = dependency('threads') -kiwixlib_dep = dependency('kiwix', version:'>=5.2.0', static:static_linkage) +kiwixlib_dep = dependency('kiwix', version:'>=6.0.0', static:static_linkage) microhttpd_dep = dependency('libmicrohttpd', static:static_linkage) z_dep = dependency('zlib', static:static_linkage)