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

info.xml « appinfo - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01d77001bd9ad30394c70d47a494cf8b9aa21d10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0"?>
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
	  xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
	<id>spreed</id>
	<name>Talk</name>
	<summary><![CDATA[Video & audio-conferencing using WebRTC]]></summary>
	<description><![CDATA[Video & audio-conferencing using WebRTC

* 💬 **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.
* 🚀 **Integration with other Nextcloud apps!** Currently Contacts and users – more to come.
* 🙈 **We’re not reinventing the wheel!** Based on the great [simpleWebRTC](https://simplewebrtc.com/) library.

And in the works for the [coming versions](https://github.com/nextcloud/spreed/milestones/):
* ✋ [Federated calls](https://github.com/nextcloud/spreed/issues/21), to call people on other Nextclouds

	]]></description>

	<version>3.2.6</version>
	<licence>agpl</licence>

	<author>Daniel Calviño Sánchez</author>
	<author>Ivan Sein</author>
	<author>Jan-Christoph Borchardt</author>
	<author>Joas Schilling</author>

	<namespace>Spreed</namespace>

	<types>
		<prevent_group_restriction />
	</types>

	<category>multimedia</category>
	<category>social</category>

	<website>https://github.com/nextcloud/spreed</website>
	<bugs>https://github.com/nextcloud/spreed/issues</bugs>
	<repository>https://github.com/nextcloud/spreed.git</repository>

	<screenshot>https://raw.githubusercontent.com/nextcloud/spreed/master/docs/call-in-action.png</screenshot>
	<screenshot>https://raw.githubusercontent.com/nextcloud/spreed/master/docs/chat.png</screenshot>
	<screenshot>https://raw.githubusercontent.com/nextcloud/spreed/master/docs/screensharing.png</screenshot>
	<screenshot>https://raw.githubusercontent.com/nextcloud/spreed/master/docs/contacts-menu.png</screenshot>

	<dependencies>
		<nextcloud min-version="13" max-version="13" />
	</dependencies>

	<background-jobs>
		<job>OCA\Spreed\BackgroundJob\ExpireSignalingMessage</job>
		<job>OCA\Spreed\BackgroundJob\RemoveEmptyRooms</job>
	</background-jobs>

	<settings>
		<admin>OCA\Spreed\Settings\Admin\TurnServer</admin>
		<admin>OCA\Spreed\Settings\Admin\StunServer</admin>
		<admin>OCA\Spreed\Settings\Admin\SignalingServer</admin>
		<admin-section>OCA\Spreed\Settings\Admin\Section</admin-section>
	</settings>

	<activity>
		<settings>
			<setting>OCA\Spreed\Activity\Setting</setting>
		</settings>

		<providers>
			<provider>OCA\Spreed\Activity\Provider\Invitation</provider>
			<provider>OCA\Spreed\Activity\Provider\Call</provider>
		</providers>
	</activity>

	<navigations>
		<navigation>
			<name>Talk</name>
			<route>spreed.Page.index</route>
			<order>3</order>
		</navigation>
	</navigations>

	<contactsmenu>
		<provider>OCA\Spreed\ContactsMenu\Providers\CallProvider</provider>
	</contactsmenu>
</info>