Skip to content
Snippets Groups Projects
Commit 6f032987 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

1.3.0

parent 749e50f4
No related branches found
Tags gajim-1.3.0
No related merge requests found
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) Gajim 1.3.0-beta2 (10 January 2020)
Changes Changes
......
...@@ -39,8 +39,8 @@ build_script: ...@@ -39,8 +39,8 @@ build_script:
bash "git clone C:/projects/gajim C:/msys64/home/appveyor/gajim" bash "git clone C:/projects/gajim C:/msys64/home/appveyor/gajim"
bash "C:/msys64/home/appveyor/gajim/win/build.sh $($env:MSYS_ARCH)" 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.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-beta2-$($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: # on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
import sys import sys
from pathlib import Path from pathlib import Path
__version__ = "1.3.0-beta2" __version__ = "1.3.0"
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists() IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment