Merge pull request #773 from kiwix/release-3.8.0

Release 3.8.0
pull/763/head 3.8.0
Kelson 7 months ago committed by GitHub
commit 830a9e5e29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,3 +1,22 @@
kiwix-tools 3.8.0
=================
* Kiwix server
- Improve message when server is running on standard port (@vighnesh-sawant #763)
- Update container base image to latest Alpline version (@yashgoyal0110 #771)
- Container image to use unprivileged user (@Sedetisu #755)
- Empty urlRootLocation doesn't disable book preview links anymore (@veloman-yunkan #1224)
- Add support of IPv6 (@sgourdas #673 #704)
- Popups are allowed to escape the browser sandbox (@veloman-yunkan #1208)
* Other
- Stop publishing on Ubuntu 20.04 PPA (@kelson42 #748)
- Use Docopt for command line argument parsing (@mgautierfr #695)
* Compilation & Packaging
- Based on libkiwix 14.1.0 (@kelson42 #773)
- Improve CI/CD (@kelson42 #681 #698 #702 #705 #720 #722, @mgautierfr #695)
kiwix-tools 3.7.0 kiwix-tools 3.7.0
================= =================

@ -21,7 +21,7 @@ endif
thread_dep = dependency('threads') thread_dep = dependency('threads')
libzim_dep = dependency('libzim', version:['>=9.0.0', '<10.0.0'], static:static_linkage) libzim_dep = dependency('libzim', version:['>=9.0.0', '<10.0.0'], static:static_linkage)
libkiwix_dep = dependency('libkiwix', version:['>=14.0.0', '<15.0.0'], static:static_linkage) libkiwix_dep = dependency('libkiwix', version:['>=14.1.0', '<15.0.0'], static:static_linkage)
libdocopt_dep = dependency('docopt', static:static_linkage) libdocopt_dep = dependency('docopt', static:static_linkage)
all_deps = [thread_dep, libkiwix_dep, libzim_dep, libdocopt_dep] all_deps = [thread_dep, libkiwix_dep, libzim_dep, libdocopt_dep]

Loading…
Cancel
Save