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-08-08 00:14:15 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-08-08 00:14:15 +0300
commit3acc01e2b8adb425a4eab11f73b093f56810eeb5 (patch)
tree510bde9babc691a87da0c8143e3e8b6315a615d4
parentaea1595fabbcef92a97756f67a1ea689455ab9d9 (diff)
release: 1.8.11.8.1
-rw-r--r--ChangeLog43
-rw-r--r--data/org.gajim.Gajim.appdata.xml.in3
-rw-r--r--flatpak/org.gajim.Gajim.yaml2
-rw-r--r--gajim/__init__.py2
4 files changed, 48 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 61d83c577..4c621bbfe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,46 @@
+Gajim 1.8.1 (07 Aug 2023)
+
+ New
+
+ * Add setting for default encryption
+
+ Improvements
+
+ * XMLConsole: Enable browsing sent stanzas in message input (#5403)
+ * Sort cprofile output after total time
+ * Moderation: Handle unknown moderator JID
+ * Preview: Always show preview widget (#11427)
+ * Preview: Add loading placeholder (#11264)
+ * Account page: Show our XMPP address
+
+ Performance
+
+ * Idle: Raise poll interval
+
+ Bug Fixes
+
+ * Search: Don't fail while closing if no chat has been loaded before (#11588)
+ * Dataform: Correctly serialize multi list fields
+ * Profile: Respect avatar/nickname privacy setting on consecutive changes (#11584)
+ * Don’t forget ignored TLS errors from previous connects (#11574)
+ * App menu: Add missing mnemonic for Accounts menu
+ * Gateway: Fix roster method call
+ * Contacts: Fix supports_{audio,video} property
+ * AvatarSelector: Fix crash on reset (#11563)
+ * CertificateBox: Catch exception if cert does not offer extension (#11560)
+ * CreateGroupchatWindow: Improve handling of MUC service availability (#11557)
+ * Preview: Show error if file saving directory is not available (#11558)
+ * SecurityLabels: Display labels for messages received with MAM
+ * DataForm: Handle destroy correctly (#11548)
+ * ChatListRow: Always update group chat name
+ * Fix showing MAM sync errors and show error text
+ * OMEMOTrustManager: React correctly to connection changes (#11547)
+ * Fix interaction of GroupchatRoster and SearchView (#11546)
+ * Init plugin translation module later
+ * GroupchatManage: Improve checks for joined state (#11231)
+ * Search: Restore group chat participants list to previous state when closing search (#11536)
+ * Windows themes: Don't fail hard when winsdk UISettings are not available (#11542)
+
Gajim 1.8.0 (27 May 2023)
New
diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index 9f11a1b97..927207031 100644
--- a/data/org.gajim.Gajim.appdata.xml.in
+++ b/data/org.gajim.Gajim.appdata.xml.in
@@ -74,6 +74,9 @@
<control>pointing</control>
</recommends>
<releases>
+ <release version="1.8.1" date="2023-08-07">
+ <url>https://dev.gajim.org/gajim/gajim/-/releases/1.8.1</url>
+ </release>
<release version="1.8.0" date="2023-05-27">
<url>https://dev.gajim.org/gajim/gajim/-/releases/1.8.0</url>
</release>
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index 42b3ff00d..c7762500e 100644
--- a/flatpak/org.gajim.Gajim.yaml
+++ b/flatpak/org.gajim.Gajim.yaml
@@ -381,7 +381,7 @@ modules:
sources:
- type: git
url: https://dev.gajim.org/gajim/gajim.git
- tag: 1.8.0
+ tag: 1.8.1
- type: file
path: app-overrides.json
post-install:
diff --git a/gajim/__init__.py b/gajim/__init__.py
index 928051ddc..745639602 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,7 +1,7 @@
import sys
from pathlib import Path
-__version__ = '1.8.0'
+__version__ = '1.8.1'
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()