version.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 = [30, 0, 0, 0];
  33. // The human-readable string
  34. $OC_VersionString = '30.0.0 dev';
  35. $OC_VersionCanBeUpgradedFrom = [
  36. 'nextcloud' => [
  37. '29.0' => true,
  38. '30.0' => true,
  39. ],
  40. 'owncloud' => [
  41. '10.13' => true,
  42. ],
  43. ];
  44. // default Nextcloud channel
  45. $OC_Channel = 'git';
  46. // The build number
  47. $OC_Build = '';
  48. // Vendor of this package
  49. $vendor = 'nextcloud';