info.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0"?>
  2. <!--
  3. - SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
  4. - SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. - SPDX-License-Identifier: AGPL-3.0-only
  6. -->
  7. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  9. <id>comments</id>
  10. <name>Comments</name>
  11. <summary>Files app plugin to add comments to files</summary>
  12. <description>Files app plugin to add comments to files</description>
  13. <version>1.21.0</version>
  14. <licence>agpl</licence>
  15. <author>Arthur Schiwon</author>
  16. <author>Vincent Petry</author>
  17. <types>
  18. <logging/>
  19. </types>
  20. <category>office</category>
  21. <category>social</category>
  22. <bugs>https://github.com/nextcloud/server/issues</bugs>
  23. <dependencies>
  24. <nextcloud min-version="31" max-version="31"/>
  25. </dependencies>
  26. <activity>
  27. <settings>
  28. <setting>OCA\Comments\Activity\Setting</setting>
  29. </settings>
  30. <filters>
  31. <filter>OCA\Comments\Activity\Filter</filter>
  32. </filters>
  33. <providers>
  34. <provider>OCA\Comments\Activity\Provider</provider>
  35. </providers>
  36. </activity>
  37. <collaboration>
  38. <plugins>
  39. <plugin type="autocomplete-sort">OCA\Comments\Collaboration\CommentersSorter</plugin>
  40. </plugins>
  41. </collaboration>
  42. </info>