您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

version.php 463B

12345678910111213141516171819
  1. <?php
  2. // We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades
  3. // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
  4. // when updating major/minor version number.
  5. $OC_Version=array(7, 8, 1, 0);
  6. // The human readable string
  7. $OC_VersionString='8.0 pre alpha';
  8. // The ownCloud edition
  9. $OC_Edition='';
  10. // The ownCloud channel
  11. $OC_Channel='git';
  12. // The build number
  13. $OC_Build='';