Skip to content

Commit 8bc137e

Browse files
committed
prepare v0.5.1 for release
1 parent f3cfc6b commit 8bc137e

File tree

7 files changed

+20
-18
lines changed

7 files changed

+20
-18
lines changed

CHANGELOG.md

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

4-
0.6 (not released yet)
5-
----------------------
4+
0.5.1 (08 Oct 2018)
5+
-------------------
66

77
- update to OpenSSH 7.8p1-1 for Windows Vista and newer
88
- update to TightVNC 2.8.11
99
- update to OSXvnc 5.2.1
10-
- provide a signed application bundle for macOS
1110

1211

1312
0.5 (16 Jan 2017)

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.6
2-
=======================
1+
Remote Support Tool 0.5.1
2+
=========================
33

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

init.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
# project settings
1515
set PROJECT "RemoteSupportTool"
16-
set VERSION "0.6"
17-
set AUTHOR_NAME "OpenIndex"
16+
set VERSION "0.5.1"
17+
set AUTHOR_NAME "OpenIndex.de"
1818
set AUTHOR_EMAIL "[email protected]"
1919

2020
# preferred applications

misc/darwin/Info.plist

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@
99
</dict>
1010

1111
<key>CFBundleShortVersionString</key>
12-
<string>0.6.0</string>
12+
<string>0.5.1</string>
1313

1414
<key>CFBundleExecutable</key>
1515
<string>MacOS/application</string>
1616

17+
<key>CFBundleIdentifier</key>
18+
<string>de.openindex.support.tool</string>
19+
1720
<key>CFBundleName</key>
1821
<string>Remote-Support-Tool</string>
1922

@@ -42,6 +45,6 @@
4245
<true/>
4346

4447
<key>LSMinimumSystemVersion</key>
45-
<string>10.5.0</string>
48+
<string>10.11.0</string>
4649
</dict>
4750
</plist>

misc/windows/application.rc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
1 VERSIONINFO
3-
FILEVERSION 0,6,0,0
4-
PRODUCTVERSION 0,6,0,0
3+
FILEVERSION 0,5,1,0
4+
PRODUCTVERSION 0,5,1,0
55
FILEOS 0x4
66
FILETYPE 0x1
77
{
@@ -10,12 +10,12 @@ BLOCK "StringFileInfo"
1010
BLOCK "040904b0"
1111
{
1212
VALUE "FileDescription", "Remote Support Tool"
13-
VALUE "OriginalFilename", "RemoteSupportTool-0.6.exe"
13+
VALUE "OriginalFilename", "RemoteSupportTool-0.5.1.exe"
1414
VALUE "CompanyName", "OpenIndex.de"
15-
VALUE "FileVersion", "0.6.0"
16-
VALUE "LegalCopyright", "Copyright © 2015-2017 OpenIndex"
15+
VALUE "FileVersion", "0.5.1"
16+
VALUE "LegalCopyright", "Copyright © 2015-2018 OpenIndex"
1717
VALUE "ProductName", "Remote Support Tool"
18-
VALUE "ProductVersion", "0.6.0"
18+
VALUE "ProductVersion", "0.5.1"
1919
}
2020
}
2121

src/lib/app-support/pkgIndex.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
# THE SOFTWARE.
2222
#
2323

24-
package ifneeded app-support 0.6 "\
24+
package ifneeded app-support 0.5.1 "\
2525
source -encoding utf-8 \[file join [list $dir] support.tcl\] ; \
2626
source -encoding utf-8 \[file join [list $dir] config.tcl\] ; \
2727
source -encoding utf-8 \[file join [list $dir] gui.tcl\] ; \
2828
source -encoding utf-8 \[file join [list $dir] session.tcl\] ; \
2929
source -encoding utf-8 \[file join [list $dir] utils.tcl\] ; \
30-
package provide app-support 0.6"
30+
package provide app-support 0.5.1"

src/main.tcl

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

2424
# Set application version.
2525
# Make sure to update lib/app-support/pkgIndex.tcl, if the version is changed.
26-
set _APP_VERSION "0.6"
26+
set _APP_VERSION "0.5.1"
2727

2828
# Set type of application.
2929
# If the starkit namespace is available, we're assuming the application was

0 commit comments

Comments
 (0)