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

info.xml « appinfo - github.com/nextcloud/bookmarks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db5658de45e29e3670de587a7ab1aa54d89903e1 (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
85
86
87
88
89
<?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>A Bookmark manager for Nextcloud</summary>
	<description><![CDATA[
- 📂 Sort bookmarks into folders
- 🏷 Add tags and personal notes
- 🔍 Full-text search
- 📲 Synchronize with all your browsers and devices
- 👪 Share bookmarks with other users and publicly
- ☠ Find broken links
- ⚛ Generate RSS feeds of your collections
- 📔 Read archived versions of your links in case they are depublished
- 💬 Create new bookmarks directly from within Nextcloud Talk
- 💼 Built-in Dashboard widgets for frequent and recent links

Requirements:
 - PHP v7.3+
 - PHP extensions:
   - intl: *
   - mbstring: *
 - Nextcloud v20+
]]></description>
	<version>10.3.1</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://raw.githubusercontent.com/nextcloud/bookmarks/master/screenshots/Bookmarks-small.png">https://raw.githubusercontent.com/nextcloud/bookmarks/master/screenshots/Bookmarks.png</screenshot>

	<dependencies>
		<php min-version="7.3" />
		<database>sqlite</database>
		<database>mysql</database>
		<database>pgsql</database>
		<lib>intl</lib>
		<lib>mbstring</lib>
		<nextcloud min-version="20" max-version="24" />
	</dependencies>
	<background-jobs>
		<job>OCA\Bookmarks\BackgroundJobs\CrawlJob</job>
		<job>OCA\Bookmarks\BackgroundJobs\FileCacheGCJob</job>
		<job>OCA\Bookmarks\BackgroundJobs\BackupJob</job>
		<job>OCA\Bookmarks\BackgroundJobs\ExtractFromNotesJob</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>
</info>