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-10-09 22:40:08 +0300
committerlovetox <philipp@hoerist.com>2021-10-09 22:40:08 +0300
commitb5b2ad4aee92074184b181ec97fbf1f900d5f4fb (patch)
tree533c7b1f4f4e3e0092d028a1ecbd5f542df0187c
parentebf1e86e3af041b14769dda1f1115f3a2edff999 (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 49a5e3541..bbb4f7754 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.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"
+ Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim.exe" -FileName "Gajim-1.3.3-$($env:ARCH)-$($env:TIME_STRING).exe"
+ Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim-Portable.exe" -FileName "Gajim-Portable-1.3.3-$($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 47c46b837..99c63f87a 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.3" date="2021-10-10" />
<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" />
diff --git a/gajim/__init__.py b/gajim/__init__.py
index efcef6baf..a0110f81f 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -2,7 +2,7 @@ import subprocess
import sys
from pathlib import Path
-__version__ = "1.3.2"
+__version__ = "1.3.3"
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()