2013-09-27 21:41:24 +00:00
|
|
|
<?php
|
|
|
|
|
2014-04-21 13:44:54 +00:00
|
|
|
// We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades
|
|
|
|
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
|
|
|
|
// when updating major/minor version number.
|
2014-06-28 09:18:58 +00:00
|
|
|
$OC_Version=array(7, 0, 0, 3);
|
2013-09-27 21:41:24 +00:00
|
|
|
|
2013-10-29 21:11:49 +00:00
|
|
|
// The human readable string
|
2014-06-25 23:01:52 +00:00
|
|
|
$OC_VersionString='7.0 beta 1';
|
2013-09-27 21:41:24 +00:00
|
|
|
|
|
|
|
// The ownCloud edition
|
|
|
|
$OC_Edition='';
|
|
|
|
|
|
|
|
// The ownCloud channel
|
2013-10-13 19:51:47 +00:00
|
|
|
$OC_Channel='git';
|
2013-09-27 21:41:24 +00:00
|
|
|
|
|
|
|
// The build number
|
|
|
|
$OC_Build='';
|
|
|
|
|