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:
authorYann Leboulanger <asterix@lagaule.org>2018-04-01 19:47:34 +0300
committerYann Leboulanger <asterix@lagaule.org>2018-04-01 19:47:34 +0300
commitc4830bd93c6ec68084425c05965ed07706026397 (patch)
treee252e3d16dff5a61273a541267f3da162b5f237f
parent967f7a403f313fb45062bb9336869a16f3ed2a01 (diff)
prepare 1.0.1 releasegajim-1.0.1
-rw-r--r--ChangeLog13
-rw-r--r--appveyor.yml4
-rw-r--r--gajim/__init__.py2
3 files changed, 16 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index c9a91ac9c..53ba07b6b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+Gajim 1.0.1 (1 April 2018)
+
+ * Improve MAM support
+ * Image preview in file chooser dialog
+ * Groupchat: Set minimize on auto join default True
+ * Delete bookmark when we destroy a room
+ * Fix account deletion
+ * Fix custom font handling
+ * Fix OpenPGP message decryption
+ * Fix window position restore on multi-head setups
+ * Fix scrolling in message window
+ * Improve Windows build and build for 64 bits
+
Gajim 1.0.0 (17 March 2018)
* Ported to GTK3 / Python3
diff --git a/appveyor.yml b/appveyor.yml
index 6970d1d71..786eaff7d 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -30,8 +30,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.0.0-$($env:ARCH)-$($env:TIME_STRING).exe"
- Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim-Portable.exe" -FileName "Gajim-Portable-1.0.0-$($env:ARCH)-$($env:TIME_STRING).exe"
+ Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim.exe" -FileName "Gajim-1.0.1-$($env:ARCH)-$($env:TIME_STRING).exe"
+ Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim-Portable.exe" -FileName "Gajim-Portable-1.0.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/gajim/__init__.py b/gajim/__init__.py
index 6b6062cde..8f6a9878a 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,6 +1,6 @@
import subprocess
-__version__ = "1.0.0"
+__version__ = "1.0.1"
try:
p = subprocess.Popen('git rev-parse --short=12 HEAD', shell=True,