Merge pull request #2102 from Vest/issue_2057

Extended the field [RenderingEngine] from 10 chars to 16
This commit is contained in:
Dimitrij
2021-12-25 13:12:22 +00:00
committed by GitHub
3 changed files with 3 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- #283: Support for native PowerShell remoting as new protocol
- #xxx: Add external connector to retrieve ip address from Amazon EC2 Instance IDs
### Changed
- #2102: Extended the field RenderingEngine from 10 chars to 16
- #2022: Replaced CefSharp with WebView2
- #2014: Revised icons
- #2013: Removed components check

View File

@@ -69,7 +69,7 @@ CREATE TABLE [dbo].[tblCons] (
[RedirectPrinters] bit NOT NULL,
[RedirectSmartCards] bit NOT NULL,
[RedirectSound] varchar(64) NOT NULL,
[RenderingEngine] varchar(10),
[RenderingEngine] varchar(16),
[Resolution] varchar(32) NOT NULL,
[SSHOptions] varchar(1024) NOT NULL,
[SSHTunnelConnectionName] varchar(128) NOT NULL,

View File

@@ -70,7 +70,7 @@ CREATE TABLE `tblCons` (
`RedirectPrinters` tinyint(1) NOT NULL,
`RedirectSmartCards` tinyint(1) NOT NULL,
`RedirectSound` varchar(64) NOT NULL,
`RenderingEngine` varchar(10) DEFAULT NULL,
`RenderingEngine` varchar(16) DEFAULT NULL,
`Resolution` varchar(32) NOT NULL,
`SSHOptions` varchar(1024) NOT NULL,
`SSHTunnelConnectionName` varchar(128) NOT NULL,