123456789101112131415161718192021222324252627282930 |
- <?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>dashboard</id>
- <name>Dashboard</name>
- <summary>Dashboard app</summary>
- <description><![CDATA[Show something]]></description>
- <version>7.1.0</version>
- <licence>agpl</licence>
- <author>Julius Härtl</author>
- <namespace>Dashboard</namespace>
- <default_enable/>
- <category>customization</category>
- <bugs>https://github.com/nextcloud/server/issues</bugs>
- <dependencies>
- <nextcloud min-version="22" max-version="22"/>
- </dependencies>
- <navigations>
- <navigation>
- <name>Dashboard</name>
- <route>dashboard.dashboard.index</route>
- <icon>dashboard.svg</icon>
- <order>-1</order>
- </navigation>
- </navigations>
- </info>
|