You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
874 B

  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  6. * SPDX-License-Identifier: AGPL-3.0-only
  7. */
  8. // We only can count up. The 4. digit is only for the internal patch level to trigger DB upgrades
  9. // between betas, final and RCs. This is _not_ the public version number. Reset minor/patch level
  10. // when updating major/minor version number.
  11. $OC_Version = [35, 0, 0, 1];
  12. // The human-readable string
  13. $OC_VersionString = '35.0.0 dev';
  14. $OC_VersionCanBeUpgradedFrom = [
  15. 'nextcloud' => [
  16. '34.0' => true,
  17. '35.0' => true,
  18. ],
  19. 'owncloud' => [
  20. '10.13' => true,
  21. '10.14' => true,
  22. '10.15' => true,
  23. '10.16' => true,
  24. ],
  25. ];
  26. // default Nextcloud channel
  27. $OC_Channel = 'git';
  28. // The build number
  29. $OC_Build = '';
  30. // Vendor of this package
  31. $vendor = 'nextcloud';