3
0
Fork 0

Version 1.1.0

fix-bug-pid
Matthieu Gautier 7 years ago
parent 6e310c7147
commit 51a4a4e8ef

@ -1,3 +1,12 @@
kiwix-tools 1.1.0
=================
kiwix-serve
-----------
* Fix bug about handling of absolute url in old zim file.
* All the catalog to be searched by tags.
kiwix-tools 1.0.0 kiwix-tools 1.0.0
================= =================

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

Loading…
Cancel
Save