2013-09-28 01:41:24 +04:00
|
|
|
<?php
|
2024-05-09 21:20:32 +03:00
|
|
|
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
2024-05-09 21:20:32 +03:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2015-03-26 13:44:34 +03:00
|
|
|
*/
|
2023-03-03 08:37:29 +03:00
|
|
|
// We only can count up. The 4. digit is only for the internal patch level to trigger DB upgrades
|
|
|
|
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patch level
|
2014-04-21 17:44:54 +04:00
|
|
|
// when updating major/minor version number.
|
2016-10-31 12:59:24 +03:00
|
|
|
|
2024-03-28 13:21:17 +03:00
|
|
|
$OC_Version = [30, 0, 0, 0];
|
2013-09-28 01:41:24 +04:00
|
|
|
|
2023-03-03 08:37:29 +03:00
|
|
|
// The human-readable string
|
2024-03-28 13:21:17 +03:00
|
|
|
$OC_VersionString = '30.0.0 dev';
|
2015-08-30 17:21:55 +03:00
|
|
|
|
2017-01-20 19:47:45 +03:00
|
|
|
$OC_VersionCanBeUpgradedFrom = [
|
|
|
|
'nextcloud' => [
|
2023-11-23 11:19:51 +03:00
|
|
|
'29.0' => true,
|
2024-03-28 13:21:17 +03:00
|
|
|
'30.0' => true,
|
2017-01-20 19:47:45 +03:00
|
|
|
],
|
|
|
|
'owncloud' => [
|
2023-10-19 15:37:05 +03:00
|
|
|
'10.13' => true,
|
2017-01-20 19:47:45 +03:00
|
|
|
],
|
|
|
|
];
|
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';
|