Commit Graph

109 Commits

Author SHA1 Message Date
0ae31bd181 New version 12.0.0
* [API Break] Remove wrapper around libzim (@mgautierfr #789)
* Allow kiwix-serve to use custom resource files (@veloman-yunkan #779)
* Properly handle searchProtocolPrefix when rendering search result (@veloman-yunkan #823)
* Prevent search on multi language content (@veloman-yunkan #838)
* Use new `zim::Archive::getMediaCount` from libzim (@mgautierfr #836)
* Catalog:
 - Include tags in free text catalog search (@veloman-yunkan #802)
 - Illustration's url is based on book's uuid (@veloman-yunkan #804)
 - Cleanup of the opds-dumper (@veloman-yunkan #829)
 - Allow filtering of catalog content using multiple languages (@veloman-yunkan #841)
 - Make opds-dumper respect the namemapper (@mgautierfr #837)
* Server:
 - Correctly handle `\` in suggestion json generation (@veloman-yunkan #843)
 - Better http caching (@veloman-yunkan #833)
 - Make `/suggest` endpoint thread-safe (@veloman-yunkan #834)
 - Better redirection of main page (@veloman-yunkan #827)
 - Remove jquery (@mgautierfr @juuz0 #796)
 - Better Viewer of zim content :
   . Introduce `/content` endpoints (@veloman-yunkan #806)
   . Switch to iframe based content viewer (@veloman-yunkan #716)
 - Optimised design of the welcome page:
   . Alignement (@juuz0 @kelson42 #786)
   . Exit download modal on pressing escape key (@juzz0 #800)
   . Add favicon for different devices (@juzz0 #805)
   . Fix auto hidding of the toolbar (@veloman-yunkan #821)
   . Allow user to filter books by tags in the front page (@juuz0 #711)
* CI :
  - Trigger CI on pull_request (@kelson42 #791)
  - Drop Ubuntu Impish packaging (@legoktm #825)
  - Add Ubuntu Kinetic packaging (@legoktm #801)
* Testing:
  - Test ICULanguageInfo (@veloman-yunkan #795)
  - Introduce fake `test` language to test i18n (@veloman-yunkan #848)
* Fix documentation (@kelson42 #816)
* Udpate translation (#787 #839 #847)
2022-11-30 18:01:13 +01:00
3938d791e7 New version 11.0.0 2022-06-15 11:49:03 +02:00
01c384bb64 Remove the java wrapper.
- The meson's `wrapper` option is removed.
- New meson's option `static-linkage` is added to tell meson to link
  with static library.
2022-06-09 10:23:02 +02:00
6dcf4ee034 New version 10.1.1 2022-04-11 17:13:58 +02:00
b9e40def88 New version 10.1.0 2022-03-24 18:26:35 +01:00
f2088d7fe0 Use "host_machine", not "target_machine" for cross-compilation
Read https://mesonbuild.com/Cross-compilation.html for all the rationals.
2022-02-09 07:02:14 +01:00
9193719c8f New version 10.0.1 2022-02-02 15:55:40 +01:00
7da81acaa3 Update libzim dependency version to 7.2.0 2022-01-19 16:02:39 +01:00
2dc8fc9ab3 Needs libzim 7.1.0 getMetadataItem() 2022-01-15 15:57:04 +01:00
9f3459f3f3 Better libkiwix version variable name 2021-12-13 18:22:40 +01:00
3589a51fff Add basic documentation for libkiwix.
It follows the same logic of libzim documentation.
2021-12-01 16:06:36 +01:00
5f83944699 Avoid windows header to define min/max macros.
PR #507 use std::min.
But on windows, the header define min and max macros and so the
compilation is broken.
Add `-DNOMINMAX` define to avoid that.
2021-05-26 09:20:17 +02:00
d4e35c7067 Rename kiwix-lib in libkiwix 2021-05-23 21:46:52 +02:00
c8b7f8772a Fix Libkiwix Github repository URLS 2021-05-20 08:56:44 +02:00
20b487da8d Added Xapian as direct dependency 2021-03-17 14:32:03 +01:00
f7608c378e Bump-up version to 10.0.0 2021-02-10 10:31:01 +01:00
b1689e0d3c Bump-up version (and libzim required version) 2021-02-07 19:53:46 +04:00
3fd1310008 Use c++11 std::thread instead of pthread. 2021-01-26 17:53:25 +01:00
a231dfd8e4 Build kiwix-lib only if meson is compiled with xapian. 2021-01-14 12:07:17 +01:00
fbd4332c87 New version 9.4.1 2020-11-17 15:42:13 +01:00
f408fecdd0 Add missing zlib dependency.
libzim were dependent of zlib and we were (wrongly) using its
dependency declaration to link with zlib.

Now that libzim doesn't depends on zlib, we need to fix our build system
and explicitly depend on it.
2020-11-17 11:54:10 +01:00
9c925f6778 kiwix-lib pc need libmicrohttpd 2020-10-07 17:48:30 +02:00
aba2f35092 New version 9.4.0 2020-08-28 16:04:40 +02:00
c4e6313c90 x in a --> a.contains(x) in meson.build files 2020-08-11 18:17:18 +02:00
3bf70f4315 New version 9.3.1 2020-07-15 16:42:16 +02:00
a8130bd4f2 Fix licensing in meson.build. 2020-07-15 16:41:57 +02:00
5913f7efab Pass -latomic on sh4 architecture too
Same as #372.

I originally missed this because meson didn't know about sh4 until
recently (c.f. https://github.com/mesonbuild/meson/pull/7359), but
this should work fine on older meson versions too.
2020-07-14 17:22:55 -07:00
f997fdb232 Release 9.3.0 2020-07-02 15:17:46 +02:00
e05bd8efd6 Release 9.2.3 2020-07-01 11:33:30 +02:00
fb79cde729 Pass -latomic for architectures that need it
Some architectures, specifically armel, mipsel, m68k & powerpc in
Debian, need to explicitly link to atomic.

Use meson to see if the target's CPU family is one of those, and if so,
pass -latomic to the linker.

Tested on armel and mipsel machines to verify passing -latomic works, and
on armhf and amd64 to ensure normal builds aren't broken.

Fixes #371.
2020-06-29 00:18:13 -07:00
af9afab821 Support building against packaged libkainjow-mustache
The Debian/Ubuntu package for mustache.hpp installs it to
/usr/include/kainjow/mustache.hpp. Have meson look for it in that include
directory as well before erroring out.

Fixes #318.
2020-06-12 11:09:34 +02:00
081a2b2fa6 New version 9.2.2 2020-06-03 10:47:39 +02:00
4cdae3ca98 New version 9.2.1 2020-06-02 10:18:12 +02:00
2bf35f1651 New version 9.2 2020-05-18 15:23:01 +02:00
9f61301423 New version 9.1.2 2020-04-20 15:31:14 +02:00
8fc42558d3 New version 9.1.1 2020-04-17 17:36:11 +02:00
2bf6b04726 Update minimum version of libzim. 2020-04-08 18:03:18 +02:00
12a0660342 New version 9.1.0 2020-04-08 15:38:25 +02:00
78e57c1a51 New version 9.0.1 2020-02-21 14:58:04 +01:00
411ca28598 New version 9.0.0 2020-02-12 14:48:03 +01:00
f09c739c1f Be able to create a wrapper for java.
Android is a specific wrapper.
Java is another one.
2020-01-28 12:08:18 +01:00
8095a87bf1 Bump-up version to 8.2.2 and update Changelog 2019-12-08 12:12:39 +01:00
e3c6ca0d1b Bump-up version to 8.2.1 2019-11-26 11:54:39 +01:00
3b7c805183 Bump-up version to 8.2.0 2019-11-20 13:07:28 +01:00
2aebffb27c New version 8.1.0 2019-09-26 15:56:30 +02:00
65ebc7fe7f New version 8.0.1 2019-09-17 16:22:28 +02:00
891666b8c4 new version 8.0.0 2019-09-17 11:47:18 +02:00
49046248fd New version 7.0.0 2019-09-11 14:04:21 +02:00
9e36c876f5 New version 6.0.4 2019-09-10 15:54:15 +02:00
0a331f8ba9 Fix release of 6.0.3. 2019-09-04 11:00:15 +02:00