From d6a2529080a5b5b02e8ef69d6579f03921ea0748 Mon Sep 17 00:00:00 2001 From: Jairo Llopis <973709+yajo@users.noreply.github.com> Date: Tue, 19 Nov 2024 16:37:05 +0000 Subject: [PATCH 1/2] Enable element call by default on sample config Following the same logic from https://github.com/element-hq/element-web/pull/28314, this patch enables Element Call by default for other configs. Downstream distributions that use the sample config should start using Element Call also! Example: https://discourse.nixos.org/t/element-call-not-enabled-in-element-desktop/56077/3?u=yajo --- config.sample.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/config.sample.json b/config.sample.json index 5ddc34b3fc..2c269681f2 100644 --- a/config.sample.json +++ b/config.sample.json @@ -42,10 +42,13 @@ "jitsi": { "preferred_domain": "meet.element.io" }, + "features": { + "feature_video_rooms": true, + "feature_group_calls": true, + "feature_element_call_video_rooms": true + }, "element_call": { "url": "https://call.element.io", - "participant_limit": 8, - "brand": "Element Call" }, "map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx" } From 3a4955f46ccf01ec9fb0075faaa6ede938ba04f8 Mon Sep 17 00:00:00 2001 From: Jairo Llopis <973709+yajo@users.noreply.github.com> Date: Wed, 20 Nov 2024 08:44:53 +0000 Subject: [PATCH 2/2] Fix wrong JSON syntax --- config.sample.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.sample.json b/config.sample.json index 2c269681f2..4e31334b75 100644 --- a/config.sample.json +++ b/config.sample.json @@ -48,7 +48,7 @@ "feature_element_call_video_rooms": true }, "element_call": { - "url": "https://call.element.io", + "url": "https://call.element.io" }, "map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx" }