bookmarks/appinfo/info.xml

79 lines
3.0 KiB
XML

<?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[
This app provides you with a web interface for collecting, organizing and sharing bookmarks to the sites on the web that are precious to you.
You can browse and filter your bookmarks via tags, folders and by using the built-in search feature and you can share folders with other users and groups as well as create public links for them.
Also, in order to access your bookmarks anywhere, it also allows you to synchronize with third-party clients via a built-in REST API -- be it in your browsers or on your phone.
Check out the third-party clients listed here: https://github.com/nextcloud/bookmarks#third-party-clients
Requirements:
- PHP v7.3+
- PHP extensions:
- intl: *
- mbstring: *
- Nextcloud v20+
]]></description>
<version>4.3.0</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" />
<lib>intl</lib>
<lib>mbstring</lib>
<nextcloud min-version="20" max-version="22" />
</dependencies>
<background-jobs>
<job>OCA\Bookmarks\BackgroundJobs\CrawlJob</job>
<job>OCA\Bookmarks\BackgroundJobs\FileCacheGCJob</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>