From 291bb584d588c0a46c252c76011b28c35e18a84e Mon Sep 17 00:00:00 2001 From: Timo k Date: Thu, 21 Oct 2021 18:14:54 +0200 Subject: [PATCH 1/2] add RequiresClient capability --- src/interfaces/Capabilities.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/interfaces/Capabilities.ts b/src/interfaces/Capabilities.ts index f158171..88036a9 100644 --- a/src/interfaces/Capabilities.ts +++ b/src/interfaces/Capabilities.ts @@ -20,7 +20,8 @@ export enum MatrixCapabilities { Screenshots = "m.capability.screenshot", StickerSending = "m.sticker", AlwaysOnScreen = "m.always_on_screen", - + // Ask Element to not give the option to move the widget into a seperate tab. + RequiresClient = "io.element.requires_client", /** * @deprecated It is not recommended to rely on this existing - it can be removed without notice. */ From 413f9a337a50715c3d9ac9211efb139fe04b87a6 Mon Sep 17 00:00:00 2001 From: Timo K Date: Mon, 25 Oct 2021 17:45:52 +0200 Subject: [PATCH 2/2] fix typo --- src/interfaces/Capabilities.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/Capabilities.ts b/src/interfaces/Capabilities.ts index 88036a9..c2b5d03 100644 --- a/src/interfaces/Capabilities.ts +++ b/src/interfaces/Capabilities.ts @@ -20,7 +20,7 @@ export enum MatrixCapabilities { Screenshots = "m.capability.screenshot", StickerSending = "m.sticker", AlwaysOnScreen = "m.always_on_screen", - // Ask Element to not give the option to move the widget into a seperate tab. + // Ask Element to not give the option to move the widget into a separate tab. RequiresClient = "io.element.requires_client", /** * @deprecated It is not recommended to rely on this existing - it can be removed without notice.