Skip to content

Commit

Permalink
Fix issue MR-71 - Minimizing mRemoteNG causes temporary re-size of Pu…
Browse files Browse the repository at this point in the history
…tty sessions (windows)

Fix issue MR-199 - when using screen inside putty, screen becomes dead when reduce mremoteNG
Fix issue MR-284 - SSH: Text not showing properly
  • Loading branch information
rmcardle committed Feb 14, 2013
1 parent 4fab4d9 commit 6d15e36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.TXT
@@ -1,6 +1,7 @@
1.70 (XXXX-XX-XX):
Fix issue MR-54 - Error When disconnecting from SSL channel RDP
Fix issue MR-68 - Config Window Loses Options
Fix issue MR-71 - Minimizing mRemoteNG causes temporary re-size of Putty sessions (windows)
Fix issue MR-77 - VerifyDatabaseVersion (Config.Connections.Save) failed. Version string portion was too short or too long.
Fix issue MR-78 - Renaming Connections
Fix issue MR-79 - MoveUp/Down item doesn't work + Sort button broken
Expand All @@ -16,9 +17,11 @@
Fix issue MR-172 - RDGatewayPassword is unencrypted in confCons.xml file
Fix issue MR-176 - Del key while editing connection name triggers 'Delete Connection'
Fix issue MR-181 - Sessions on startup
Fix issue MR-199 - when using screen inside putty, screen becomes dead when reduce mremoteNG
Fix issue MR-202 - The Connection "Tab" show Ampersands as underscores.
Fix issue MR-214 - Hostname/IP reset
Fix issue MR-277 - Inheritance configuration button not appear in configuration tab
Fix issue MR-284 - SSH: Text not showing properly
Added compatibility check for "Use FIPS compliant algorithms" security setting.
Improved reporting of errors when encrypting and decrypting connection files.
Added partial Polish translation.
Expand Down
2 changes: 2 additions & 0 deletions mRemoteV1/Connection/Connection.Protocol.PuttyBase.vb
Expand Up @@ -191,6 +191,8 @@ Namespace Connection

Public Overrides Sub Resize()
Try
If frmMain.WindowState = FormWindowState.Minimized Then Return

MoveWindow(PuttyHandle, -SystemInformation.FrameBorderSize.Width, -(SystemInformation.CaptionHeight + SystemInformation.FrameBorderSize.Height), InterfaceControl.Width + (SystemInformation.FrameBorderSize.Width * 2), InterfaceControl.Height + SystemInformation.CaptionHeight + (SystemInformation.FrameBorderSize.Height * 2), True)
Catch ex As Exception
MessageCollector.AddMessage(Messages.MessageClass.ErrorMsg, My.Language.strPuttyResizeFailed & vbNewLine & ex.Message, True)
Expand Down

0 comments on commit 6d15e36

Please sign in to comment.