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:
authorwurstsalat <mailtrash@posteo.de>2022-07-24 21:01:45 +0300
committerwurstsalat <mailtrash@posteo.de>2022-07-24 21:01:45 +0300
commit646f5c2b77bb19aa4676c8c001b61b492196c4c3 (patch)
tree35fa778e04588bd60649ded9c43e921c3b534839
parent1b53c5713b2b2025c741973aa715654b7d928906 (diff)
release: 1.4.71.4.7
-rw-r--r--ChangeLog34
-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, 37 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 706a07688..853b9aba4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,37 @@
+Gajim 1.4.7 (24 Jul 2022)
+
+ Improvements
+
+ * Startup: Show hint in console if Gajim is already running (#11039)
+ * Preview: Add setting to disable file preview (#10991)
+ * Roster: Display show value in tooltip (#11010)
+ * ChatActionProcessor: Improve detection of emoji shortcode start
+
+ Performance
+
+ * Roster: Don’t invalidate filter on contact update
+ * Roster: Sort more efficiently
+
+ Bug Fixes
+
+ * Settings migration: Don’t fail on missing proxies key (#11050)
+ * Chat Markers: Don’t send marker for outgoing messages (#11043)
+ * Main Window: Move to stored position on startup
+ * Preview: Allow manual download for all mime types (#11044)
+ * GroupchatInfo: Don’t set subject when loading from disco info (#11040)
+ * Preview: Hide download hint if we sent the file (#11036)
+ * Flatpak: Fix display of tray icon using libappindicator (#10869)
+ * Remote: Console scripts need a method as entry point (#11034)
+ * CodeWidget: Don’t default to python for highlighting (#11012)
+ * ContactInfo: Preserve groups when changing contact name (#11028)
+ * CodeWidget: Don't highlight matching brackets (#11026)
+ * StatusIcon: Don’t lose new message icon on state change (#11013)
+ * GtkStatusIcon: Always show when Gajim has not toplevel focus
+ * GroupChatNickCompletion: Only process Tab press
+ * Notifications: Change Gdk window hints on Windows (#11008)
+ * MessageRow: Align name label correctly
+ * StatusIcon: Fix logic error on activate
+
Gajim 1.4.6 (07 Jul 2022)
Improvements
diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index 180efea7f..82ea9cad0 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.4.7" date="2022-07-24" />
<release version="1.4.6" date="2022-07-07" />
<release version="1.4.5" date="2022-06-21" />
<release version="1.4.4" date="2022-06-18" />
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index cb8c5d3b4..d70eb5646 100644
--- a/flatpak/org.gajim.Gajim.yaml
+++ b/flatpak/org.gajim.Gajim.yaml
@@ -317,7 +317,7 @@ modules:
sources:
- type: git
url: https://dev.gajim.org/gajim/gajim.git
- tag: 1.4.6
+ tag: 1.4.7
- type: file
path: app-overrides.json
post-install:
diff --git a/gajim/__init__.py b/gajim/__init__.py
index 5a4210115..36538561f 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,7 +1,7 @@
import sys
from pathlib import Path
-__version__ = '1.4.6'
+__version__ = '1.4.7'
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()