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.

version.php 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  6. * @author Frank Karlitschek <frank@karlitschek.de>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. * @author Julius Härtl <jus@bitgrid.net>
  9. * @author Lukas Reschke <lukas@statuscode.ch>
  10. * @author Morris Jobke <hey@morrisjobke.de>
  11. * @author Roeland Jago Douma <roeland@famdouma.nl>
  12. * @author Vincent Petry <pvince81@owncloud.com>
  13. *
  14. * @license AGPL-3.0
  15. *
  16. * This code is free software: you can redistribute it and/or modify
  17. * it under the terms of the GNU Affero General Public License, version 3,
  18. * as published by the Free Software Foundation.
  19. *
  20. * This program is distributed in the hope that it will be useful,
  21. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. * GNU Affero General Public License for more details.
  24. *
  25. * You should have received a copy of the GNU Affero General Public License, version 3,
  26. * along with this program. If not, see <http://www.gnu.org/licenses/>
  27. *
  28. */
  29. // We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades
  30. // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
  31. // when updating major/minor version number.
  32. $OC_Version = array(18, 0, 0, 3);
  33. // The human readable string
  34. $OC_VersionString = '18.0.0 Beta1';
  35. $OC_VersionCanBeUpgradedFrom = [
  36. 'nextcloud' => [
  37. '17.0' => true,
  38. '18.0' => true,
  39. ],
  40. 'owncloud' => [
  41. ],
  42. ];
  43. // default Nextcloud channel
  44. $OC_Channel = 'git';
  45. // The build number
  46. $OC_Build = '';
  47. // Vendor of this package
  48. $vendor = 'nextcloud';