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-02-09 00:09:28 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-02-09 00:09:28 +0300
commita600ca7088406bccc28dd33af9c5d4820d386e8a (patch)
tree8eb8b2b630a082b5aeec3eacd379672381484e96
parent1afc701c243cf8aba119218ed3e50831450c79f6 (diff)
release: 1.7.11.7.1
-rw-r--r--ChangeLog24
-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, 27 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ac7929a00..0fe9eeb04 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,27 @@
+Gajim 1.7.1 (08 Feb 2023)
+
+ New
+
+ * Improve KeepassXC Integration
+
+ Improvements
+
+ * MUC: Enable archiving when creating MUCs on ejabberd
+
+ Change
+
+ * Raise nbxmpp version to 4.2.0
+
+ Bug Fixes
+
+ * Apply SASLprep to passwords
+ * Make switching status work again
+
+ Notes
+
+ If you already used KeepassXC with Gajim, enabling the new
+ integration setting will trigger new entries in the password manager
+
Gajim 1.7.0 (03 Feb 2023)
Improvements
diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index 34f80a58a..b866d432e 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.7.1" date="2023-02-08" />
<release version="1.7.0" date="2023-02-03" />
<release version="1.6.1" date="2023-01-14" />
<release version="1.6.0" date="2023-01-07" />
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index 34121e0a7..be012abfa 100644
--- a/flatpak/org.gajim.Gajim.yaml
+++ b/flatpak/org.gajim.Gajim.yaml
@@ -333,7 +333,7 @@ modules:
sources:
- type: git
url: https://dev.gajim.org/gajim/gajim.git
- tag: 1.7.0
+ tag: 1.7.1
- type: file
path: app-overrides.json
post-install:
diff --git a/gajim/__init__.py b/gajim/__init__.py
index 1b090d137..2e93f7f6c 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,7 +1,7 @@
import sys
from pathlib import Path
-__version__ = '1.7.0'
+__version__ = '1.7.1'
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()