Skip to content

Commit

Permalink
Release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hugolabe committed Dec 4, 2023
1 parent a586c57 commit 1dfa921
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions data/com.github.hugolabe.Wike.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,21 @@
</screenshots>

<releases>
<release version="2.1.0" date="2023-12-04">
<description translatable="no">
<ul>
<li>Added an option to clear personal data on exit.</li>
<li>Added an option to restore open articles on start.</li>
<li>Enabled navigation with gestures and mouse buttons 8 and 9.</li>
<li>Tab overview can now also be used in desktop mode.</li>
<li>History items can now be deleted individually.</li>
<li>Minor UI changes.</li>
<li>Added Ukrainian, Urdu and Occitan translations.</li>
<li>Updated many translations.</li>
<li>Bug fixes.</li>
</ul>
</description>
</release>
<release version="2.0.1" date="2023-04-23">
<description translatable="no">
<ul>
Expand Down
2 changes: 1 addition & 1 deletion data/ui/about.ui
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
<property name="application-icon">com.github.hugolabe.Wike</property>
<property name="application-name">Wike</property>
<property name="developer-name">Hugo Olabera</property>
<property name="version">2.0.1</property>
<property name="version">2.1.0</property>
<property name="comments" translatable="yes">Search and read Wikipedia articles</property>
<property name="website">https://hugolabe.github.io/Wike/</property>
<property name="translator-credits" translatable="yes">translator-credits</property>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('wike',
version: '2.0.1',
version: '2.1.0',
license: 'GPL3+',
meson_version: '>= 0.50.0',
default_options: [ 'warning_level=2', ],
Expand Down
2 changes: 1 addition & 1 deletion src/wikipedia.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def get_properties(page, lang):

def _request(api, params):
global _session
headers = { 'User-Agent': 'Wike/2.0.1 (https://github.com/hugolabe)' }
headers = { 'User-Agent': 'Wike/2.1.0 (https://github.com/hugolabe)' }

if type(params) is dict:
response = _session.get(url=api, params=params, headers=headers, timeout=(4, 12))
Expand Down

0 comments on commit 1dfa921

Please sign in to comment.