version.php 1.6 KB

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