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-11-06 19:45:07 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-11-06 19:45:07 +0300
commit9983452dc3bfd9c8af7d81a9fef5297772d9c343 (patch)
tree8955805e322bb2d20ae8f968b764b8ec786e6a6c
parentb5f8c88f891a0a0984cd5761663294f3ee43c587 (diff)
release: 1.8.31.8.3
-rw-r--r--ChangeLog24
-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, 29 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ad4b26909..963b96a26 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,27 @@
+Gajim 1.8.3 (06 Nov 2023)
+
+ Improvements
+
+ * Profile: Show error page on errors after saving
+ * Close main window when pressing Escape key (#11543)
+
+ Bug Fixes
+
+ * GroupchatRoster: Display participants correctly on reveal
+ * Filetransfer: Always focus confirm button (#11672)
+ * AccountWizard: Don’t allow multiple anonymous accounts for the same domain
+ * AccountPage: Show anonymous address
+ * Accounts: Don’t try to save password for anonymous accounts
+ * Message row menu: Show quote and copy actions only if there is text (#11652)
+ * Audio/Video: Disable broken stun server code (#11559)
+ * Presence: Don’t fail on unknown MUC presences (#10967)
+ * Control: Add events with correct timestamp (#11670)
+ * Avatar: Send presence after changing avatar (#11669)
+ * ServerInfo: Use domain instead of hostname for queries (#11653)
+ * Emojis: Improve detection of shortcode start (#11594)
+ * DBusFileManager: Set self._proxy attribute on init (#11668)
+ * GroupchatRoster: Check for contact before trying to load roster (#11666)
+
Gajim 1.8.2 (29 Oct 2023)
New
diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index d9c18444b..9f5e03ee3 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.3" date="2023-11-06">
+ <url>https://dev.gajim.org/gajim/gajim/-/releases/1.8.3</url>
+ </release>
<release version="1.8.2" date="2023-10-29">
<url>https://dev.gajim.org/gajim/gajim/-/releases/1.8.2</url>
</release>
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index a0afac4b3..b64becdf9 100644
--- a/flatpak/org.gajim.Gajim.yaml
+++ b/flatpak/org.gajim.Gajim.yaml
@@ -361,7 +361,7 @@ modules:
sources:
- type: git
url: https://dev.gajim.org/gajim/gajim.git
- tag: 1.8.2
+ tag: 1.8.3
- type: file
path: app-overrides.json
post-install:
diff --git a/gajim/__init__.py b/gajim/__init__.py
index abdde8a47..45f2100b7 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,7 +1,7 @@
import sys
from pathlib import Path
-__version__ = '1.8.2'
+__version__ = '1.8.3'
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()