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
2022-02-25Do not force reconnections when starting and stopping mediado-not-force-reconnections-when-starting-and-stopping-mediaDaniel Calviño Sánchez
Instead of forcing a reconnection to ensure that clients will realize that there was a change in the media being published trust them to proactively establish connections based on the changes in the call flags. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2022-02-25Create and destroy Peers based on call flag changesDaniel Calviño Sánchez
Instead of relying on forced reconnections made by the publisher when media was started or stopped (and there was no other media stream) now the changes in the call flags are monitored to proactively create and destroy Peers as needed. This will make possible to get rid of forced reconnections in those cases (but this needs to be supported by the mobile clients too before forced reconnections no longer need to be triggered). Note that, technically, even if all media streams are stopped there is no real need to destroy the Peer object and stop the connection, as the publisher will still keep the connection open, although with null tracks. Nevertheless, closing the connection once no longer needed does no harm either, and it can be started again later if needed. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2022-02-25Extract function to create a Peer for a participantDaniel Calviño Sánchez
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2022-02-25[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-24[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-23Merge pull request #6913 from ↵Joas Schilling
nextcloud/feature/6874/define-if-job-is-time-sensitive Define if job is time sensitive
2022-02-22Define if job is time sensitiveVitor Mattos
Signed-off-by: Vitor Mattos <vitor@php.rio>
2022-02-22Merge pull request #6924 from ↵Joas Schilling
nextcloud/dependabot/npm_and_yarn/jest-localstorage-mock-2.4.19 Bump jest-localstorage-mock from 2.4.18 to 2.4.19
2022-02-22Merge pull request #6922 from ↵Joas Schilling
nextcloud/dependabot/npm_and_yarn/vue/cli-service-5.0.1 Bump @vue/cli-service from 4.5.15 to 5.0.1
2022-02-22Merge pull request #6925 from nextcloud/dependabot/npm_and_yarn/url-parse-1.5.7Joas Schilling
Bump url-parse from 1.5.4 to 1.5.7
2022-02-22Merge pull request #6912 from nextcloud/feature/remove-unused-app-configJoas Schilling
Remove unused app config
2022-02-22[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-21[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-20[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-19[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-19Bump url-parse from 1.5.4 to 1.5.7dependabot[bot]
Bumps [url-parse](https://github.com/unshiftio/url-parse) from 1.5.4 to 1.5.7. - [Release notes](https://github.com/unshiftio/url-parse/releases) - [Commits](https://github.com/unshiftio/url-parse/compare/1.5.4...1.5.7) --- updated-dependencies: - dependency-name: url-parse dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2022-02-19Bump jest-localstorage-mock from 2.4.18 to 2.4.19dependabot[bot]
Bumps [jest-localstorage-mock](https://github.com/clarkbw/jest-localstorage-mock) from 2.4.18 to 2.4.19. - [Release notes](https://github.com/clarkbw/jest-localstorage-mock/releases) - [Commits](https://github.com/clarkbw/jest-localstorage-mock/compare/v2.4.18...v2.4.19) --- updated-dependencies: - dependency-name: jest-localstorage-mock dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2022-02-19Bump @vue/cli-service from 4.5.15 to 5.0.1dependabot[bot]
Bumps [@vue/cli-service](https://github.com/vuejs/vue-cli/tree/HEAD/packages/@vue/cli-service) from 4.5.15 to 5.0.1. - [Release notes](https://github.com/vuejs/vue-cli/releases) - [Changelog](https://github.com/vuejs/vue-cli/blob/dev/CHANGELOG.md) - [Commits](https://github.com/vuejs/vue-cli/commits/v5.0.1/packages/@vue/cli-service) --- updated-dependencies: - dependency-name: "@vue/cli-service" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
2022-02-18Remove unused app configVitor Mattos
Signed-off-by: Vitor Mattos <vitor@php.rio>
2022-02-18Merge pull request #6917 from ↵Joas Schilling
nextcloud/fix-unneeded-checkbox-name-for-checkbox-not-in-group Fix unneeded checkbox name for checkbox not in group
2022-02-18Merge pull request #6918 from nextcloud/fix-stopping-waiting-soundJoas Schilling
Fix stopping waiting sound
2022-02-18Fix waiting sound interval not stopped once sounds are disabledDaniel Calviño Sánchez
If sounds are disabled once the interval handler was started the waiting sound needs to be stopped. Otherwise the handler will be kept running until something else stops it. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2022-02-18Fix trying to play sound on null audio objectDaniel Calviño Sánchez
Stopping the waiting sound nullifies the "backgroundAudio" object used to play that sound, so the interval handler needs to be aborted after stopping it. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2022-02-18Fix unneeded checkbox name for checkbox not in groupDaniel Calviño Sánchez
If the "name" property is given to a "CheckboxRadioSwitch" the checkbox is assumed to be part of a group, so "checked" needs to be an array rather than a boolean. To prevent an error when mounting the component and given that the checkbox is not used in a group the "name" property was removed. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2022-02-17Merge pull request #6663 from nextcloud/feature/noid/more-remote-testingJoas Schilling
Feature/noid/more remote testing
2022-02-17Return the remote token and server so we can compare in testsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-17Fix reseting the talk data after testsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-17Allow local remote serversJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-17Add a federation context which starts the second serverJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-17Add integration test to check for invitesJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-17Add an API endpoint to get all invitesJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-17Change database structureJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-17Merge pull request #6730 from nextcloud/feature/1920/api-reactions-to-messageJoas Schilling
Api reactions to message
2022-02-17Merge pull request #6907 from ↵Joas Schilling
nextcloud/techdebt/noid/add-see-links-to-route-files Add see-links to route files
2022-02-17[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-16Merge pull request #6899 from ↵Joas Schilling
nextcloud/dependabot/npm_and_yarn/nextcloud/vue-5.0.0 Bump @nextcloud/vue from 5.0.0-beta.0 to 5.0.0
2022-02-15Add see-links to route filesJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-15Change return formatVitor Mattos
Signed-off-by: Vitor Mattos <vitor@php.rio>
2022-02-15Make the status code more specificVitor Mattos
Signed-off-by: Vitor Mattos <vitor@php.rio>
2022-02-15Fix typo and changes to use ReactionManagerVitor Mattos
Signed-off-by: Vitor Mattos <vitor@php.rio>
2022-02-15Make possible define attributes of room attendeesVitor Mattos
Signed-off-by: Vitor Mattos <vitor@php.rio>
2022-02-15Fix parsing of notificationsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-15Fix notification handling to notify about reactions in case of "Always notify"Joas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-15Fix error log spam when running integration testsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-15Implement tests to validate notify reacted messageVitor Mattos
Signed-off-by: Vitor Mattos <vitor@php.rio>
2022-02-15Update docsVitor Mattos
Signed-off-by: Vitor Mattos <vitor@php.rio>
2022-02-15NotifyVitor Mattos
Signed-off-by: Vitor Mattos <vitor@php.rio>
2022-02-15Add capabilitiesVitor Mattos
Signed-off-by: Vitor Mattos <vitor@php.rio>
2022-02-15Method moved to reactionManager and small fixesVitor Mattos
Signed-off-by: Vitor Mattos <vitor@php.rio>
2022-02-15Update lib/Controller/ReactionController.php Vitor Mattos
Signed-off-by: Vitor Mattos <vitor@php.rio> Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>