https://github.com/owncloud/core
Raw File
Tip revision: 20e7a41076a375719cab4f6763382ee471cb14ed authored by Morris Jobke on 04 July 2014, 12:57:41 UTC
Merge pull request #9444 from owncloud/design-fix-pointer
Tip revision: 20e7a41
version.php
<?php

// 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.
$OC_Version=array(8, 0, 0, 0);

// The human readable string
$OC_VersionString='8.0 pre alpha';

// The ownCloud edition
$OC_Edition='';

// The ownCloud channel
$OC_Channel='git';

// The build number
$OC_Build='';

back to top