mirror of
https://github.com/kiwix/kiwix-tools.git
synced 2025-09-22 11:22:38 -04:00
New version 3.4.0
* Remove last reference to kiwix-read tool (@legoktm #569) kiwix-serve ----------- * Fix broken indentation in usage (@kelson42 #560) * Exit if wrong arguments are passed (@kelson42 #567) * Do not allow multiple values for same option (@juuz0 #564) * Fix default location of "rootLocation" (@rgaudin #571) * [DOCKER] Change default port to 8080 (@neyder #581) * [DOCKER] Simplify dockerfile (@rgaudin #582) kiwix-manage ------------ * Fix man page (@kelson42 #576)
This commit is contained in:
parent
252e3bc962
commit
0f81dad6a4
24
Changelog
24
Changelog
@ -1,3 +1,23 @@
|
|||||||
|
kiwix-tools 3.4.0
|
||||||
|
=================
|
||||||
|
|
||||||
|
* Remove last reference to kiwix-read tool (@legoktm #569)
|
||||||
|
|
||||||
|
kiwix-serve
|
||||||
|
-----------
|
||||||
|
|
||||||
|
* Fix broken indentation in usage (@kelson42 #560)
|
||||||
|
* Exit if wrong arguments are passed (@kelson42 #567)
|
||||||
|
* Do not allow multiple values for same option (@juuz0 #564)
|
||||||
|
* Fix default location of "rootLocation" (@rgaudin #571)
|
||||||
|
* [DOCKER] Change default port to 8080 (@neyder #581)
|
||||||
|
* [DOCKER] Simplify dockerfile (@rgaudin #582)
|
||||||
|
|
||||||
|
kiwix-manage
|
||||||
|
------------
|
||||||
|
|
||||||
|
* Fix man page (@kelson42 #576)
|
||||||
|
|
||||||
kiwix-tools 3.3.0
|
kiwix-tools 3.3.0
|
||||||
=================
|
=================
|
||||||
|
|
||||||
@ -6,7 +26,7 @@ kiwix-tools 3.3.0
|
|||||||
kiwix-serve
|
kiwix-serve
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
* Add an option to limit the number of connections for a same IP (@nikhil #534)
|
* Add an option to limit the number of connections for a same IP (@juuz0 #534)
|
||||||
* Add an option to limit the number of zim in a multizim fulltext search (@mgautierfr #558)
|
* Add an option to limit the number of zim in a multizim fulltext search (@mgautierfr #558)
|
||||||
|
|
||||||
kiwix-search
|
kiwix-search
|
||||||
@ -34,7 +54,7 @@ kiwix-tools 3.2.0
|
|||||||
kiwix-serve
|
kiwix-serve
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
* Print the url on which a user can connect to on startup (@nikhil #499 #522)
|
* Print the url on which a user can connect to on startup (@juuz0 #499 #522)
|
||||||
* Reload library on SIGHUP signal (@veloman-yunkan #497)
|
* Reload library on SIGHUP signal (@veloman-yunkan #497)
|
||||||
* Add a option `--monitorLibrary` to monitor and automically reload the library
|
* Add a option `--monitorLibrary` to monitor and automically reload the library
|
||||||
(@veloman-yunkan #503)
|
(@veloman-yunkan #503)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
project('kiwix-tools', 'cpp',
|
project('kiwix-tools', 'cpp',
|
||||||
version : '3.3.0',
|
version : '3.4.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'])
|
||||||
|
|
||||||
@ -13,8 +13,8 @@ if static_linkage
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
thread_dep = dependency('threads')
|
thread_dep = dependency('threads')
|
||||||
kiwixlib_dep = dependency('kiwix', version:'>=11.0.0', static:static_linkage)
|
kiwixlib_dep = dependency('kiwix', version:'>=12.0.0', static:static_linkage)
|
||||||
libzim_dep = dependency('libzim', version:'>=7.2.0', static:static_linkage)
|
libzim_dep = dependency('libzim', version:'>=8.1.0', static:static_linkage)
|
||||||
|
|
||||||
all_deps = [thread_dep, kiwixlib_dep, libzim_dep]
|
all_deps = [thread_dep, kiwixlib_dep, libzim_dep]
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user