Skip to content

Commit a53e910

Browse files
committed
prepare v0.4.1 for release
1 parent 19fbdd9 commit a53e910

File tree

5 files changed

+11
-15
lines changed

5 files changed

+11
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,8 @@ Changelog for Remote Support Tool
22
=================================
33

44

5-
0.5 (not released yet)
6-
----------------------
7-
8-
9-
0.4.1 (not released yet)
10-
------------------------
5+
0.4.1 (10 Nov 2015)
6+
-------------------
117

128
- translated into Italian (thanks to [Sjd-Risca](https://github.com/Sjd-Risca))
139
- compatibility fixes for PyInstaller 3 (thanks to [Sjd-Risca](https://github.com/Sjd-Risca))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Remote Support Tool 0.5
2-
=======================
1+
Remote Support Tool 0.4.1
2+
=========================
33

44
*Remote Support Tool* is an easy single click solution for remote maintenance via
55
[VNC](https://en.wikipedia.org/wiki/Virtual_Network_Computing) inspired by

misc/darwin/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plist version="1.0">
44
<dict>
55
<key>CFBundleShortVersionString</key>
6-
<string>0.5.0</string>
6+
<string>0.4.1</string>
77

88
<key>CFBundleExecutable</key>
99
<string>MacOS/Remote-Support-Tool</string>

misc/windows/Version.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ VSVersionInfo(
66
ffi=FixedFileInfo(
77
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
88
# Set not needed items to zero 0.
9-
filevers=(0, 5, 0, 0),
10-
prodvers=(0, 5, 0, 0),
9+
filevers=(0, 4, 1, 0),
10+
prodvers=(0, 4, 1, 0),
1111
# Contains a bitmask that specifies the valid bits 'flags'r
1212
mask=0x0,
1313
# Contains a bitmask that specifies the Boolean attributes of the file.
@@ -31,13 +31,13 @@ VSVersionInfo(
3131
u'040904E4',
3232
[StringStruct(u'CompanyName', u'OpenIndex'),
3333
StringStruct(u'FileDescription', u'Open a VNC connection to your desktop for remote maintenance.'),
34-
StringStruct(u'FileVersion', u'0.5.0'),
34+
StringStruct(u'FileVersion', u'0.4.1'),
3535
StringStruct(u'InternalName', u'Remote Support Tool'),
3636
StringStruct(u'LegalCopyright', u'OpenIndex'),
3737
StringStruct(u'OriginalFilename', u'Remote-Support-Tool.exe'),
3838
StringStruct(u'ProductName', u'Remote Support Tool'),
39-
StringStruct(u'ProductVersion', u'0.5.0')])
40-
]),
39+
StringStruct(u'ProductVersion', u'0.4.1')])
40+
]),
4141
VarFileInfo([VarStruct(u'Translation', [1033, 1252])])
4242
]
4343
)

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#
2424

2525
__author__ = 'Andreas Rudolph'
26-
__version__ = '0.5'
26+
__version__ = '0.4.1'
2727
version_info = tuple([int(num) for num in __version__.split('.')])
2828

2929
import gettext

0 commit comments

Comments
 (0)