2013-09-27 17:41:24 -04:00
|
|
|
<?php
|
2024-05-09 14:20:32 -04:00
|
|
|
|
2015-03-26 06:44:34 -04:00
|
|
|
/**
|
2024-05-09 14:20:32 -04: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 06:44:34 -04:00
|
|
|
*/
|
2023-03-03 00:37:29 -05: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 09:44:54 -04:00
|
|
|
// when updating major/minor version number.
|
2016-10-31 05:59:24 -04:00
|
|
|
|
2026-01-22 02:44:56 -05:00
|
|
|
$OC_Version = [34, 0, 0, 0];
|
2013-09-27 17:41:24 -04:00
|
|
|
|
2023-03-03 00:37:29 -05:00
|
|
|
// The human-readable string
|
2026-01-22 02:44:56 -05:00
|
|
|
$OC_VersionString = '34.0.0 dev';
|
2015-08-30 10:21:55 -04:00
|
|
|
|
2017-01-20 11:47:45 -05:00
|
|
|
$OC_VersionCanBeUpgradedFrom = [
|
|
|
|
|
'nextcloud' => [
|
2025-09-04 02:58:47 -04:00
|
|
|
'33.0' => true,
|
2026-01-22 02:44:56 -05:00
|
|
|
'34.0' => true,
|
2017-01-20 11:47:45 -05:00
|
|
|
],
|
|
|
|
|
'owncloud' => [
|
2023-10-19 08:37:05 -04:00
|
|
|
'10.13' => true,
|
2025-12-02 03:57:35 -05:00
|
|
|
'10.14' => true,
|
|
|
|
|
'10.15' => true,
|
2025-12-02 08:40:12 -05:00
|
|
|
'10.16' => true,
|
2017-01-20 11:47:45 -05:00
|
|
|
],
|
|
|
|
|
];
|
2013-09-27 17:41:24 -04:00
|
|
|
|
2016-11-29 05:28:04 -05:00
|
|
|
// default Nextcloud channel
|
2015-08-30 10:21:55 -04:00
|
|
|
$OC_Channel = 'git';
|
2013-09-27 17:41:24 -04:00
|
|
|
|
|
|
|
|
// The build number
|
2015-08-30 10:21:55 -04:00
|
|
|
$OC_Build = '';
|
2013-09-27 17:41:24 -04:00
|
|
|
|
2016-07-22 08:44:00 -04:00
|
|
|
// Vendor of this package
|
|
|
|
|
$vendor = 'nextcloud';
|