2013-09-28 01:41:24 +04:00
|
|
|
<?php
|
2015-02-26 13:37:37 +03:00
|
|
|
|
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.
|
2015-02-28 02:26:31 +03:00
|
|
|
$OC_Version=array(8, 1, 0, 0);
|
2013-09-28 01:41:24 +04:00
|
|
|
|
2013-10-30 01:11:49 +04:00
|
|
|
// The human readable string
|
2015-02-28 02:26:31 +03:00
|
|
|
$OC_VersionString='8.1 pre alpha';
|
2013-09-28 01:41:24 +04:00
|
|
|
|
|
|
|
// 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='';
|
|
|
|
|