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-31 14:09:16 +0300
committerPhilipp Hörist <philipp@hoerist.com>2022-10-31 14:09:16 +0300
commit2de8d949ea398e5293190185db94fd701c0c6f6e (patch)
treeb7621fe51cbd9e5c3cfbbec4618612dc7e57b3d9
parent4f803a35a45861e7c812854e90e59bb763a986b7 (diff)
release: 1.5.31.5.3
-rw-r--r--ChangeLog74
-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, 77 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9e521a4fb..2b93ad83a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,77 @@
+Gajim 1.5.3 (31 Oct 2022)
+
+ New
+
+ * Allow to copy multiple messages
+ * Accounts: Add setting for default workspace (#11208)
+
+ Improvements
+
+ * Preferences: Add send_on_ctrl_enter setting (#11242)
+ * Add actions menu to Start Chat button (#11241)
+ * ExceptionDialog: Close dialog with ESC
+ * ChatList: Show drafts
+ * StartChat: Recognize input of xmpp uris
+ * Workspaces: Add 'Mark as read' menu item (#11198)
+ * Improve emoji completion
+ * ACE: Enable reset button only for changed values
+ * Avatar: Follow modernxmpps suggestions for color generation
+
+ Change
+
+ * Raise nbxmpp version
+ * Preferences: Add escape_key_closes to "Chat" section
+ * Preferences: Reorder "Chat" settings and add a "General" section
+ * Preferences: Move show_chatstate_in_banner to ACE settings
+ * Remove confirm_paste_image setting
+ * Remove setting to hide the chat banner
+
+ Performance
+
+ * GroupchatRoster: Don’t load roster when its hidden
+ * Emoji completion: Abort early if max menu entry count reached
+
+ Bug Fixes
+
+ * Disable loading of GUPnPIgd library (#11183)
+ * Remote: Make get_status() return correct status when offline
+ * Plugins: Use correct gettext import
+ * Make strings translatable
+ * Enable emoji chooser action
+ * AvatarBox: Only react to clicks for GroupchatContacts
+ * Remote: Return True for change_status
+ * ChatActionProcessor: Popdown on focus out event (#11254)
+ * Avatar placeholders: Correctly use the first grapheme as the "letter"
+ * Fix quoting /me messages (#11224)
+ * StartChat: Don’t use jid argument for global dialog
+ * Try leaving group chat only if account is online (#11247)
+ * AccountPage: Disable profile button when not connected (#11249)
+ * MUC: Allow changing subject if there is none (#11250)
+ * PluginsWindow: Fix typo in plugin tooltip
+ * PluginManager: Block plugins which have been integrated into Gajim (#11244)
+ * MessageInputTextView: Fix correction mode when switching chats (#11213)
+ * AdHoc: Make MultiLineLabel selectable
+ * Settings: Check if account is connected before trying to get context (#11243)
+ * Styling: Various link parsing issues (#11218#11144)
+ * Windows build: Remove build time package remnants (#11234)
+ * Send message icon: Increase line width and make icon symbolic
+ * Accounts: Use account label for disable confirmation
+ * AccountBadge: Update colors correctly
+ * Update account label when changing label setting (#11238)
+ * SearchView: Scroll to to when resetting (#11240)
+ * Notification: Draw avatar correctly on scale > 1 (#11229)
+ * Preview: Don’t fail hard when parsing fragments
+ * PreviewAudio: Increase update rate for seek bar (#11215)
+ * AccountPage: Disable Excute Command button by default (#11216)
+ * Client: Load trusted certificates on connect() (#11220)
+ * ChatList: Don’t increase in width while drag and drop
+ * Roster: Always show workspace when starting chat
+ * WorkspaceSidebar: Don't increase in width while drag and drop (#11210)
+ * ChatFunctionPage: React to connection changes (#11206)
+ * Preview: Set user-agent for session (#11205)
+ * SearchView: Limit displayed results to account_id of contact
+ * Don’t fail when disabling accounts (#11199)
+
Gajim 1.5.2 (08 Oct 2022)
New
diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index 7e4d620e1..a1f2b4416 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.3" date="2022-10-31" />
<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" />
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index 321a3524d..b8d4d1c8a 100644
--- a/flatpak/org.gajim.Gajim.yaml
+++ b/flatpak/org.gajim.Gajim.yaml
@@ -330,7 +330,7 @@ modules:
sources:
- type: git
url: https://dev.gajim.org/gajim/gajim.git
- tag: 1.5.2
+ tag: 1.5.3
- type: file
path: app-overrides.json
post-install:
diff --git a/gajim/__init__.py b/gajim/__init__.py
index d639cef5d..ac5965f8a 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,7 +1,7 @@
import sys
from pathlib import Path
-__version__ = '1.5.2'
+__version__ = '1.5.3'
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()