🗨️ Nextcloud Talk – chat, video & audio calls for Nextcloud
Перейти к файлу
Joas Schilling 165a1392b5
Merge pull request #1532 from nextcloud/techdebt/noid/strict
Make all classes strict
2019-02-13 10:41:35 +01:00
.github Merge pull request #1447 from nextcloud/nickvergessen-patch-1 2019-01-16 15:24:40 +01:00
.tx Fix tx config 2018-02-12 23:04:39 +01:00
appinfo Bump all versions 2018-12-07 18:36:28 +01:00
css Merge pull request #1510 from nextcloud/fix-editable-text-label-for-guest-names 2019-02-06 10:08:05 +01:00
docs Update screenshot with the new features 2018-12-07 18:29:18 +01:00
img Add the color for now, so the regex can replace it with white for the dark theme 2019-01-17 14:25:15 +01:00
js Update js/views/chatview.js 2019-02-07 14:45:09 +01:00
l10n [tx-robot] updated from transifex 2019-02-13 01:37:51 +00:00
lib That is exactly why we do all this. 2019-02-13 09:50:36 +01:00
templates Merge pull request #1485 from nextcloud/bugfix/noid/black-call-icons-in-dark-mode 2019-01-30 11:09:25 +01:00
tests Fix tests 2019-02-12 16:57:25 +01:00
.bowerrc add Backbone.Marionette 2016-10-17 19:27:34 +02:00
.drone.yml Add acceptance tests for public share authentication page to Drone 2019-02-05 16:48:03 +01:00
.eslintignore Ignore "templates.js" files when linting 2018-10-16 10:34:18 +02:00
.eslintrc.yml Fix eslint 2018-03-20 13:52:20 +01:00
.gitignore gitignore: Ignore 'package-lock.json' 2017-08-28 10:43:14 +02:00
.stylelintrc Added script to check CSS files using stylelint. 2016-10-14 14:08:45 +02:00
CHANGELOG.md Add changelog for 5.0.2 2019-01-30 15:05:07 +01:00
COPYING add a proper readme file and a license file 2016-11-28 15:20:19 +01:00
Makefile Remove the compile files from the package 2018-11-28 12:48:51 +01:00
README.md Improve the README with relevant information 2018-12-07 18:06:48 +01:00
bower.json Add At.js and dependencies 2018-04-26 12:46:58 +02:00
check-handlebars-templates.sh Add Drone step to check the Handlebars templates 2018-11-21 12:02:39 +01:00
compile-handlebars-templates.sh Use the new Namespace 2018-11-28 12:48:52 +01:00
karma.conf.js add karma/jasmine config for js unit testing 2016-10-18 15:22:47 +02:00
package.json Add Handlebars to the development dependencies 2018-11-21 11:25:41 +01:00
run-eslint.sh Check JavaScript / CSS files for errors/style using Drone CI (#42). 2016-10-14 14:39:10 +02:00
run-stylelint.sh Added script to check CSS files using stylelint. 2016-10-14 14:08:45 +02:00

README.md

Nextcloud Talk

Video- & audio-conferencing app for Nextcloud

Why is this so awesome?

  • 💬 Chat integration! Nextcloud Talk comes with some simple text chat since Nextcloud 13. More features are planned for future versions.
  • 👥 Private, group, public and password protected calls! Just invite somebody, a whole group or send a public link to invite to a call.
  • 💻 Screen sharing! Share your screen with participants of your call. You just need to use Firefox version 52 (or newer) or Chrome with this Chrome extension.
  • 🚀 Integration with other Nextcloud apps! Currently Contacts and users – more to come.
  • 🙈 Were not reinventing the wheel! Based on the great simpleWebRTC library.

And in the works for the coming versions:

If you have suggestions or problems, please open an issue or contribute directly :)

Supported Browsers

Firefox Chrome/Chromium Edge Safari Opera
✔️ 52 or later ✔️ 49 or later Planned Planned Not planned yet

Installing for Production

Nextcloud Talk is really easy to install. You just need to enable the app from the Nextcloud App Store and everything will work out of the box.

There are some scenarios (users behind strict firewalls / symmetric NATs) where a TURN server is needed. That's a bit more tricky installation, but the guys from Nextcloud VM have developed a script which takes care of everything for you. You can find the script here. The script is tested on Ubuntu Server 18.04, but should work on 16.04 as well. Please keep in mind that it's developed for the VM specifically and any issues should be reported in that repo, not here.

Here's a short video on how it's done.

Development setup

  1. Simply clone this repository into the apps folder of your Nextcloud development instance.
  2. Run make dev-setup
  3. Then activate it through the apps management. 🎉

We are also available on Freenode IRC #nextcloud-talk, if you want to join the discussion.

Milestones and Branches

Branches

In the Talk app we have one branch per Nextcloud server version. stable* branches of the app should always work with the same branch of the Nextcloud server. This is only off close to releases of the server, to allow easier finishing of features, so we don't have to backport them.

Milestones

  • 5.0.0 - Numeric milestones are settled and waiting for their release or some final polishing
  • 💙 Next Minor (15) - The next minor milestone is for issues/PR that go into the next Dot-Release for the given Nextcloud version (in the example 15 - e.g. 5.0.1)
  • 💚 Next Major - The next major milestone is for issues/PR that go into the next feature release for the new Major Nextcloud version (as there are Minors for 15, this would be 16)
  • 💛 Following Major - The following major milestone is for issues/PR that should be worked towards/on but didn't make it into the next major due to timing constraints
  • 💔 Backlog - The backlog milestone is assigned to all remaining issues

You can always pick a task of any of the milestones and we will help you to get it into the assigned milestone or also an earlier one if time permits. It's just a matter of having an overview and better visibility what we think should be worked on, but it's not exclusive.

Disabling internal camera/audio for testing

  • Disable camera until reboot: sudo modprobe -r uvcvideo
  • Re-enable camera: sudo modprobe uvcvideo

Contribution Guidelines

For more information please see the guidelines for contributing to this repository.