mirror of https://github.com/kiwix/libkiwix.git
Merge pull request #699 from kiwix/br_10.0.1
This commit is contained in:
commit
ce24b1fa5f
16
ChangeLog
16
ChangeLog
|
@ -1,3 +1,19 @@
|
||||||
|
libkiwix 10.0.1
|
||||||
|
===============
|
||||||
|
|
||||||
|
* [server] The catalog search interpret `count=0` as no limit.
|
||||||
|
This was the case for a long time. This was changed unintentionally
|
||||||
|
(@veloman-yunkan #686)
|
||||||
|
* [server] Correctly generere a human friendly title in the server frontend.
|
||||||
|
(@juuz0 #687, @kelson42 #689)
|
||||||
|
* [server] Fix download button if there is no url do download from.
|
||||||
|
(@juuz0 #691)
|
||||||
|
* Add non-minified isotope.pkdg.js
|
||||||
|
Needed for debian packaging as we need the source and minified version is
|
||||||
|
not the source (@legoktm #693)
|
||||||
|
* [server] Add a tooltip with the full language for the lang tag.
|
||||||
|
* CI fixes (@kelson42 @legoktm)
|
||||||
|
|
||||||
libkiwix 10.0.0
|
libkiwix 10.0.0
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ task writePom {
|
||||||
project {
|
project {
|
||||||
groupId 'org.kiwix.kiwixlib'
|
groupId 'org.kiwix.kiwixlib'
|
||||||
artifactId 'kiwixlib'
|
artifactId 'kiwixlib'
|
||||||
version '10.0.0' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION)
|
version '10.0.1' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION)
|
||||||
packaging 'aar'
|
packaging 'aar'
|
||||||
name 'kiwixlib'
|
name 'kiwixlib'
|
||||||
url 'https://github.com/kiwix/libkiwix'
|
url 'https://github.com/kiwix/libkiwix'
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('libkiwix', 'cpp',
|
project('libkiwix', 'cpp',
|
||||||
version : '10.0.0', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle
|
version : '10.0.1', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle
|
||||||
license : 'GPLv3+',
|
license : 'GPLv3+',
|
||||||
default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
|
default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue