From 5124e19143204d5344f61a7c4261660e303c3ee7 Mon Sep 17 00:00:00 2001 From: Handsome_Afraican_Man Date: Mon, 22 Jan 2024 11:28:38 +0800 Subject: [PATCH] IssueNo:#I8XX00 Description:Bugfix Sig:bundleManager Feature or Bugfix:Bugfix Binary Source:No Signed-off-by: zhouwenzhi --- modulecheck/app.json | 8 +++++++- modulecheck/module.json | 29 +++++++++++++++++++++++++++-- 2 files changed, 34 insertions(+), 3 deletions(-) diff --git a/modulecheck/app.json b/modulecheck/app.json index cb802ce6..6e8c0608 100644 --- a/modulecheck/app.json +++ b/modulecheck/app.json @@ -111,7 +111,8 @@ "targetPriority", "generateBuildHash", "2in1", - "GWPAsanEnabled" + "GWPAsanEnabled", + "tsanEnabled" ] }, "properties": { @@ -294,6 +295,11 @@ "description": "Indicates whether to support GWP asan.", "type": "boolean", "default": false + }, + "tsanEnabled": { + "description": "Indicates whether to support Tsan.", + "type": "boolean", + "default": false } } } diff --git a/modulecheck/module.json b/modulecheck/module.json index 3e1c845f..a596ded5 100644 --- a/modulecheck/module.json +++ b/modulecheck/module.json @@ -129,7 +129,10 @@ "generateBuildHash", "isolationMode", "proxyData", - "fileContextMenu" + "fileContextMenu", + "continueType", + "preferMultiWindowOrientation", + "ExcludeFromDock" ] }, "required": [ @@ -176,7 +179,10 @@ "atomicService", "generateBuildHash", "isolationMode", - "proxyData" + "proxyData", + "continueType", + "preferMultiWindowOrientation", + "ExcludeFromDock" ] }, "required": [ @@ -1315,6 +1321,25 @@ ], "default": "nonisolationFirst" }, + "continueType": { + "description": "Identifies the ability migrated type", + "type": "boolean" + }, + "preferMultiWindowOrientation": { + "description": "Indicates the preferred multi window orientation.", + "type": "string", + "enum": [ + "portrait", + "landscape", + "landscape_auto", + "default" + ], + "default": "default" + }, + "ExcludeFromDock": { + "description": "Indicates whether the area exclude from dock.", + "type": "string" + }, "proxyData": { "description": "Indicates all the proxy data of the module.", "type": "array", -- Gitee