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>2023-01-14 13:53:43 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-01-14 13:53:43 +0300
commit64ee81ce6afaadeeb0feb6b5336058b3048245d6 (patch)
treebc8ff2f87f644854c40b986fbf7b39e0516df1a8
parent321b3f3671c9a28d8a614d547e8c2bd440b89ccb (diff)
release: 1.6.11.6.1
-rw-r--r--ChangeLog34
-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, 37 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index dde9713b6..2b5b09d0f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,37 @@
+Gajim 1.6.1 (14 Jan 2023)
+
+ Improvements
+
+ * AdHocCommands: Refresh commands list after completing command (#11356)
+ * Limit message length and add FullMessageWindow
+ * ChatList: Improve timedelta function
+ * CreateGroupchatWindow: Add Advanced switch and always show address entry (#11310)
+ * UX: Make more text labels selectable/enable can-focus for copying (#11336)
+ * AccountPage: Add menu item to deny all subscription requests (#11367)
+ * Account menu: Add Execute Command… entry for convenience
+ * AccountPage: Make all account menu items available (#11329)
+ * AccountPage: Add menu entry for adding contacts
+
+ Change
+
+ * Raise required nbxmpp version
+
+ Bug Fixes
+
+ * Notifications: Fix rare case where Gajim displays notifications for our own messages (#11305)
+ * ServiceDiscoveryWindow: Fix jumping when resizing window (#11239)
+ * Don't fail in mark_as_unread if there are no messages (#11360)
+ * Profile: Fix setting avatar (#11371)
+ * AvatarChooser: Fix file filter for Windows
+ * Audio Preview: Sync clock to make short files play properly on Win
+ * ChatStack DnD: Add workaround for mis-fired drag-motion signal (#11226)
+ * AudioPreview: Make visualization fully RTL compatible again and ensure graph is always drawn
+ * Preview: Handle exceptions while decrypting
+ * Audio Visualizer: Port deprecated methods
+ * AudioPreview: Always format progress time as LTR
+ * AppPage: Differentiate between updates (Gajim/Plugins) (#11363)
+ * GroupChat: Display reason when group chat is destroyed
+
Gajim 1.6.0 (06 Jan 2023)
New
diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index 9776a5cfc..b8f563e1b 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.6.1" date="2023-01-14" />
<release version="1.6.0" date="2023-01-07" />
<release version="1.5.4" date="2022-12-03" />
<release version="1.5.3" date="2022-10-31" />
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index e2ee3dae6..455a374a7 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.6.0
+ tag: 1.6.1
- type: file
path: app-overrides.json
post-install:
diff --git a/gajim/__init__.py b/gajim/__init__.py
index f6cf98a22..be7285af0 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,7 +1,7 @@
import sys
from pathlib import Path
-__version__ = '1.6.0'
+__version__ = '1.6.1'
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()