New version 0.7.0

This commit is contained in:
Matthieu Gautier 2018-10-31 14:44:58 +01:00
parent eba80b92ef
commit 2fe5ec1d7c
2 changed files with 20 additions and 2 deletions

View File

@ -1,3 +1,21 @@
kiwix-tools 0.7.0
=================
* Adapt to kiwix-lib new API
kiwix-serve
-----------
* Dumps only valid books in the opdsfeed.
* Allow the opds feed to be filtered by lang and paginated.
kiwix-manage
------------
* Add a download command to download a remote book locally
* Book are referenced by bookId not index.
* No more indexType option as it is always XAPIAN.
kiwix-tools 0.6.1 kiwix-tools 0.6.1
================= =================

View File

@ -1,5 +1,5 @@
project('kiwix-tools', 'cpp', project('kiwix-tools', 'cpp',
version : '0.6.1', version : '0.7.0',
license : 'GPL', license : 'GPL',
default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true']) default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
@ -11,7 +11,7 @@ if static_linkage
endif endif
thread_dep = dependency('threads') thread_dep = dependency('threads')
kiwixlib_dep = dependency('kiwix', version:'>=2.0.2', static:static_linkage) kiwixlib_dep = dependency('kiwix', version:'>=3.0.0', static:static_linkage)
microhttpd_dep = dependency('libmicrohttpd', static:static_linkage) microhttpd_dep = dependency('libmicrohttpd', static:static_linkage)
z_dep = dependency('zlib', static:static_linkage) z_dep = dependency('zlib', static:static_linkage)