summaryrefslogtreecommitdiffstats
path: root/apps/files_versions
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2013-04-15 11:42:50 +0200
committerBjörn Schießle <schiessle@owncloud.com>2013-04-16 12:31:33 +0200
commit01d203c7734dc8ec6b755698877c12f23da69da5 (patch)
tree243d526d73d445831c3d6a1d7c1c9fd15007a805 /apps/files_versions
parent032c54273c2f88a4c35697b11d82524d585f3c84 (diff)
downloadnextcloud-server-01d203c7734dc8ec6b755698877c12f23da69da5.tar.gz
nextcloud-server-01d203c7734dc8ec6b755698877c12f23da69da5.zip
add explenation of the expire function to the apps description
Diffstat (limited to 'apps/files_versions')
-rw-r--r--apps/files_versions/appinfo/info.xml20
1 files changed, 19 insertions, 1 deletions
diff --git a/apps/files_versions/appinfo/info.xml b/apps/files_versions/appinfo/info.xml
index 44878da5e4d..661d64aa979 100644
--- a/apps/files_versions/appinfo/info.xml
+++ b/apps/files_versions/appinfo/info.xml
@@ -6,7 +6,25 @@
<author>Frank Karlitschek</author>
<require>4.93</require>
<shipped>true</shipped>
- <description>Versioning of files</description>
+ <description>
+ ownCloud supports simple version control for files. The versioning app
+ expires old versions automatically to make sure that
+ the user doesn't run out of space. Following pattern is used to delete
+ old versions:
+ For the first 10 seconds ownCloud keeps one version every 2 seconds;
+ For the first hour ownCloud keeps one version every minute;
+ For the first 24 hours ownCloud keeps one version every hour;
+ For the first 30 days ownCloud keeps one version every day;
+ After the first 30 days ownCloud keeps one version every week.
+
+ The versions are adjusted along this pattern every time a new version gets
+ created.
+
+ Beside that the version app takes care to never use more that 50% of the users
+ currently available free space. If the stored versions exceed this limit
+ ownCloud deletes the oldest versions until it meets the memory usage limit
+ again.
+ </description>
<types>
<filesystem/>
</types>