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-02-03 02:44:55 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-02-03 02:44:55 +0300
commita95e69664e0695f35fb818c145841af3908cdce6 (patch)
tree1b4491a26f36418a97ddae4f68e90aebc5d27274
parentc1a77f458ba8a762e2d62dbb6c30cf4318ae2810 (diff)
release: 1.7.01.7.0
-rw-r--r--ChangeLog23
-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, 26 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b5b09d0f..ac7929a00 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,26 @@
+Gajim 1.7.0 (03 Feb 2023)
+
+ Improvements
+
+ * Preferences: Add 0 and 25 MiB to preview size settings (#11385)
+ * Account wizard: Don't allow to add account twice
+
+ Change
+
+ * Port to pyproject.toml
+
+ Bug Fixes
+
+ * Fix loading localised emojis
+ * HTTPUpload: Don’t cache temp path (#11373)
+ * JingleAudio: Always resample audio before processing with webrtcdsp (#11023)
+ * Disable legacy ciphers in cryptography
+
+ Notes
+
+ The port to pyproject.toml brings changes about how to package Gajim.
+ Please read the README to find all information about metadata generation.
+
Gajim 1.6.1 (14 Jan 2023)
Improvements
diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index b8f563e1b..34f80a58a 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.0" date="2023-02-03" />
<release version="1.6.1" date="2023-01-14" />
<release version="1.6.0" date="2023-01-07" />
<release version="1.5.4" date="2022-12-03" />
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index 28ca7db0b..1a4839ea9 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.6.1
+ tag: 1.7.0
- type: file
path: app-overrides.json
post-install:
diff --git a/gajim/__init__.py b/gajim/__init__.py
index be7285af0..1b090d137 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,7 +1,7 @@
import sys
from pathlib import Path
-__version__ = '1.6.1'
+__version__ = '1.7.0'
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()