mirror of
https://github.com/kiwix/kiwix-tools.git
synced 2025-09-22 11:22:38 -04:00
Release of kiwix-tools 0.3.0.
This commit is contained in:
parent
ee5333bb91
commit
df7d44128c
25
Changelog
25
Changelog
@ -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
|
kiwix-tools 0.2.0
|
||||||
=================
|
=================
|
||||||
|
|
||||||
* Remove indexer tools
|
* Remove indexer tools
|
||||||
|
|
||||||
kiwix-serve
|
kiwix-serve
|
||||||
----------
|
-----------
|
||||||
|
|
||||||
* Correctly fix the deflate data we send over http. (#15)
|
* Correctly fix the deflate data we send over http. (#15)
|
||||||
* Update in the taskbar (or topbar):
|
* Update in the taskbar (or topbar):
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
project('kiwix-tools', 'cpp',
|
project('kiwix-tools', 'cpp',
|
||||||
version : '0.2.0',
|
version : '0.3.0',
|
||||||
license : 'GPL',
|
license : 'GPL',
|
||||||
default_options: ['c_std=c11', 'cpp_std=c++11'])
|
default_options: ['c_std=c11', 'cpp_std=c++11'])
|
||||||
|
|
||||||
@ -11,7 +11,7 @@ if static_linkage
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
thread_dep = dependency('threads')
|
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)
|
microhttpd_dep = dependency('libmicrohttpd', static:static_linkage)
|
||||||
z_dep = dependency('zlib', static:static_linkage)
|
z_dep = dependency('zlib', static:static_linkage)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user