diff --git a/Installer/Dependencies/PuTTYNG.exe b/Installer/Dependencies/PuTTYNG.exe new file mode 100644 index 00000000..09d4fbaf Binary files /dev/null and b/Installer/Dependencies/PuTTYNG.exe differ diff --git a/Installer/Dependencies/putty.exe b/Installer/Dependencies/putty.exe deleted file mode 100644 index c32d3615..00000000 Binary files a/Installer/Dependencies/putty.exe and /dev/null differ diff --git a/mRemoteV1/Config/Config.Settings.Load.vb b/mRemoteV1/Config/Config.Settings.Load.vb index 5fab6623..3f354529 100644 --- a/mRemoteV1/Config/Config.Settings.Load.vb +++ b/mRemoteV1/Config/Config.Settings.Load.vb @@ -84,7 +84,7 @@ Namespace Config If My.Settings.UseCustomPuttyPath Then Connection.Protocol.PuttyBase.PuttyPath = My.Settings.CustomPuttyPath Else - Connection.Protocol.PuttyBase.PuttyPath = My.Application.Info.DirectoryPath & "\Putty.exe" + Connection.Protocol.PuttyBase.PuttyPath = My.Application.Info.DirectoryPath & "\PuTTYNG.exe" End If If My.Settings.ShowSystemTrayIcon Then diff --git a/mRemoteV1/Forms/frmOptions.vb b/mRemoteV1/Forms/frmOptions.vb index 8e7ed5a1..875a192e 100644 --- a/mRemoteV1/Forms/frmOptions.vb +++ b/mRemoteV1/Forms/frmOptions.vb @@ -1606,7 +1606,7 @@ Public Class frmOptions If My.Settings.UseCustomPuttyPath Then mRemoteNG.Connection.Protocol.PuttyBase.PuttyPath = My.Settings.CustomPuttyPath Else - mRemoteNG.Connection.Protocol.PuttyBase.PuttyPath = My.Application.Info.DirectoryPath & "\putty.exe" + mRemoteNG.Connection.Protocol.PuttyBase.PuttyPath = My.Application.Info.DirectoryPath & "\PuTTYNG.exe" End If My.Settings.MaxPuttyWaitTime = Me.numPuttyWaitTime.Value @@ -1827,7 +1827,7 @@ Public Class frmOptions Private Sub btnBrowseCustomPuttyPath_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnBrowseCustomPuttyPath.Click Dim oDlg As New OpenFileDialog() oDlg.Filter = My.Language.strFilterApplication & "|*.exe|" & My.Language.strFilterAll & "|*.*" - oDlg.FileName = "putty.exe" + oDlg.FileName = "PuTTYNG.exe" oDlg.CheckFileExists = True oDlg.Multiselect = False diff --git a/mRemoteV1/UI/UI.Window.ComponentsCheck.vb b/mRemoteV1/UI/UI.Window.ComponentsCheck.vb index acc5697a..6e7efc00 100644 --- a/mRemoteV1/UI/UI.Window.ComponentsCheck.vb +++ b/mRemoteV1/UI/UI.Window.ComponentsCheck.vb @@ -547,7 +547,7 @@ Namespace UI Dim pPath As String = "" If My.Settings.UseCustomPuttyPath = False Then - pPath = My.Application.Info.DirectoryPath & "\putty.exe" + pPath = My.Application.Info.DirectoryPath & "\PuTTYNG.exe" Else pPath = My.Settings.CustomPuttyPath End If