diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-08-10 15:21:25 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-08-10 15:21:25 +0200 |
commit | 1eb8b951c2eb6388efdd628c878110d78ae4e77d (patch) | |
tree | 30f62ea3dd0acf69384cd57d34024c8e82bbea13 /version.php | |
parent | 518545fc2fc93f31d1885f143a0386c5449679f4 (diff) | |
download | nextcloud-server-1eb8b951c2eb6388efdd628c878110d78ae4e77d.tar.gz nextcloud-server-1eb8b951c2eb6388efdd628c878110d78ae4e77d.zip |
more admin page splitup improvements
* bump version to ensure tables are created
* make updatenotification app use settings api
* change IAdmin::render() to getForm() and change return type from Template to TemplateResponse
* adjust User_LDAP accordingly, as well as built-in forms
* add IDateTimeFormatter to AppFramework/DependencyInjection/DIContainer.php. This is important so that \OC::$server->query() is able to resolve the
constructor parameters. We should ensure that all OCP/* stuff that is available from \OC::$server is available here. Kudos to @LukasReschke
* make sure apps that have settings info in their info.xml are loaded before triggering adding the settings setup method
Diffstat (limited to 'version.php')
-rw-r--r-- | version.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/version.php b/version.php index e6298ae238f..7787884db7a 100644 --- a/version.php +++ b/version.php @@ -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, 2, 0, 1); +$OC_Version = array(9, 2, 0, 2); // The human readable string $OC_VersionString = '11.0 alpha'; |