You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

info.xml 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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_versions</id>
  5. <name>Versions</name>
  6. <summary>This application automatically maintains older versions of files that are changed.</summary>
  7. <description>
  8. This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user's directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user does not run out of Quota because of versions.
  9. In addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user's currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation.
  10. </description>
  11. <version>1.19.0</version>
  12. <licence>agpl</licence>
  13. <author>Frank Karlitschek</author>
  14. <author>Bjoern Schiessle</author>
  15. <namespace>Files_Versions</namespace>
  16. <types>
  17. <filesystem/>
  18. <dav/>
  19. </types>
  20. <documentation>
  21. <user>user-versions</user>
  22. </documentation>
  23. <category>files</category>
  24. <bugs>https://github.com/nextcloud/server/issues</bugs>
  25. <dependencies>
  26. <nextcloud min-version="26" max-version="26"/>
  27. </dependencies>
  28. <background-jobs>
  29. <job>OCA\Files_Versions\BackgroundJob\ExpireVersions</job>
  30. </background-jobs>
  31. <commands>
  32. <command>OCA\Files_Versions\Command\CleanUp</command>
  33. <command>OCA\Files_Versions\Command\ExpireVersions</command>
  34. </commands>
  35. <sabre>
  36. <plugins>
  37. <plugin>OCA\Files_Versions\Sabre\Plugin</plugin>
  38. </plugins>
  39. <collections>
  40. <collection>OCA\Files_Versions\Sabre\RootCollection</collection>
  41. </collections>
  42. </sabre>
  43. <versions>
  44. <backend for="OCP\Files\Storage\IStorage">OCA\Files_Versions\Versions\LegacyVersionsBackend</backend>
  45. </versions>
  46. </info>