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-03-01 19:08:39 +0300
committerlovetox <philipp@hoerist.com>2021-03-01 19:08:43 +0300
commit8000e11adb50a8596d9360e2cbd34d699e0b398e (patch)
treeba6bea08abe2322f71809b9abb88a7d70903eab5
parent8e7d57ee42fb98d553f2e3dfff26d982f3eb3348 (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 fd89f144b..7a3cf1e28 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-$($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"
+ 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"
# 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 614225e32..e0fd469fb 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.1" date="2021-03-01" />
<release version="1.3.0" date="2021-02-08" />
<release version="1.2.2" date="2020-08-15" />
<release version="1.2.1" date="2020-07-08" />
diff --git a/gajim/__init__.py b/gajim/__init__.py
index cd20ed283..2e539f37d 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"
+__version__ = "1.3.1"
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()