2013-09-28 01:41:24 +04:00
|
|
|
<?php
|
|
|
|
|
2014-04-21 17:44:54 +04: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-03-17 20:58:19 +04:00
|
|
|
$OC_Version=array(6, 90, 0, 2);
|
2013-09-28 01:41:24 +04:00
|
|
|
|
2013-10-30 01:11:49 +04:00
|
|
|
// The human readable string
|
2013-12-05 13:35:19 +04:00
|
|
|
$OC_VersionString='7.0 pre alpha';
|
2013-09-28 01:41:24 +04:00
|
|
|
|
|
|
|
// The ownCloud edition
|
|
|
|
$OC_Edition='';
|
|
|
|
|
|
|
|
// The ownCloud channel
|
2013-10-13 23:51:47 +04:00
|
|
|
$OC_Channel='git';
|
2013-09-28 01:41:24 +04:00
|
|
|
|
|
|
|
// The build number
|
|
|
|
$OC_Build='';
|
|
|
|
|