From 4ad56ed856b169a64c564cd0f6f7b37949fbd8f1 Mon Sep 17 00:00:00 2001 From: grossmj Date: Sun, 7 Aug 2022 23:59:44 +0200 Subject: [PATCH] Add more video resolutions to Docker containers using VNC in WebUI. Fixes #1375 (cherry picked from commit 83f7d36e2da27cf713bf7cc56438d3eb95b70267) --- .../configurator/docker/configurator-docker.component.ts | 2 +- src/app/services/docker-configuration.service.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/project-map/node-editors/configurator/docker/configurator-docker.component.ts b/src/app/components/project-map/node-editors/configurator/docker/configurator-docker.component.ts index f2cc016b..1de27d76 100644 --- a/src/app/components/project-map/node-editors/configurator/docker/configurator-docker.component.ts +++ b/src/app/components/project-map/node-editors/configurator/docker/configurator-docker.component.ts @@ -21,7 +21,7 @@ export class ConfiguratorDialogDockerComponent implements OnInit { name: string; generalSettingsForm: FormGroup; consoleTypes: string[] = []; - consoleResolutions: string[] = ['640x480', '800x600', '1024x768', '1280x800', '1280x1024', '1366x768', '1920x1080']; + consoleResolutions: string[] = ['2560x1440', '1920x1080', '1680x1050', '1440x900', '1366x768', '1280x1024', '1280x800', '1024x768', '800x600', '640x480']; private conf = { autoFocus: false, width: '800px', diff --git a/src/app/services/docker-configuration.service.ts b/src/app/services/docker-configuration.service.ts index 9a7dc7c0..37016f92 100644 --- a/src/app/services/docker-configuration.service.ts +++ b/src/app/services/docker-configuration.service.ts @@ -19,7 +19,7 @@ export class DockerConfigurationService { } getConsoleResolutions() { - let consoleResolutions = ['1920x1080', '1366x768', '1280x1024', '1280x800', '1024x768', '800x600', '640x480']; + let consoleResolutions = ['2560x1440', '1920x1080', '1680x1050', '1440x900', '1366x768', '1280x1024', '1280x800', '1024x768', '800x600', '640x480']; return consoleResolutions; }