From a53e910a2678e654cdc7f442f7db349a096c94e6 Mon Sep 17 00:00:00 2001 From: Andreas Rudolph Date: Tue, 10 Nov 2015 02:09:12 +0100 Subject: [PATCH] prepare v0.4.1 for release --- CHANGELOG.md | 8 ++------ README.md | 4 ++-- misc/darwin/Info.plist | 2 +- misc/windows/Version.txt | 10 +++++----- src/__init__.py | 2 +- 5 files changed, 11 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86b9f33..a46eec5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,8 @@ Changelog for Remote Support Tool ================================= -0.5 (not released yet) ----------------------- - - -0.4.1 (not released yet) ------------------------- +0.4.1 (10 Nov 2015) +------------------- - translated into Italian (thanks to [Sjd-Risca](https://github.com/Sjd-Risca)) - compatibility fixes for PyInstaller 3 (thanks to [Sjd-Risca](https://github.com/Sjd-Risca)) diff --git a/README.md b/README.md index 9f6ad1c..6b46753 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -Remote Support Tool 0.5 -======================= +Remote Support Tool 0.4.1 +========================= *Remote Support Tool* is an easy single click solution for remote maintenance via [VNC](https://en.wikipedia.org/wiki/Virtual_Network_Computing) inspired by diff --git a/misc/darwin/Info.plist b/misc/darwin/Info.plist index 44cfc2f..8c86371 100644 --- a/misc/darwin/Info.plist +++ b/misc/darwin/Info.plist @@ -3,7 +3,7 @@ CFBundleShortVersionString - 0.5.0 + 0.4.1 CFBundleExecutable MacOS/Remote-Support-Tool diff --git a/misc/windows/Version.txt b/misc/windows/Version.txt index c0abd19..f9d108a 100644 --- a/misc/windows/Version.txt +++ b/misc/windows/Version.txt @@ -6,8 +6,8 @@ VSVersionInfo( ffi=FixedFileInfo( # filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4) # Set not needed items to zero 0. - filevers=(0, 5, 0, 0), - prodvers=(0, 5, 0, 0), + filevers=(0, 4, 1, 0), + prodvers=(0, 4, 1, 0), # Contains a bitmask that specifies the valid bits 'flags'r mask=0x0, # Contains a bitmask that specifies the Boolean attributes of the file. @@ -31,13 +31,13 @@ VSVersionInfo( u'040904E4', [StringStruct(u'CompanyName', u'OpenIndex'), StringStruct(u'FileDescription', u'Open a VNC connection to your desktop for remote maintenance.'), - StringStruct(u'FileVersion', u'0.5.0'), + StringStruct(u'FileVersion', u'0.4.1'), StringStruct(u'InternalName', u'Remote Support Tool'), StringStruct(u'LegalCopyright', u'OpenIndex'), StringStruct(u'OriginalFilename', u'Remote-Support-Tool.exe'), StringStruct(u'ProductName', u'Remote Support Tool'), - StringStruct(u'ProductVersion', u'0.5.0')]) - ]), + StringStruct(u'ProductVersion', u'0.4.1')]) + ]), VarFileInfo([VarStruct(u'Translation', [1033, 1252])]) ] ) diff --git a/src/__init__.py b/src/__init__.py index 39070b3..602475f 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -23,7 +23,7 @@ # __author__ = 'Andreas Rudolph' -__version__ = '0.5' +__version__ = '0.4.1' version_info = tuple([int(num) for num in __version__.split('.')]) import gettext