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
path: root/src
AgeCommit message (Collapse)Author
2020-10-13Merge pull request #4358 from nextcloud/bugfix/4192/max-width-on-warningsJoas Schilling
Max width on call view tooltips
2020-10-13Max width on switch view tooltipsMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2020-10-13Fix switch view buttonsMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2020-10-13Fix quality warning buttons heightMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2020-10-13Max width on quality warningsMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2020-10-12Merge pull request #4325 from ↵Joas Schilling
nextcloud/bugfix/noid/dont-show-HPB-trial-form-when-running-hpb Don't show the HPB trial form when a HPB is configured and the trial …
2020-10-12Merge pull request #4350 from ↵Joas Schilling
nextcloud/dependabot/npm_and_yarn/nextcloud/dialogs-3.0.0 Bump @nextcloud/dialogs from 2.0.1 to 3.0.0
2020-10-12Merge pull request #4334 from nextcloud/bugfix/noid/rename-immediate-ui-updateJoas Schilling
Update conversation name directly after call returns
2020-10-12Use defined constantsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-09Focus message field after upload or shareVincent Petry
After starting an upload or sharing a file in the conversation, set the focus back to the message field. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-10-08Update conversation name directly after call returnsVincent Petry
After renaming a conversation, set the name back into the state for immediate display instead of waiting for the next signal/event many seconds later. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-10-08Add push to talk and push to muteMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2020-10-08Don't show the HPB trial form when a HPB is configured and the trial is not usedJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-08Fix lobby date not shown in moderation menuDaniel Calviño Sánchez
Due to a change in the underlying component a date given as a timestamp is no longer automatically converted to a Date object, so it needs to be explicitly done. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-10-07Merge pull request #4309 from ↵Vincent Petry
nextcloud/bugfix/noid/menu-position-for-left-sidebar-avatars Fix menu position for left sidebar avatars
2020-10-06Fix menu position for left sidebar avatarsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-06Merge pull request #4288 from nextcloud/fix/4283/bridge-irc-passwordsJoas Schilling
Fix IRC bridge connection password and add channel password field
2020-10-06Clarify participant search box in conversationVincent Petry
Adjusted placeholder text of the search box at the top of the participant list, to make it clearer that one can also simply search for participants, not only add new ones. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-10-06Remove pulse animation from call buttonVincent Petry
It causes unnecessary load on Chrome browser. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-10-05stick with lowercase for bridge part field idsJulien Veyssier
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
2020-10-05refs #4283 fix connection password and add channel password fieldJulien Veyssier
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
2020-10-05Import @nextcloud/dialogs scss fileJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-04Merge pull request #4264 from ↵Joas Schilling
nextcloud/bugfix/2946/fix-participants-scrolling-overlap Fix participants list search box overlap
2020-10-04Don't load the user_status in big conversationsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-02Fix participants list search box overlapVincent Petry
When scrolling up, the participants are not visible any more above the search box. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-10-02Merge pull request #4253 from nextcloud/bugfix/noid/user_status-show-iconJoas Schilling
Show icon only with dnd status in the message
2020-10-01Fixed contact selection bubble wrappingVincent Petry
Added missing "nowrap" and increased width. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-10-01Show online status and status icon in Talk as discussedJoas Schilling
Also being in a conversation/call should make you appear online as before. Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-09-27l10n: Improving the string markValdnet
The string text will appear in Transifex.
2020-09-25Make the "Scroll to bottom" button non-primaryJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-09-24Merge pull request #4222 from nextcloud/fix-height-in-talk-sidebar-in-files-appJoas Schilling
Fix height in Talk sidebar in Files app
2020-09-24Ensure that devices were enumerated when starting the local mediaDaniel Calviño Sánchez
When starting the local media for the first time the media devices could have not been enumerated yet, so even if the remembered devices are available they were not used in the first "getUserMedia" request. However, as the devices are enumerated after getting the user media (as that is the only time when it is guaranteed that the full device information can be got) this caused the remembered devices to be then found and further "getUserMedia" requests to be made for them. To avoid an initial "getUserMedia" request with default ids followed by other requests with the remembered ones now the media devices are tried to be enumerated before starting a call. This does not guarantee that the extra "getUserMedia" requests will be avoided, as if persistent media permissions are not granted the browser may not provide the full device IDs, but at least avoids them in some cases. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-09-24Wait for pending devices enumeration before getting user mediaDaniel Calviño Sánchez
When the devices are enumerated the selected audio and video input id may change depending on which devices are available. Therefore, when "getUserMedia" is called if an enumeration has been triggered but it has not finished yet now it will be waited for the enumeration to finish before getting the user media. Enumerating the devices is a fast operation, so this should not cause any noticeable delay when getting the user media. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-09-24Mark handling of input id changes as pending since the beginningDaniel Calviño Sánchez
Before the audio and video input id changes were marked as pending only while waiting for "getUserMedia" to finish. However, in the initial phase of handling input id changes the tracks for the previous device are stopped, which could cause the stream to be removed (for example, if there was just a single active device) even if it is still referenced in the "localStreamsChanged" array. Now handling input id changes are marked as pending since the beginning, which prevents ended streams to be removed while they may still be needed later. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-09-24Do not remove ended streams if there are pending changesDaniel Calviño Sánchez
When all the tracks from a stream were ended the stream was immediately removed. However, if there were pending audio or video changes the stream could be reused to add new tracks once "getUserMedia" finishes without having to create a new one. Moreover, this also fixes an issue when changing audio and video devices at the "same" time. When a device is changed first the tracks for the previous device are stopped. If both the audio and video devices were changed then all the tracks of the stream were ended, and thus the stream was removed. However, the stream was still referenced in the "localStreamsChanged" arrays of the handlers, so when "getUserMedia" returned the new track the old stream was not found, a new one was created and the track was added to it. As this happened for both audio and video two different streams ended being created, each one only with audio tracks or video tracks, and as both streams were passed to "localStreamChanged" either the audio or the video, depending on the last stream passed, were disabled due to the stream not having tracks of that type. Something similar happened too when "getUserMedia" failed, although in that case the old stream was the one passed to "localStreamChanged". Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-09-24Remember selected input devicesDaniel Calviño Sánchez
Before the selected input devices were used as long as the device was still available and Talk was still open. However, if the device was disconnected and connected it was not automatically selected again, even if Talk was still open. Now the last selected device of each kind is remembered, so it will be automatically used if available when joining a call, even if it was disconnected and connected or if Talk was closed and opened. Additionally, if audio or video devices were explicitly disabled this will also be remembered and respected when Talk is open again. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-09-24Center the empty content in the tab instead of just adding a marginDaniel Calviño Sánchez
Since nextcloud-vue 2.0.0 the server styling is not used for the sidebar. Therefore the reduced top margin (10vh) for empty contents in "#app-sidebar" is no longer applied. As the default top margin is used, which is designed for the main view and thus is quite large (30vh), the empty content in the chat tab appears very low. Moreover, no sidebar is shown if the window height is small, so the button to join the conversation may not be reachable. Instead now the empty content is centered in the tab contents using a flex display, which also causes a sidebar to be shown if there is not enough available space to show the contents. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-09-24Adjust hacked tabs style to changes in nextcloud-vue 2.4.0Daniel Calviño Sánchez
Since nextcloud-vue 2.4.0 the tabs content container is no longer a direct child of the app sidebar and it is now wrapped in an ".app-sidebar-tabs" container. Therefore the hacked minimum height and overflow need to be set in that container instead (although the hidden overflow still needs to be propagated to the tabs content container). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-09-23Merge pull request #4207 from nextcloud/bugfix/noid/online-greater-statusJoas Schilling
Online > User type
2020-09-23Merge pull request #4179 from ↵dependabot-preview[bot]
nextcloud/dependabot/npm_and_yarn/nextcloud/vue-dashboard-1.0.1
2020-09-23Move the empty content message to the description as per ↵Joas Schilling
nextcloud/vue-dashboard 1.0.1 Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-09-23Always show the status messagesJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-09-23What you do is more important than what you areJoas Schilling
I feel so philosophical today. Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-09-22Use existing translationsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-09-22Change upload to sendGretaD
Signed-off-by: GretaD <gretadoci@gmail.com>
2020-09-17Emit the same event when we know that the status might be changedJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-09-16Merge pull request #4076 from ↵Joas Schilling
nextcloud/ignore-forcemute-message-if-already-muted Ignore "forceMute" message if already muted
2020-09-16Merge pull request #4150 from nextcloud/bugfix/noid/fix-sidebars-chat-scrollingJoas Schilling
Fix scrolling of sidebar's chat
2020-09-16Merge pull request #4154 from ↵Joas Schilling
nextcloud/fix-getting-messages-again-after-the-component-was-destroyed Fix getting messages again after the component was destroyed
2020-09-16Merge pull request #4140 from ↵Joas Schilling
nextcloud/fix-memory-and-event-handler-leaks-in-calls Fix memory and event handler leaks in calls