mirror of
https://github.com/kiwix/kiwix-desktop.git
synced 2025-09-22 11:37:56 -04:00
Merge pull request #766 from kiwix/version_2.1.0
This commit is contained in:
commit
2a612422e7
33
ChangeLog
33
ChangeLog
@ -1,3 +1,36 @@
|
||||
kiwix-desktop 2.1.0
|
||||
===================
|
||||
|
||||
* Add a IPChooser in the server dialog windows and display a best IP address
|
||||
on which the user can connect to (@juuz0 #735)
|
||||
* Open multiple zim files from the command line (@juuz0 #720)
|
||||
* Setting's zoom level change the zoom in all open tabs (@juuz0 #719)
|
||||
* Properly display back and forward buttons on RTL environment (@juuz0 #721)
|
||||
* Open new tabs just after the current tab (@juuz0 #716)
|
||||
* Always open new url in background (@juuz0 #717)
|
||||
* Make the server follow modification made in the library (@veloman-yunkan #714)
|
||||
* Improved setting tab (@juuz0 #696)
|
||||
* Display the shortcut of the action in its tootips (@juuz0 #682)
|
||||
* Limit zoom changes to the current tab only (@juuz0 #689)
|
||||
* Make the server use human-friendly name for zim files (@MananJethwany #676)
|
||||
* Fix tooltips' position (@kelson42 #672)
|
||||
* Improved server dialog (@HanYoung-uwu #638)
|
||||
* Add shortcuts to navigate in web history :
|
||||
- `BackButton`/`ForwardButton` (mouse buttons) (@Goutte #646)
|
||||
- `Alt+Left`/`Alt+Right` (@kelson42 #621)
|
||||
* Add `--version` and `--help` options (@HanYoung-uwu #631)
|
||||
* Fix file dialog style on Windows (@HanYoung-uwu #634)
|
||||
* Fix search result pagination (@maneeshpm #628)
|
||||
* Add shortcut `Alt + <digit>` to switch between tabs (@rishabh-soni #567)
|
||||
* Fix fade-out tab when title is too long (@asashnov #573)
|
||||
* Use secure connection (https) when possible (@kelson42 #589)
|
||||
* Apply language filter to local library (@HanYoung-uwu #581)
|
||||
* Make `Search` and `Main Menu` buttons visible to screen reader (@asashnov #583)
|
||||
* Fix print support (@Ambrevar #557)
|
||||
* Adpat to new libkiwix 10.0.0 API
|
||||
* New SVG logo (@kelson42 #539)
|
||||
* Various fixes (@legoktm @HanYoung-uwu @Saket-07 @rishabh-soni @asashnov @manneshpm @MananJethwany)
|
||||
|
||||
kiwix-desktop 2.0.5
|
||||
===================
|
||||
|
||||
|
@ -18,7 +18,7 @@ TEMPLATE = app
|
||||
QMAKE_CXXFLAGS += -std=c++11
|
||||
QMAKE_LFLAGS += -std=c++11
|
||||
|
||||
DEFINES += VERSION="2.0.5"
|
||||
DEFINES += VERSION="2.1.0"
|
||||
|
||||
# The following define makes your compiler emit warnings if you use
|
||||
# any feature of Qt which has been marked as deprecated (the exact warnings
|
||||
@ -153,12 +153,12 @@ unix {
|
||||
INSTALLS += mime_file
|
||||
}
|
||||
|
||||
PKGCONFIG_CFLAGS = $$system(pkg-config --cflags $$PKGCONFIG_OPTION kiwix)
|
||||
PKGCONFIG_CFLAGS = $$system(pkg-config --cflags $$PKGCONFIG_OPTION \"kiwix >= 10.0.0 libzim >= 7.2.0\")
|
||||
|
||||
QMAKE_CXXFLAGS += $$PKGCONFIG_CFLAGS
|
||||
QMAKE_CFLAGS += $$PKGCONFIG_CFLAGS
|
||||
|
||||
LIBS += $$system(pkg-config --libs $$PKGCONFIG_OPTION kiwix)
|
||||
LIBS += $$system(pkg-config --libs $$PKGCONFIG_OPTION \"kiwix >= 10.0.0 libzim >= 7.2.0\")
|
||||
|
||||
RESOURCES += \
|
||||
resources/kiwix.qrc \
|
||||
|
@ -38,7 +38,7 @@ for json in translation_dir.glob("*.json"):
|
||||
if node is not None:
|
||||
node.tail += " " * 8
|
||||
node = ET.SubElement(qresource, "file")
|
||||
node.text = str(json)
|
||||
node.text = str(json.relative_to(script_path.parent))
|
||||
node.tail = "\n"
|
||||
|
||||
node.tail += " "*4
|
||||
|
@ -13,7 +13,7 @@
|
||||
</p>
|
||||
</description>
|
||||
<releases>
|
||||
<release version="2.0.5" date="2020-11-17" />
|
||||
<release version="2.1.0" date="2022-01-19" />
|
||||
</releases>
|
||||
<content_rating type="oars-1.0" />
|
||||
<launchable type="desktop-id">org.kiwix.desktop.desktop</launchable>
|
||||
|
@ -1,47 +1,56 @@
|
||||
<?xml version='1.0' encoding='utf8'?>
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>i18n/hi.json</file>
|
||||
<file>i18n/zh-hans.json</file>
|
||||
<file>i18n/nl.json</file>
|
||||
<file>i18n/ca.json</file>
|
||||
<file>i18n/ja.json</file>
|
||||
<file>i18n/ru.json</file>
|
||||
<file>i18n/he.json</file>
|
||||
<file>i18n/roa-tara.json</file>
|
||||
<file>i18n/sr-ec.json</file>
|
||||
<file>i18n/en.json</file>
|
||||
<file>i18n/mk.json</file>
|
||||
<file>i18n/id.json</file>
|
||||
<file>i18n/pl.json</file>
|
||||
<file>i18n/eo.json</file>
|
||||
<file>i18n/qqq.json</file>
|
||||
<file>i18n/ar.json</file>
|
||||
<file>i18n/de.json</file>
|
||||
<file>i18n/es.json</file>
|
||||
<file>i18n/tr.json</file>
|
||||
<file>i18n/ko.json</file>
|
||||
<file>i18n/fa.json</file>
|
||||
<file>i18n/cs.json</file>
|
||||
<file>i18n/bn.json</file>
|
||||
<file>i18n/skr-arab.json</file>
|
||||
<file>i18n/hy.json</file>
|
||||
<file>i18n/sc.json</file>
|
||||
<file>i18n/diq.json</file>
|
||||
<file>i18n/gsw.json</file>
|
||||
<file>i18n/ro.json</file>
|
||||
<file>i18n/fr.json</file>
|
||||
<file>i18n/io.json</file>
|
||||
<file>i18n/zh-hant.json</file>
|
||||
<file>i18n/da.json</file>
|
||||
<file>i18n/zgh.json</file>
|
||||
<file>i18n/it.json</file>
|
||||
<file>i18n/br.json</file>
|
||||
<file>i18n/uk.json</file>
|
||||
<file>i18n/fi.json</file>
|
||||
<file>i18n/hi.json</file>
|
||||
<file>i18n/id.json</file>
|
||||
<file>i18n/skr-arab.json</file>
|
||||
<file>i18n/zgh.json</file>
|
||||
<file>i18n/ar.json</file>
|
||||
<file>i18n/bn.json</file>
|
||||
<file>i18n/ca.json</file>
|
||||
<file>i18n/cs.json</file>
|
||||
<file>i18n/da.json</file>
|
||||
<file>i18n/gsw.json</file>
|
||||
<file>i18n/ie.json</file>
|
||||
<file>i18n/ms.json</file>
|
||||
<file>i18n/roa-tara.json</file>
|
||||
<file>i18n/sv.json</file>
|
||||
<file>i18n/eo.json</file>
|
||||
<file>i18n/hy.json</file>
|
||||
<file>i18n/pt-br.json</file>
|
||||
<file>i18n/pt.json</file>
|
||||
<file>i18n/de.json</file>
|
||||
<file>i18n/ja.json</file>
|
||||
<file>i18n/my.json</file>
|
||||
<file>i18n/ro.json</file>
|
||||
<file>i18n/sc.json</file>
|
||||
<file>i18n/ta.json</file>
|
||||
<file>i18n/diq.json</file>
|
||||
<file>i18n/ku-latn.json</file>
|
||||
<file>i18n/pl.json</file>
|
||||
<file>i18n/qqq.json</file>
|
||||
<file>i18n/en.json</file>
|
||||
<file>i18n/es.json</file>
|
||||
<file>i18n/fa.json</file>
|
||||
<file>i18n/fi.json</file>
|
||||
<file>i18n/fr.json</file>
|
||||
<file>i18n/he.json</file>
|
||||
<file>i18n/io.json</file>
|
||||
<file>i18n/it.json</file>
|
||||
<file>i18n/ko.json</file>
|
||||
<file>i18n/lb.json</file>
|
||||
<file>i18n/mk.json</file>
|
||||
<file>i18n/nl.json</file>
|
||||
<file>i18n/ru.json</file>
|
||||
<file>i18n/scn.json</file>
|
||||
<file>i18n/sk.json</file>
|
||||
<file>i18n/sq.json</file>
|
||||
<file>i18n/sr-ec.json</file>
|
||||
<file>i18n/th.json</file>
|
||||
<file>i18n/tr.json</file>
|
||||
<file>i18n/uk.json</file>
|
||||
<file>i18n/zh-hans.json</file>
|
||||
<file>i18n/zh-hant.json</file>
|
||||
</qresource>
|
||||
</RCC>
|
Loading…
x
Reference in New Issue
Block a user