3
0
Fork 0

Merge pull request #267 from kiwix/new_version

Version 1.1.0
fix-bug-pid 1.1.0
Matthieu Gautier 6 years ago committed by GitHub
commit 472de06e6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
=================

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

@ -32,7 +32,7 @@ sudo apt-get install -qq python3-pip ${PACKAGES}
wget https://bootstrap.pypa.io/get-pip.py
python3.5 get-pip.py --user
python3.5 -m pip install --user --upgrade pip
python3.5 -m pip install --user meson
python3.5 -m pip install --user meson==0.49.2
# Ninja
cd $HOME

Loading…
Cancel
Save