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:
authorlovetox <philipp@hoerist.com>2021-02-07 20:02:42 +0300
committerlovetox <philipp@hoerist.com>2021-02-07 20:02:42 +0300
commit6f0329870288135502b9329422ba27685a7b7faf (patch)
treefa02a5bfefac11cd4ba64b77d8fa2ca7ba82323e
parent749e50f4262374fdc4d7e0f50a640c8034095500 (diff)
-rw-r--r--ChangeLog18
-rw-r--r--appveyor.yml4
-rw-r--r--gajim/__init__.py2
3 files changed, 21 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index cef423d46..0e081f51d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,21 @@
+Gajim 1.3.0 (08 February 2021)
+
+ New
+
+ * Add --gdebug option
+
+ Bug fixes
+
+ * Search also in user data dir for translations
+ * AV: Fix closing chat window while in call
+ * Chat: Don’t unselect text after key press
+ * Profile: Correctly handle not existing vcard
+ * Fix display problems with feather icons
+ * Bookmarks: Check for config-node-max feature
+ * #10401 Fix race condition when removing an account
+ * #10421 Chat: Fix race condition when closing with ESC
+
+
Gajim 1.3.0-beta2 (10 January 2020)
Changes
diff --git a/appveyor.yml b/appveyor.yml
index 67a9318ec..fd89f144b 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -39,8 +39,8 @@ build_script:
bash "git clone C:/projects/gajim C:/msys64/home/appveyor/gajim"
bash "C:/msys64/home/appveyor/gajim/win/build.sh $($env:MSYS_ARCH)"
- Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim.exe" -FileName "Gajim-1.3.0-beta2-$($env:ARCH)-$($env:TIME_STRING).exe"
- Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim-Portable.exe" -FileName "Gajim-Portable-1.3.0-beta2-$($env:ARCH)-$($env:TIME_STRING).exe"
+ Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim.exe" -FileName "Gajim-1.3.0-$($env:ARCH)-$($env:TIME_STRING).exe"
+ Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim-Portable.exe" -FileName "Gajim-Portable-1.3.0-$($env:ARCH)-$($env:TIME_STRING).exe"
# on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
diff --git a/gajim/__init__.py b/gajim/__init__.py
index ea2314b06..cd20ed283 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -2,7 +2,7 @@ import subprocess
import sys
from pathlib import Path
-__version__ = "1.3.0-beta2"
+__version__ = "1.3.0"
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()