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-10-08 17:54:07 +0300
committerPhilipp Hörist <philipp@hoerist.com>2022-10-08 17:54:07 +0300
commitfe698091044ccc85ffbfd831622383b4af34c903 (patch)
tree2adddfb1987086d6dbc0e3b99802bfb81b5ea194
parenta4c6aacfcbd42b7dc8b8403f7e8ab22d90c8b07d (diff)
release: 1.5.21.5.2
-rw-r--r--ChangeLog57
-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, 60 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7fd7cce65..9e521a4fb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,60 @@
+Gajim 1.5.2 (08 Oct 2022)
+
+ New
+
+ * PEPConfig: Add PEP item view
+ * Add shortcut to restore chats after closing (#11088)
+ * ServerInfo: Add TLS version and cipher suite
+
+ Improvements
+
+ * XMLConsole: Apply account filter to all visible stanzas (#11193)
+ * Features dialog: Simplify statements on Windows
+ * MessageRow: Set text direction for RTL text (#11148)
+ * AvatarSelector: Add border to mark drag and drop zone
+ * Drag and drop: Highlight target areas (#11173)
+ * GroupChatNickCompletion: Simplify suggestions (#11155)
+ * MUC: Add participant menu to avatar
+ * StartChat: Add timeout when requesting MUC disco info
+ * StartChat: Pass message body from XMPP URI (#11140)
+ * Windows: Ellipsize body text in notifications
+ * Emojis: Improve shortcode usability
+ * Avatars: Use PangoCairo for generate_avatar (#10960)
+ * Emojis: Extract codepoints for all emoji variants
+
+ Change
+
+ * Raise nbxmpp version
+ * Show account color bar only when multiple accounts are active
+
+ Performance
+
+ * Remove queue_resize leftover from MessageTextView
+ * SearchView: Update calendar only if widget is visible
+ * SearchView: Speed up clearing of search results (#11158)
+ * Styling: Parse emojis for Darwin only
+
+ Bug Fixes
+
+ * Control: Load events before messages (#11129)
+ * Fix disabling accounts while reconnecting (#11194)
+ * Use custom icon for 'Send Message' action
+ * MessageActionsBox: Don’t fail if no contact is set while updating file actions
+ * Scroll to end after sending message (#10871)
+ * Update chat actions when account state changes (#11184)
+ * StatusIcon: Reset unread state correctly when using Flatpak (#11069)
+ * Notifications: Show correct message sender for MUC notifications (#11177)
+ * Discovery: Don’t allow to join top level components (#11175)
+ * ChatList: Show context menu in correct position (#11165)
+ * Styling: Allow dots in local part of email addresses
+ * ChatList: Set message_id correctly (#11168)
+ * Notifications: React to incoming group chat messages (#11161)
+ * When removing a chat, clear view only if it's currently loaded (#11164)
+ * AccountPage: Disable Ad-Hoc Commands button when offline (#11167)
+ * CreateGroupchatWindow: Fix Create button state when switching MUC type (#11162)
+ * React correctly to UserAvatar updates (#11065)
+ * GajimRemote: Remove not needed shebang
+
Gajim 1.5.1 (19 Sep 2022)
Bug Fixes
diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index 1bf1dc164..7e4d620e1 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.2" date="2022-10-08" />
<release version="1.5.1" date="2022-09-19" />
<release version="1.5.0" date="2022-09-19" />
<release version="1.4.7" date="2022-07-24" />
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index bc340f141..3855a2c8a 100644
--- a/flatpak/org.gajim.Gajim.yaml
+++ b/flatpak/org.gajim.Gajim.yaml
@@ -331,7 +331,7 @@ modules:
sources:
- type: git
url: https://dev.gajim.org/gajim/gajim.git
- tag: 1.5.1
+ tag: 1.5.2
- type: file
path: app-overrides.json
post-install:
diff --git a/gajim/__init__.py b/gajim/__init__.py
index f9873011c..d639cef5d 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,7 +1,7 @@
import sys
from pathlib import Path
-__version__ = '1.5.1'
+__version__ = '1.5.2'
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()