From 19f2d6c6aa608c7ffa9dc813c3798fd7835d83e3 Mon Sep 17 00:00:00 2001 From: thrilleratplay Date: Wed, 27 Apr 2011 02:41:50 -0400 Subject: [PATCH] *Clipboard call not passing WINPROC message when VNC connection existed. Changed order of raise event and resending WM_DRAWCLIPBOARD. *Updated Changelog --- mRemoteV1/CHANGELOG.TXT | 19 ++++++++++++++----- mRemoteV1/Forms/frmMain.vb | 2 +- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/mRemoteV1/CHANGELOG.TXT b/mRemoteV1/CHANGELOG.TXT index 2a214b8c..24c6bc8a 100644 --- a/mRemoteV1/CHANGELOG.TXT +++ b/mRemoteV1/CHANGELOG.TXT @@ -1,8 +1,17 @@ -1.64 (2011-##-##): - AR: Fixed translations, moved everything into resx, refactoring, namespace renamed to mRemoteNG - AR: Removed confConsNew.xml -> creating new files with vb code - AR: Fixed RD Gateway and other inheritance bugs, rewritten to use a List of String instead of a string for hiding properties - AR: Added locales to nsis installer +1.64 (2011-##-##): + Bugs fixed: #6, #12, #14, #22, #25 + Added Ctrl-Tab hotkey to change to the tab (with Ctrl-Shift-Tab reverse move) + Added locales to nsis installer + Added multilanguage support based on resx files, fixed translations, moved everything into resx, refactoring + Added Tab key to cycle through propertygrid entries (with shift-tab reverse move) + Added pre and post extApp for integrated Apps + Added credits for WeifenLuo + Changed namespace to mRemoteNG + Fixed external apps macro expansion (missing parameters) + Fixed RD Gateway and other inheritance bugs, rewritten to use a List of String instead of a string for hiding properties + Removed confConsNew.xml -> creating new files with vb code + Updated VNCSharpNG version. Corrects control key and alt keypass through behavior. + Updated WeifenLuo to version 2.5 RC1 1.63 (2010-02-02): New icon and logo diff --git a/mRemoteV1/Forms/frmMain.vb b/mRemoteV1/Forms/frmMain.vb index 6292dedd..1aa134fa 100644 --- a/mRemoteV1/Forms/frmMain.vb +++ b/mRemoteV1/Forms/frmMain.vb @@ -713,8 +713,8 @@ Public Class frmMain End If Next Case WM_DRAWCLIPBOARD - RaiseEvent clipboardchange() SendMessage(fpChainedWindowHandle, m.Msg, m.LParam, m.WParam) + RaiseEvent clipboardchange() Case WM_CHANGECBCHAIN 'Send to the next window SendMessage(fpChainedWindowHandle, m.Msg, m.LParam, m.WParam)