info.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0"?>
  2. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  4. <id>files</id>
  5. <name>Files</name>
  6. <summary>File Management</summary>
  7. <description>File Management</description>
  8. <version>1.21.1</version>
  9. <licence>agpl</licence>
  10. <author>Robin Appelman</author>
  11. <author>Vincent Petry</author>
  12. <types>
  13. <filesystem/>
  14. </types>
  15. <documentation>
  16. <user>user-files</user>
  17. </documentation>
  18. <category>files</category>
  19. <bugs>https://github.com/nextcloud/server/issues</bugs>
  20. <dependencies>
  21. <nextcloud min-version="26" max-version="26"/>
  22. </dependencies>
  23. <background-jobs>
  24. <job>OCA\Files\BackgroundJob\ScanFiles</job>
  25. <job>OCA\Files\BackgroundJob\DeleteOrphanedItems</job>
  26. <job>OCA\Files\BackgroundJob\CleanupFileLocks</job>
  27. <job>OCA\Files\BackgroundJob\CleanupDirectEditingTokens</job>
  28. <job>OCA\Files\BackgroundJob\DeleteExpiredOpenLocalEditor</job>
  29. </background-jobs>
  30. <commands>
  31. <command>OCA\Files\Command\Scan</command>
  32. <command>OCA\Files\Command\DeleteOrphanedFiles</command>
  33. <command>OCA\Files\Command\TransferOwnership</command>
  34. <command>OCA\Files\Command\ScanAppData</command>
  35. <command>OCA\Files\Command\RepairTree</command>
  36. </commands>
  37. <activity>
  38. <settings>
  39. <setting>OCA\Files\Activity\Settings\FavoriteAction</setting>
  40. <setting>OCA\Files\Activity\Settings\FileChanged</setting>
  41. <setting>OCA\Files\Activity\Settings\FileFavoriteChanged</setting>
  42. </settings>
  43. <filters>
  44. <filter>OCA\Files\Activity\Filter\FileChanges</filter>
  45. <filter>OCA\Files\Activity\Filter\Favorites</filter>
  46. </filters>
  47. <providers>
  48. <provider>OCA\Files\Activity\FavoriteProvider</provider>
  49. <provider>OCA\Files\Activity\Provider</provider>
  50. </providers>
  51. </activity>
  52. <navigations>
  53. <navigation>
  54. <name>Files</name>
  55. <route>files.view.index</route>
  56. <order>0</order>
  57. </navigation>
  58. </navigations>
  59. <settings>
  60. <personal>OCA\Files\Settings\PersonalSettings</personal>
  61. </settings>
  62. </info>