Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-01-21Initial state service is deprecatedJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-07-16Use new BeforeTemplateRenderedEvent for share template loadingJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-05-12Run cs:fixJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-05-12Require a distributed MemCacheJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-04-27Create the initialState in a single locationJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-04-06Fix missing element for Chromium screensharing extensionDaniel Calviño Sánchez
In Chromium < 72 an extension is needed to share the screen (https://github.com/nextcloud/spreed-screensharing-chrome-extension). Once installed, the extension enables itself only in those pages that contain an element with id "app" and class "nc-enable-screensharing-extension" when the document is loaded. As the element can not be added after the document has loaded and the screen sharing should work also when Talk is enabled in other apps a (hacky and very likely not compliant) meta element is added in the header element to be found by the extension whenever Talk is used. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-01-16Add dummy Talk sidebar to public share pageDaniel Calviño Sánchez
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-12-04Typed events for TalkJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-10-22Do not load Talk sidebar in public share page of folder sharesDaniel Calviño Sánchez
The Talk sidebar is only shown for file shares, so there is no need to load it for folder shares. Moreover, this also prevents some of the hacks used to show the Talk sidebar to mess with the layout used for folders. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-10-21Add a setting to disable files and public sharing integrationJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-09-26Add support for Talk sidebar in public share pagesDaniel Calviño Sánchez
When the public share page is loaded "publicshare.js" is initialized, which modifies the page to add a Talk sidebar. The default layout has the header, content and footer in a flex column; when the sidebar is added the layout id modified to still have the header and content in a flex column, but the content is now a flex row that includes "#app-content" and the sidebar, and the footer is moved inside "#app-content" so it does not affect the sidebar. The Talk sidebar includes a call container at the top, which is only shown during calls, and below it a call button and a chat view which are always shown. The CSS styles are a mix of the styles for the public share auth page and the Files app, as well as some rules copied from the main "style.scss" file. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>