Quand on se connecte depuis un ordiphone et qu’on crée ou rejoint une conférence, le site propose de télécharger l’appli Jitsi meet depuis le playstore de Google.
Pour changer ça et renvoyer vers F-Droid j’ai modifié /usr/share/jitsi-meet/interface_config.js voir le diff ci-dessous. Il y a peut-être une façon plus propre de faire.
/usr/share/jitsi-meet# diff -u interface_config.js.orig interface_config.js.fred
--- interface_config.js.orig 2020-03-19 13:51:03.549416362 +0100
+++ interface_config.js.fred 2020-03-19 13:56:51.555840498 +0100
@@ -188,7 +188,7 @@
*
* Note: this mode is experimental and subject to breakage.
*/
- AUTO_PIN_LATEST_SCREEN_SHARE: 'remote-only'
+ AUTO_PIN_LATEST_SCREEN_SHARE: 'remote-only',
/**
* How many columns the tile view can expand to. The respected range is
@@ -199,7 +199,7 @@
/**
* Specify custom URL for downloading android mobile app.
*/
- // MOBILE_DOWNLOAD_LINK_ANDROID: 'https://play.google.com/store/apps/details?id=org.jitsi.meet',
+ MOBILE_DOWNLOAD_LINK_ANDROID: 'https://f-droid.org/en/packages/org.jitsi.meet',
/**
* Specify URL for downloading ios mobile app.
@@ -209,12 +209,12 @@
/**
* Specify mobile app scheme for opening the app from the mobile browser.
*/
- // APP_SCHEME: 'org.jitsi.meet',
+ APP_SCHEME: 'org.jitsi.meet',
/**
* Specify the Android app package name.
*/
- // ANDROID_APP_PACKAGE: 'org.jitsi.meet',
+ ANDROID_APP_PACKAGE: 'org.jitsi.meet',
/**
* Override the behavior of some notifications to remain displayed until
Si vous voyez un écran vide après avoir fait la modification et relancer jitsi c’est que vous avez oublié d’ajouter une virgule après la ligne AUTO_PIN_LATEST_SCREEN_SHARE: ‹ remote-only ›
AUTO_PIN_LATEST_SCREEN_SHARE: ‹ remote-only ›,