Skip to content

Commit

Permalink
Fixed issue MR-229 - Integrated PuTTY doesn't work in Windows 8 RP
Browse files Browse the repository at this point in the history
Fixed issue MR-264 - Windows 8 support
  • Loading branch information
rmcardle committed Feb 22, 2013
1 parent 1f776fb commit c29c501
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.TXT
@@ -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
Expand Down
3 changes: 3 additions & 0 deletions mRemoteV1/Connection/Connection.Protocol.PuttyBase.vb
Expand Up @@ -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")
Expand Down

0 comments on commit c29c501

Please sign in to comment.