2013-09-28 01:41:24 +04:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Christoph Wurst <christoph@owncloud.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-08-30 17:21:55 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2014-04-21 17:44:54 +04:00
|
|
|
// 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.
|
2016-10-31 12:59:24 +03:00
|
|
|
|
2018-02-05 20:20:47 +03:00
|
|
|
$OC_Version = array(13, 0, 0, 14);
|
2013-09-28 01:41:24 +04:00
|
|
|
|
2013-10-30 01:11:49 +04:00
|
|
|
// The human readable string
|
2018-02-05 20:20:47 +03:00
|
|
|
$OC_VersionString = '13.0.0';
|
2015-08-30 17:21:55 +03:00
|
|
|
|
2017-01-20 19:47:45 +03:00
|
|
|
$OC_VersionCanBeUpgradedFrom = [
|
|
|
|
'nextcloud' => [
|
|
|
|
'12.0' => true,
|
2017-05-22 09:40:38 +03:00
|
|
|
'13.0' => true,
|
2017-01-20 19:47:45 +03:00
|
|
|
],
|
|
|
|
'owncloud' => [
|
|
|
|
],
|
|
|
|
];
|
2013-09-28 01:41:24 +04:00
|
|
|
|
2016-11-29 13:28:04 +03:00
|
|
|
// default Nextcloud channel
|
2015-08-30 17:21:55 +03:00
|
|
|
$OC_Channel = 'git';
|
2013-09-28 01:41:24 +04:00
|
|
|
|
|
|
|
// The build number
|
2015-08-30 17:21:55 +03:00
|
|
|
$OC_Build = '';
|
2013-09-28 01:41:24 +04:00
|
|
|
|
2016-07-22 15:44:00 +03:00
|
|
|
// Vendor of this package
|
|
|
|
$vendor = 'nextcloud';
|