version.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Frank Karlitschek <frank@karlitschek.de>
  8. * @author Joas Schilling <coding@schilljs.com>
  9. * @author Julius Härtl <jus@bitgrid.net>
  10. * @author Lukas Reschke <lukas@statuscode.ch>
  11. * @author Morris Jobke <hey@morrisjobke.de>
  12. * @author Vincent Petry <vincent@nextcloud.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 patch level to trigger DB upgrades
  30. // between betas, final and RCs. This is _not_ the public version number. Reset minor/patch level
  31. // when updating major/minor version number.
  32. $OC_Version = [28, 0, 3, 2];
  33. // The human-readable string
  34. $OC_VersionString = '28.0.3';
  35. $OC_VersionCanBeUpgradedFrom = [
  36. 'nextcloud' => [
  37. '27.0' => true,
  38. '27.1' => true,
  39. '28.0' => true,
  40. ],
  41. 'owncloud' => [
  42. '10.13' => true,
  43. ],
  44. ];
  45. // default Nextcloud channel
  46. $OC_Channel = 'git';
  47. // The build number
  48. $OC_Build = '';
  49. // Vendor of this package
  50. $vendor = 'nextcloud';