blob: 9a0cb61f87176c0eec12bbb56cb893c853588300 (
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
|
<?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>contacts</id>
<name>Contacts</name>
<summary>A contacts app for Nextcloud</summary>
<description>The Nextcloud contacts app is a user interface for Nextcloud's CardDAV server. Easily sync contacts from various devices with your Nextcloud and edit them online.
* π **Integration with other Nextcloud apps!** Currently Mail and Calendar β more to come.
* π **Never forget a birthday!** You can sync birthdays and other recurring events with your Nextcloud Calendar.
* π₯ **Sharing of Adressbooks!** You want to share your contacts with your friends or coworkers? No problem!
* π **Weβre not reinventing the wheel!** Based on the great and open SabreDAV library.
</description>
<version>5.3.1</version>
<licence>agpl</licence>
<author mail="hamza221@users.noreply.github.com">Hamza Mahjoubi</author>
<author homepage="https://github.com/nextcloud/groupware">Nextcloud Groupware Team</author>
<!-- required for dav plugins registration -->
<types>
<dav/>
</types>
<documentation>
<user>https://docs.nextcloud.com/server/stable/user_manual/en/groupware/contacts.html</user>
<admin>https://docs.nextcloud.com/server/stable/admin_manual/configuration_server/occ_command.html?highlight=occ%20commands#dav-label</admin>
<developer>https://github.com/nextcloud/contacts#build-the-app</developer>
</documentation>
<category>office</category>
<category>social</category>
<category>organization</category>
<website>https://github.com/nextcloud/contacts#readme</website>
<bugs>https://github.com/nextcloud/contacts/issues</bugs>
<repository type="git">https://github.com/nextcloud/contacts.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/screenshots/master/apps/Contacts/contacts.png</screenshot>
<dependencies>
<php min-version="7.4" max-version="8.2" />
<nextcloud min-version="25" max-version="27" />
</dependencies>
<background-jobs>
<job>OCA\Contacts\Cron\SocialUpdateRegistration</job>
</background-jobs>
<settings>
<admin>OCA\Contacts\Settings\AdminSettings</admin>
</settings>
<navigations>
<navigation>
<name>Contacts</name>
<route>contacts.page.index</route>
<icon>app.svg</icon>
<order>4</order>
</navigation>
</navigations>
<contactsmenu>
<provider>OCA\Contacts\ContactsMenu\Providers\DetailsProvider</provider>
</contactsmenu>
</info>
|