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-03-11 22:29:35 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-03-11 22:29:35 +0300
commit2b0a1423f8a98647a78b9393719a0543c02d92b6 (patch)
tree34dae5d1603a23d4ab2435ef938a6ed4cf31ce76
parent7d8e24a618fa9bbe3ab18c8ef82f9de9a194677a (diff)
release: 1.7.21.7.2
-rw-r--r--ChangeLog35
-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, 38 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0fe9eeb04..b1d5fd921 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,38 @@
+Gajim 1.7.2 (09 Mar 2023)
+
+ Improvements
+
+ * Declare that the installer is DPI-aware
+ * Windows installer: Add Polish language
+ * Add message menu entry for deleting messages locally
+ * Proxies: Add 'Tor (Browser)' default proxy setting
+ * Windows: Add direct download for Gajim Portable updates
+ * Windows: Offer direct download of Gajim setup when update is available
+ * Select group chat after creating it (#11304)
+ * Don’t color log timestamps
+ * PEPConfig: Ask for confirmation when deleting nodes
+ * Improve get_recent_muc_nicks query
+ * Improve check for message highlight and add tests
+ * Tests: Use in-memory settings database
+ * Add audio/x-wav to default mime types
+ * Audio preview: Allow skipping by clicking the visualization (#11392)
+
+ Bug Fixes
+
+ * Migration: Don’t fail on color setting migration (#11426)
+ * HTTPUpload: Respect infinite file size limit (#11436)
+ * Chatstates: Remove composing timeout correctly
+ * Show chat notifications when chat page is not visible (#11416)
+ * Don't fail if contact name for MUC message is None (#11417)
+ * Notifications: Honor notification_preview_message setting
+ * Fix nickname highlight in group chats (#11413)
+ * Profile: Don't allow saving profile when not connected (#11401)
+ * GetRelativeTimeTest: Fix comparison of translated strings and off-by timezone errors
+ * Don't highlight message if it's an URI containing our nick (#11387)
+ * Nickname completion: Make sure recent nicknames list does not contain None (#11394)
+ * Plugins: Don't fail hard on uninstall errors (#11389)
+ * Start Chat: Fix wrong JID type in _start_new_chat (#11398)
+
Gajim 1.7.1 (08 Feb 2023)
New
diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index b866d432e..f5cbc3dc7 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.2" date="2023-03-11" />
<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" />
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index be012abfa..d980c530b 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.1
+ tag: 1.7.2
- type: file
path: app-overrides.json
post-install:
diff --git a/gajim/__init__.py b/gajim/__init__.py
index 2e93f7f6c..30844ba43 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,7 +1,7 @@
import sys
from pathlib import Path
-__version__ = '1.7.1'
+__version__ = '1.7.2'
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()