diff options
Diffstat (limited to 'apps/files_versions')
-rw-r--r-- | apps/files_versions/appinfo/info.xml | 3 | ||||
-rw-r--r-- | apps/files_versions/appinfo/update.php | 5 |
2 files changed, 1 insertions, 7 deletions
diff --git a/apps/files_versions/appinfo/info.xml b/apps/files_versions/appinfo/info.xml index 8fe6372279a..0098ea9e20f 100644 --- a/apps/files_versions/appinfo/info.xml +++ b/apps/files_versions/appinfo/info.xml @@ -4,7 +4,6 @@ <name>Versions</name> <licence>AGPL</licence> <author>Frank Karlitschek, Bjoern Schiessle</author> - <shipped>true</shipped> <description> This application enables ownCloud to automatically maintain 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. ownCloud then automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions. In addition to the expiry of versions, ownCloud’s versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, ownCloud will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation. @@ -15,7 +14,7 @@ In addition to the expiry of versions, ownCloud’s versions app makes certain n <filesystem/> </types> <dependencies> - <owncloud min-version="9.0" /> + <owncloud min-version="9.0" max-version="9.0" /> </dependencies> <documentation> <user>user-versions</user> diff --git a/apps/files_versions/appinfo/update.php b/apps/files_versions/appinfo/update.php index ef6772f3079..eb04cf090ed 100644 --- a/apps/files_versions/appinfo/update.php +++ b/apps/files_versions/appinfo/update.php @@ -20,11 +20,6 @@ * along with this program. If not, see <http://www.gnu.org/licenses/> * */ -$installedVersion=OCP\Config::getAppValue('files_versions', 'installed_version'); -// move versions to new directory -if (version_compare($installedVersion, '1.0.4', '<')) { - \OC_DB::dropTable("files_versions"); -} // Cron job for deleting expired trash items \OC::$server->getJobList()->add('OCA\Files_Versions\BackgroundJob\ExpireVersions'); |