2013-09-27 21:41:24 +00:00
|
|
|
<?php
|
2015-03-26 10:44:34 +00:00
|
|
|
/**
|
2016-07-21 15:07:57 +00:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 18:57:53 +00:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-05-26 17:56:05 +00:00
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2016-07-21 15:07:57 +00:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 17:56:05 +00:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2017-11-06 14:56:42 +00:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-08-30 14:21:55 +00:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2015-03-26 10:44:34 +00: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,
|
2019-12-03 18:57:53 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 10:44:34 +00:00
|
|
|
*
|
|
|
|
*/
|
2014-04-21 13:44:54 +00: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 09:59:24 +00:00
|
|
|
|
2020-02-12 09:15:52 +00:00
|
|
|
$OC_Version = array(18, 0, 1, 3);
|
2013-09-27 21:41:24 +00:00
|
|
|
|
2013-10-29 21:11:49 +00:00
|
|
|
// The human readable string
|
2020-02-12 09:15:52 +00:00
|
|
|
$OC_VersionString = '18.0.1';
|
2015-08-30 14:21:55 +00:00
|
|
|
|
2017-01-20 16:47:45 +00:00
|
|
|
$OC_VersionCanBeUpgradedFrom = [
|
|
|
|
'nextcloud' => [
|
2019-04-11 08:09:11 +00:00
|
|
|
'17.0' => true,
|
2019-09-05 07:09:58 +00:00
|
|
|
'18.0' => true,
|
2017-01-20 16:47:45 +00:00
|
|
|
],
|
|
|
|
'owncloud' => [
|
|
|
|
],
|
|
|
|
];
|
2013-09-27 21:41:24 +00:00
|
|
|
|
2016-11-29 10:28:04 +00:00
|
|
|
// default Nextcloud channel
|
2015-08-30 14:21:55 +00:00
|
|
|
$OC_Channel = 'git';
|
2013-09-27 21:41:24 +00:00
|
|
|
|
|
|
|
// The build number
|
2015-08-30 14:21:55 +00:00
|
|
|
$OC_Build = '';
|
2013-09-27 21:41:24 +00:00
|
|
|
|
2016-07-22 12:44:00 +00:00
|
|
|
// Vendor of this package
|
|
|
|
$vendor = 'nextcloud';
|