Merge pull request #234 from kiwix/new_version

New version 0.7.0
This commit is contained in:
Matthieu Gautier 2018-10-31 15:30:03 +01:00 committed by GitHub
commit cbe8f1df87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
=================

View File

@ -1,5 +1,5 @@
project('kiwix-tools', 'cpp',
version : '0.6.1',
version : '0.7.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:'>=2.0.2', static:static_linkage)
kiwixlib_dep = dependency('kiwix', version:'>=3.0.0', static:static_linkage)
microhttpd_dep = dependency('libmicrohttpd', static:static_linkage)
z_dep = dependency('zlib', static:static_linkage)