Fixed issue MR-229 - Integrated PuTTY doesn't work in Windows 8 RP

Fixed issue MR-264 - Windows 8 support
This commit is contained in:
Riley McArdle
2013-02-21 23:58:04 -06:00
parent 1f776fb9bf
commit c29c5015d5
2 changed files with 5 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
Fixed issue MR-183 - Error trying to save connections when using SQL - Invalid column name _parentConstantId
Fixed issue MR-225 - Tabs do not open in a panel until multiple panels are displayed.
Fixed issue MR-229 - Integrated PuTTY doesn't work in Windows 8 RP
Fixed issue MR-264 - Windows 8 support
Fixed issue MR-317 - Difficulty right-clicking on Tab
Fixed issue MR-318 - Wrong tab gets selected when tab names overflow on the tab bar
Fixed issue MR-321 - New connection panel doesn't get panel header if its the only one or is moved

View File

@@ -265,6 +265,9 @@ Namespace Connection
End Function
Public Shared Function IsFilePuttyNg(file As String) As Boolean
' PuTTYNG enhancements are not yet compatible with Windows 8
If Environment.OSVersion.Version.CompareTo(New Version(6, 2)) >= 0 Then Return False
Dim isPuttyNg As Boolean
Try
isPuttyNg = FileVersionInfo.GetVersionInfo(file).InternalName.Contains("PuTTYNG")