Merge pull request #90 from kiwix/new_release

Release of kiwix-tools 0.3.0.
This commit is contained in:
Matthieu Gautier 2017-10-24 11:29:34 +02:00 committed by GitHub
commit b1d2a1378b
2 changed files with 26 additions and 3 deletions

View File

@ -1,10 +1,33 @@
kiwix-tools 0.3.0
=================
* Move to C++11
kiwix-serve
-----------
* Add a global taskbar in the welcome page to search in all zims (#49)
* Serve the taskbar as css file instead of including it in the html (#68):
* Better client caching
* The html encoding is now in the first 1024 bytes and firefox correctly
detect the encoding
* Make kiwix-server multi-threaded (#82)
* Correctly return 404 instead of crashing when request inexistant skin file
(#83)
* Correctly respond to bytes-range requests.(#84)
* Directly respond to first request for a url instead of refusing the first
connexion
* Add support to relative url location. (#86)
* Remove caching (on client side) for the welcome page. (#86)
kiwix-tools 0.2.0
=================
* Remove indexer tools
kiwix-serve
----------
-----------
* Correctly fix the deflate data we send over http. (#15)
* Update in the taskbar (or topbar):

View File

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