diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-02-16 22:56:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-16 22:56:10 +0100 |
commit | 57e0881a9eb206cb9c3894af600c5ccf4b8b8ff7 (patch) | |
tree | 5324fd4c47d74e24217fcd2b05558d5f300a5d69 /apps/comments/appinfo/info.xml | |
parent | 45e7bb7f409d8d4585ef6f8cea76b422e246c2de (diff) | |
parent | 211212f4b3f2897672e3eec26cd073bbcfe85043 (diff) | |
download | nextcloud-server-57e0881a9eb206cb9c3894af600c5ccf4b8b8ff7.tar.gz nextcloud-server-57e0881a9eb206cb9c3894af600c5ccf4b8b8ff7.zip |
Merge pull request #8232 from nextcloud/bugfix/8007/validate-appinfo-against-appstore-schema
Validate appinfo against appstore schema
Diffstat (limited to 'apps/comments/appinfo/info.xml')
-rw-r--r-- | apps/comments/appinfo/info.xml | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/apps/comments/appinfo/info.xml b/apps/comments/appinfo/info.xml index 61a23cf65f8..bc2cfe03054 100644 --- a/apps/comments/appinfo/info.xml +++ b/apps/comments/appinfo/info.xml @@ -1,19 +1,24 @@ <?xml version="1.0"?> -<info> +<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd"> <id>comments</id> <name>Comments</name> + <summary>Files app plugin to add comments to files</summary> <description>Files app plugin to add comments to files</description> - <licence>AGPL</licence> + <version>1.4.0</version> + <licence>agpl</licence> <author>Arthur Schiwon</author> <author>Vincent Petry</author> <default_enable/> - <version>1.4.0</version> - <dependencies> - <nextcloud min-version="14" max-version="14" /> - </dependencies> <types> <logging/> </types> + <category>office</category> + <category>social</category> + <bugs>https://github.com/nextcloud/server/issues</bugs> + <dependencies> + <nextcloud min-version="14" max-version="14" /> + </dependencies> <activity> <settings> |