Merge pull request #185 from kiwix/0.5.0

0.5.0
This commit is contained in:
Matthieu Gautier 2018-04-23 20:49:57 +02:00 committed by GitHub
commit 773b9e5443
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 2 deletions

View File

@ -1,3 +1,19 @@
kiwix-tools 0.5.0
=================
* Build kiwix-tools setting the RPATH
* Compile without warning.
kiwix-server
------------
* Serve metadata information using the "/meta" url.
* Serve an OPDS stream of all zim handled by kiwix-serve
All informations cannot be infer from the zim file itself,
you should use a library.xml to provide needed information (url, ...)
* Update kiwix-serve to use the new API of kiwix-lib
kiwix-tools 0.4.0 kiwix-tools 0.4.0
================= =================

View File

@ -1,5 +1,5 @@
project('kiwix-tools', 'cpp', project('kiwix-tools', 'cpp',
version : '0.4.0', version : '0.5.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:'>=1.0.0', static:static_linkage) kiwixlib_dep = dependency('kiwix', version:'>=2.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)