From 66c0a3e531033964bcef49c00f5f1bd3855a53b0 Mon Sep 17 00:00:00 2001 From: Mike Griese Date: Mon, 31 Jan 2022 14:38:52 -0600 Subject: [PATCH 1/2] Add `experimental.useAtlasEngine` to schema does what it says on the can. * [x] closes #12302 --- doc/cascadia/profiles.schema.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/cascadia/profiles.schema.json b/doc/cascadia/profiles.schema.json index 264ee83f9eb..bcff3794ce6 100644 --- a/doc/cascadia/profiles.schema.json +++ b/doc/cascadia/profiles.schema.json @@ -2059,6 +2059,11 @@ "description": "Use to set a path to a pixel shader to use with the Terminal. Overrides `experimental.retroTerminalEffect`. This is an experimental feature, and its continued existence is not guaranteed.", "type": "string" }, + "experimental.useAtlasEngine": { + "description": "Enable using the experimental new renderering engine for this profile. This is an experimental feature, and its continued existence is not guaranteed.", + "type": "boolean", + "default": false + }, "fontFace": { "default": "Cascadia Mono", "description": "[deprecated] Define 'face' within the 'font' object instead.", From 368b1cb32eddeec1586a0b470d78287667e044b3 Mon Sep 17 00:00:00 2001 From: "Dustin L. Howett" Date: Mon, 31 Jan 2022 19:00:57 -0600 Subject: [PATCH 2/2] Update doc/cascadia/profiles.schema.json --- doc/cascadia/profiles.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/cascadia/profiles.schema.json b/doc/cascadia/profiles.schema.json index bcff3794ce6..191975b9638 100644 --- a/doc/cascadia/profiles.schema.json +++ b/doc/cascadia/profiles.schema.json @@ -2060,7 +2060,7 @@ "type": "string" }, "experimental.useAtlasEngine": { - "description": "Enable using the experimental new renderering engine for this profile. This is an experimental feature, and its continued existence is not guaranteed.", + "description": "Enable using the experimental new rendering engine for this profile. This is an experimental feature, and its continued existence is not guaranteed.", "type": "boolean", "default": false },