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-01-07 11:56:22 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-01-07 11:56:22 +0300
commitea93fc5d393addcebdd8fa14d4cc4f8a568fec52 (patch)
tree7a776a20b8af916c8a9b184ecfbbb4756d5e3940
parentfc4675b9009d3d3e235c4447178c4011a6f525a0 (diff)
release: 1.6.01.6.0
-rw-r--r--ChangeLog41
-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, 44 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 329917714..dde9713b6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,44 @@
+Gajim 1.6.0 (06 Jan 2023)
+
+ New
+
+ * Allow sending files by copy-pasting them from file managers
+ * Preview: Add audio preview controls and visualization
+ * Resurrect URI-specific context menus
+
+ Improvements
+
+ * Highlight the file when opening containing folder
+ * BaseAvatarChooserDialog: Allow all image types (#11328)
+ * Timestamps: Use date/time format preference in more places (#10948)
+ * AppPage: Show date for last update check
+ * Add dedicated context menu for non-specific URI types
+ * Restore ability to manually disambiguate JID-like addresses
+ * Use the unified Start/Join Chat flow for ?join links
+
+ Change
+
+ * Raise required nbxmpp version to 4.0.0
+ * Depend on Python 3.10
+ * Port to libsoup3
+
+ Bug Fixes
+
+ * CertificateBox: Format serial number in hex (#11335)
+ * MessageActionsBox: Restore emoji button behavior (#11350)
+ * Settings: Add migration for global MUC search api endpoint
+ * AccountWizard: Remove subscriptions after successful login (#11342)
+ * Audio Preview: Fix visuals on EOS while seeking
+ * Audio Preview: Don't let seekbar handle jump to end on EOS when user is seeking
+ * Commands: Attempt to parse only if message can have a command (#11341)
+ * Add missing PyGObject dependency to setup.cfg
+ * Notifications: Use correct nickname for /me messages (#11334)
+ * AvatarSelector: Set default crop scale to 1.0 (#11331)
+ * Menus: Don’t use GLib variant text format parsing (#11331)
+ * Fonts: Fix emoji rendering on MacOS
+ * Remember last folder correctly after sending file
+ * Preview: Don't treat multi-line message body as previewable URL
+
Gajim 1.5.4 (04 Dec 2022)
Improvements
diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index f54705b98..9776a5cfc 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.6.0" date="2023-01-07" />
<release version="1.5.4" date="2022-12-03" />
<release version="1.5.3" date="2022-10-31" />
<release version="1.5.2" date="2022-10-08" />
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index 3bef68599..30a16c044 100644
--- a/flatpak/org.gajim.Gajim.yaml
+++ b/flatpak/org.gajim.Gajim.yaml
@@ -331,7 +331,7 @@ modules:
sources:
- type: git
url: https://dev.gajim.org/gajim/gajim.git
- tag: 1.5.4
+ tag: 1.6.0
- type: file
path: app-overrides.json
post-install:
diff --git a/gajim/__init__.py b/gajim/__init__.py
index a6b66564d..f6cf98a22 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,7 +1,7 @@
import sys
from pathlib import Path
-__version__ = '1.5.4'
+__version__ = '1.6.0'
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()