Skip to content

Commit

Permalink
prepare v0.4.1 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
pinhead84 committed Nov 10, 2015
1 parent 19fbdd9 commit a53e910
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 15 deletions.
8 changes: 2 additions & 6 deletions CHANGELOG.md
Expand Up @@ -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))
Expand Down
4 changes: 2 additions & 2 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion misc/darwin/Info.plist
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>CFBundleShortVersionString</key>
<string>0.5.0</string>
<string>0.4.1</string>

<key>CFBundleExecutable</key>
<string>MacOS/Remote-Support-Tool</string>
Expand Down
10 changes: 5 additions & 5 deletions misc/windows/Version.txt
Expand Up @@ -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.
Expand All @@ -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])])
]
)
2 changes: 1 addition & 1 deletion src/__init__.py
Expand Up @@ -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
Expand Down

0 comments on commit a53e910

Please sign in to comment.