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-04-04 23:09:46 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-04-04 23:09:46 +0300
commitc533eb8793b7a9a66b89c26208fcc773771f1df3 (patch)
tree2a83d7c7cf0086d095fc75aa01a504c9bcf33565
parent7a4f1d16b928e743731f27694e10e49390af784c (diff)
release: 1.7.31.7.3
-rw-r--r--ChangeLog26
-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, 29 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b1d5fd921..fdad7c034 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,29 @@
+Gajim 1.7.3 (03 Apr 2023)
+
+ New
+
+ * Allow muting chat notifications
+
+ Improvements
+
+ * Make `gemini` URIs clickable
+ * Workspace menu: Always show Mark as read action
+
+ Change
+
+ * Raise nbxmpp version
+
+ Bug Fixes
+
+ * Audio Preview: Set correct pos when clicking into visualizer
+ * Audio Preview: Add delay before pausing on EOS (#11423)
+ * Flatpak: Fix drag and drop (#10370)
+ * GroupChatDetails: Adapt to changed icons
+ * Message input: Fix height for single line messages
+ * Update message merged state after deleting a message (#11438)
+ * ChatActionProcessor: Fix inserting emojis by click (#11445)
+ * Account preferences: Adapt to changed icons
+
Gajim 1.7.2 (09 Mar 2023)
Improvements
diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index f5cbc3dc7..298151daf 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.3" date="2023-04-04" />
<release version="1.7.2" date="2023-03-11" />
<release version="1.7.1" date="2023-02-08" />
<release version="1.7.0" date="2023-02-03" />
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index c8b6fc6c9..34eed8be1 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.2
+ tag: 1.7.3
- type: file
path: app-overrides.json
post-install:
diff --git a/gajim/__init__.py b/gajim/__init__.py
index 30844ba43..856d9c8c2 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,7 +1,7 @@
import sys
from pathlib import Path
-__version__ = '1.7.2'
+__version__ = '1.7.3'
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()