Merge pull request #19927 from owncloud/install-shipped-apps-on-upgrade

Install new shipped apps on upgrade
remotes/origin/dav-zip-folder
Thomas Müller 2015-10-21 14:43:27 +07:00
commit 1060be0886
3 changed files with 5 additions and 1 deletions

@ -5,6 +5,7 @@
<description>ownCloud WebDAV endpoint</description>
<licence>AGPL</licence>
<author>owncloud.org</author>
<version>0.1</version>
<requiremin>9.0</requiremin>
<shipped>true</shipped>
<standalone/>

@ -315,6 +315,9 @@ class Updater extends BasicEmitter {
if ($this->updateStepEnabled) {
$this->doCoreUpgrade();
// install new shipped apps on upgrade
OC_Installer::installShippedApps();
// update all shipped apps
$disabledApps = $this->checkAppsRequirements();
$this->doAppUpgrade();

@ -25,7 +25,7 @@
// We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
// when updating major/minor version number.
$OC_Version = array(9, 0, 0, 0);
$OC_Version = array(9, 0, 0, 1);
// The human readable string
$OC_VersionString = '9.0 pre alpha';