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-04-24 14:27:26 +0300
committerlovetox <philipp@hoerist.com>2021-04-24 14:27:40 +0300
commit19e371c835a1c8b976d0149f28f0d2063d455bc5 (patch)
treea88fcf8ec2d2ba1f07117b6c6bd1f9055f0c1f15
parentafca14f15e97d2446a5c17830d2a0ea01dc19157 (diff)
-rw-r--r--appveyor.yml4
-rw-r--r--data/org.gajim.Gajim.appdata.xml.in1
-rw-r--r--gajim/__init__.py2
3 files changed, 4 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml
index f4b068dd1..49a5e3541 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -40,8 +40,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.1-$($env:ARCH)-$($env:TIME_STRING).exe"
- Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim-Portable.exe" -FileName "Gajim-Portable-1.3.1-$($env:ARCH)-$($env:TIME_STRING).exe"
+ Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim.exe" -FileName "Gajim-1.3.2-$($env:ARCH)-$($env:TIME_STRING).exe"
+ Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim-Portable.exe" -FileName "Gajim-Portable-1.3.2-$($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/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index e0fd469fb..47c46b837 100644
--- a/data/org.gajim.Gajim.appdata.xml.in
+++ b/data/org.gajim.Gajim.appdata.xml.in
@@ -72,6 +72,7 @@
<content_attribute id="social-audio">intense</content_attribute>
</content_rating>
<releases>
+ <release version="1.3.2" date="2021-04-24" />
<release version="1.3.1" date="2021-03-01" />
<release version="1.3.0" date="2021-02-08" />
<release version="1.2.2" date="2020-08-15" />
diff --git a/gajim/__init__.py b/gajim/__init__.py
index 2e539f37d..efcef6baf 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -2,7 +2,7 @@ import subprocess
import sys
from pathlib import Path
-__version__ = "1.3.1"
+__version__ = "1.3.2"
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()