aboutsummaryrefslogtreecommitdiff
path: root/app/features/conference/components
AgeCommit message (Collapse)Author
2023-11-26fix: add sandbox permission to iframeAndrei Costea
2023-11-24fix(conference) fix not loading with older server versionsSaúl Ibarra Corretgé
Use an iframe event which is fired really early to detect if the iframe was loaded. Incidentally the logic to detect if the iframe was actually loaded gets simplified now, since the only way for the event to be received is for the iframe to be loaded. Fixes: https://github.com/jitsi/jitsi-meet-electron/issues/929
2023-09-05Fix recent list to skip tokens (#906)Saúl Ibarra Corretgé
* fix(conference) fix handling iframe load error It can happen if DNS resolution fails, for example. * fix(recent-list) clean room names Fixes: https://github.com/jitsi/jitsi-meet-electron/issues/903
2023-08-16fix(conference) handle joining another meeting while in oneSaúl Ibarra Corretgé
This can happen when "token auth URL" mode is used since the app will be redirected to the same meeting it's in, but with a token.
2023-05-09fix(external-api) enable iframe sandbox after updateSaúl Ibarra Corretgé
The sandbox can now be manually enabled, so let's do that.
2022-08-25fix(config): backport parseURLParams from jitsi-meet (#786)Christoph Wiechert
Used https://github.com/jitsi/jitsi-meet/blob/master/react/features/base/util/parseURLParams.ts and removed the typescript stuff and replaced deprecated substr() Closes: #642 Signed-off-by: Christoph Wiechert <wio@psitrax.de>
2022-03-21feat(preload) limit the exposed SDK API surfaceSaúl Ibarra Corretgé
Expose a single function that sets up everything on the renderer.
2022-02-09feat: allow the jitsi-meet:// protocol in the URL box (#706)Christoph Settgast
* feat: allow the jitsi-meet:// protocol in the URL box Allow this so that when you send around links to the app and someone accidentally copy-pastes them into the URL box, things dont break.
2021-12-21feat: force prejoin page instead of profile and av settings (#690)Christoph Settgast
The settings and the prejoin page which is forced on many instances including meet.jit.si did conflict, as you could set values in the settings, then try to override them in den prejoin page only to notice that it would not work. Clean this up by only having the prejoin page where all settings can be done before joining the conference. Closes: #687
2021-06-27feat: support config overwrite via URL parameters (#594)csett86
Signed-off-by: Christoph Settgast <csett86@web.de>
2021-06-11fix(mac): remove wifi stats as they cause hangs every 10 secondsChristoph Settgast
The getWiFiStats causes screen freezes every 10 seconds for 2-4 seconds, thus temporarily remove them on mac. Closes: #595
2021-05-11feat(agc): Add setting to disable automatic gain control (#582)csett86
In some OS/Chromium combinations the automatic gain control goes slightly crazy, but normally its fine. Thus keep the default as is, but add an option for the users to disable it if required. Closes: #564
2020-07-02Temporarily disable remote controlSaúl Ibarra Corretgé
2020-06-30Open the conference with the app localeChristophe HAMERLING
2020-06-11Bundle external APISaúl Ibarra Corretgé
We use very little functionality of it anyway.
2020-06-04Remove local avatarSaúl Ibarra Corretgé
The deployment will generate the right one based on the provided name and email. Fixes: https://github.com/jitsi/jitsi-meet-electron/issues/379
2020-06-04Attach external API listeners earlySaúl Ibarra Corretgé
This avoids any problems caused by the initialization of any of the extra services initialization failures.
2020-05-14Add timeout configuration in settingsChristophe Hamerling
2020-04-30Add support for URL query parametersChristophe HAMERLING
2020-04-14Fix show AoT window default valueSaúl Ibarra Corretgé
2020-04-14Fixup always on top window settingSaúl Ibarra Corretgé
- Style - Layout - Add spotlight
2020-04-14Add always on top window toggle to settingsKlemens Arro
This commit will add a toggle to settings drawer to enable/disable the floating (always on top) window during a call (issue #171). This feature is based on the code from pull request #172 by @gorance-teletrader.
2020-04-07fix security issue / update depsAndrei Gavrilescu
2020-02-20integrate screen sharing tracker window (#197)Andrei Gavrilescu
* integrate screen sharing tracker window * update jitsi-meet-electron-utils required version * update package.json
2019-07-11Adds using power monitor and detecting computer suspend. (#174)Дамян Минков
* Adds using power monitor and detecting computer suspend. * Simplify api listener functions. * Fixes comments.
2018-12-27Remove full window dragging hackSaúl Ibarra Corretgé
It's more trouble than it's worth really. For one, it doesn't work in brady bunch mode.
2018-10-10Fix regression when conference has a password or authSaúl Ibarra Corretgé
This partially reverts eec6a270c5b2c7c93891dee1f9b49cfd351f7cff. The problem is that when a conference is protected by a password or has auth enabled, the "joined" event will come later, when the user authenticates, so the 10s timeout will kick in. This is not ideal because we react to the onLoad event of an iframe, which doesn't tell us much of *what* is actually loaded, but a new event would be required to properly fix this.
2018-10-10Remove no longer needed workaroundSaúl Ibarra Corretgé
2018-09-28Add a 10s join timeoutSaúl Ibarra Corretgé
2018-09-28Don't mark the conference as loaded earlySaúl Ibarra Corretgé
Wait until the joined event.
2018-07-27Add conference actionsAkshit Kr Nagpal
2018-07-15Fix: Made host parsing compatible for servers deployed in subdirectoryAkshit Kr Nagpal
2018-07-10Fixed Error: only one instance of babel-polyfill is allowedAkshit Kr Nagpal
2018-07-10Display error when unable to join conferenceakshitkrnagpal
2018-07-03Added Start with Audio and Video muted togglesakshitkrnagpal
2018-06-29Comments FixesAkshit Kr Nagpal
2018-06-29Refactor arrow functionakshitkrnagpal
2018-06-28Improve dragging experienceSaúl Ibarra Corretgé
The entire page is draggable, except: - buttons - any input type - the filmstrip - the chat panel
2018-06-28Validate Server URL before setting as Custom Server URLakshitkrnagpal
2018-06-28Added loading spinner in conference componentakshitkrnagpal
The spinner will be visible until jitsi-meet iframe is completely loaded.
2018-06-25Add ability to configure the server URLakshitkrnagpal
The configured server URL will be used when the room URL is not a full URL. If a full URL is given, the target server is joined. The default server URL is https://meet.jit.si
2018-06-25Refactor handling of domainAkshit Kr Nagpal
Use the concept of a "server URL", since it's URLs we are dealing with, not actul domains.
2018-06-21Added settings drawer with persistent settingsakshitkrnagpal
2018-06-12fix(google-auth): popup.hristoterezov
2018-06-11Updated eslint-config-jitsiakshitkrnagpal
2018-06-05Add Redux and use it as the navigatorakshitkrnagpal
2018-06-03Add initial welcome pageAkshit Kr Nagpal
2018-05-24Fix eslint warningsSaúl Ibarra Corretgé
2018-05-24Change flow syntaxSaúl Ibarra Corretgé
2018-05-24Configured flowakshitkrnagpal