Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2022-12-03 12:20:01 +0300
committerPhilipp Hörist <philipp@hoerist.com>2022-12-03 12:20:01 +0300
commit4d501a607fd4cedfc7befae013486df341669fb3 (patch)
treec74db0ca8a7db80c00536b942cdc2078353d2584
parent12b0a42759ccc86deb32c782a770a69653f408fc (diff)
release: 1.5.41.5.4
-rw-r--r--ChangeLog59
-rw-r--r--data/org.gajim.Gajim.appdata.xml.in1
-rw-r--r--flatpak/org.gajim.Gajim.yaml2
-rw-r--r--gajim/__init__.py2
4 files changed, 62 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b93ad83a..b86d1ceb5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,62 @@
+Gajim 1.5.4 (04 Dec 2022)
+
+ Improvements
+
+ * DataFormWidget: Set min width on right box (#11222)
+ * MUC: Add method for aborting join
+ * Message selection: Imrpove wording for deselecting messages
+ * Message selection: Improve styling
+ * Features: Add entry for Audio Preview
+ * Styling: Introduce URI scheme whitelisting (#11266)
+ * Message selection: Use date_time_format instead of time_format
+ * Settings: Unify timestamp settings (#10948)
+ * Prettify display of geographical locations
+ * ChatList: Scroll to top when switching workspace
+ * Preferences: Improve preview settings
+ * Chatstates: Add a timeout for the "composing" animation
+ * Accounts window: Use equal widths for account switch label
+ * VCardGrid: Linkify all URI-type fields iff they are valid URIs
+ * URI parsing: Detect invalid file URIs earlier
+ * Styling: Validate link syntax deeper and *after* parenthesis correction
+ * Add msg_log_id to live message events (#11263)
+
+ Change
+
+ * Dependencies: Remove pyOpenSSL, add python-cryptography
+ * Jingle: Remove XTLS support (#11160)
+ * Add FileTransferSelector as a central page for sending files (#9511)
+ * Block opening file:/ links by default (#11276)
+
+ Performance
+
+ * Control: Request history more efficiently
+
+ Bug Fixes
+
+ * Preview: Handle multiple simultaneous certificate verification errors
+ * Styling: Linkify URIs only if at the start of a word
+ * MessageInputTextView: Reintroduce gui_extension_point
+ * GUI tests: Adapt GUI tests to Gajim changes
+ * SSLErrorDialog: Fix test, remove OpenSSL usage
+ * ChatFunctionPage: Don't close control on cancelling join error (#11116)
+ * SearchView: Set chat type correctly for ResultRows (#11087)
+ * Chatstates: Switch to Chatstate.ACTIVE after timeout
+ * GroupchatRoster: Set visibility when hiding
+ * MessageActionsBox: Reintroduce gui_extension_point
+ * Preview: Respect MUC context for PMs (#11289)
+ * ConversationView: Fix scrollbar not being the right-most widget
+ * Preview: Stop further processing if decompression bomb detected (#11280)
+ * URI parsing: More robustness with geo URIs
+ * URI parsing: Properly unescape mailto URIs
+ * URI parsing: Properly unescape XMPP URIs and handle unknown query types
+ * MessageInputTextView: Handle is_correcting if no contact is set (#11272)
+ * Fix various issues with chat markers
+ * Plugins: Replace usage of gui_extention_point()
+ * CSS: Fix settings related inconsistencies
+ * CSS: Move overriding rules to bottom (#11269)
+ * Message selection: Don’t fail hard if log_line_id is None (#11263)
+ * Don’t fail when trying to reset last message id
+
Gajim 1.5.3 (31 Oct 2022)
New
diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index a1f2b4416..e3a054e6a 100644
--- a/data/org.gajim.Gajim.appdata.xml.in
+++ b/data/org.gajim.Gajim.appdata.xml.in
@@ -74,6 +74,7 @@
<control>pointing</control>
</recommends>
<releases>
+ <release version="1.5.4" date="2022-12-03" />
<release version="1.5.3" date="2022-10-31" />
<release version="1.5.2" date="2022-10-08" />
<release version="1.5.1" date="2022-09-19" />
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index 959b17cac..b6411e55c 100644
--- a/flatpak/org.gajim.Gajim.yaml
+++ b/flatpak/org.gajim.Gajim.yaml
@@ -321,7 +321,7 @@ modules:
sources:
- type: git
url: https://dev.gajim.org/gajim/gajim.git
- tag: 1.5.3
+ tag: 1.5.4
- type: file
path: app-overrides.json
post-install:
diff --git a/gajim/__init__.py b/gajim/__init__.py
index ac5965f8a..a6b66564d 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,7 +1,7 @@
import sys
from pathlib import Path
-__version__ = '1.5.3'
+__version__ = '1.5.4'
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()