diff --git a/CHANGELOG.md b/CHANGELOG.md index 942d48b8b..d85f77801 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,14 +13,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - #1766: Converted components check page into options page - #1460: Updated GeckoFX to v60 ### Fixed +- #1773: Connection issue with mysql - Missing fields in tblCons +- #1713: Sound redirection does not work if Clipboard redirection is set to No +- #1632: 1.77.1 breaks RDP drive and sound redirection - #1610: Menu bar changes to english when cancelling options form - #1595: Unhandled exception when trying to browse through non existent multi ssh history with keyboard key strokes - #1589: Update SQL tables instead of rewriting them +- #1465: REGRESSION: Smart Cards redirection to Remote Desktop not working - #1337: Unhandled exception after closing mRemoteNG - #359: Making a VNC connection to an unreachable host causes the application to not respond for 20-30 seconds -- #1465: REGRESSION: Smart Cards redirection to Remote Desktop not working -- #1632: 1.77.1 breaks RDP drive and sound redirection -- #1713: Sound redirection does not work if Clipboard redirection is set to No ## [1.77.1] - 2019-09-02 ### Added diff --git a/mRemoteV1/Documentation/mysql_db_setup.sql b/mRemoteV1/Documentation/mysql_db_setup.sql index be28001ab..d8e543c47 100644 --- a/mRemoteV1/Documentation/mysql_db_setup.sql +++ b/mRemoteV1/Documentation/mysql_db_setup.sql @@ -31,6 +31,8 @@ CREATE TABLE `tblCons` ( `Username` varchar(512) DEFAULT NULL, `DomainName` varchar(512) DEFAULT NULL, `Password` varchar(1024) DEFAULT NULL, + `SSHTunnelConnectionName` varchar(128) NOT NULL, + `SSHOptions` varchar(1024) NOT NULL, `Hostname` varchar(512) DEFAULT NULL, `Protocol` varchar(32) NOT NULL, `PuttySession` varchar(128) DEFAULT NULL, @@ -93,6 +95,8 @@ CREATE TABLE `tblCons` ( `InheritPassword` tinyint(1) NOT NULL, `InheritPort` tinyint(1) NOT NULL, `InheritProtocol` tinyint(1) NOT NULL, + `InheritSSHTunnelConnectionName` tinyint(1) NOT NULL, + `InheritSSHOptions` tinyint(1) NOT NULL, `InheritPuttySession` tinyint(1) NOT NULL, `InheritRedirectDiskDrives` tinyint(1) NOT NULL, `InheritRedirectKeys` tinyint(1) NOT NULL, @@ -188,4 +192,4 @@ CREATE TABLE `tblUpdate` ( /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; \ No newline at end of file +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;