From 6d6b5a7917c612c7bc35c51abb85502a2ac598d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 19 Jan 2017 17:29:48 -0600 Subject: [PATCH] cleanup: Remove default Chrome extension ID It makes for a bad first-time experience for users, since the desktop sharing button will be visible, but it will never work. Also get rid of the now deprecated `desktopSharingChromeMethod` option. --- config.js | 6 +++--- doc/manual-install.md | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/config.js b/config.js index 009ff4119..61cc0ed13 100644 --- a/config.js +++ b/config.js @@ -20,10 +20,10 @@ var config = { // eslint-disable-line no-unused-vars //focusUserJid: 'focus@auth.jitsi-meet.example.com', // The real JID of focus participant - can be overridden here //defaultSipNumber: '', // Default SIP number - // Desktop sharing method. Can be set to 'ext', 'webrtc' or false to disable. - desktopSharingChromeMethod: 'ext', // The ID of the jidesha extension for Chrome. - desktopSharingChromeExtId: 'diibjkoicjeejcmhdnailmkgecihlobk', + desktopSharingChromeExtId: null, + // Whether desktop sharing should be disabled on Chrome. + desktopSharingChromeDisabled: true, // The media sources to use when using screen sharing with the Chrome // extension. desktopSharingChromeSources: ['screen', 'window', 'tab'], diff --git a/doc/manual-install.md b/doc/manual-install.md index f0fa251f1..1e54c059d 100644 --- a/doc/manual-install.md +++ b/doc/manual-install.md @@ -171,7 +171,6 @@ var config = { }, useNicks: false, bosh: '//jitsi.example.com/http-bind', // FIXME: use xep-0156 for that - desktopSharing: 'false' // Desktop sharing method. Can be set to 'ext', 'webrtc' or false to disable. //chromeExtensionId: 'diibjkoicjeejcmhdnailmkgecihlobk', // Id of desktop streamer Chrome extension //minChromeExtVersion: '0.1' // Required version of Chrome extension };