diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-09-27 23:41:24 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-30 20:19:26 +0200 |
commit | 2cf26ee0b16bebe83a08e4be89681f73208ba9ae (patch) | |
tree | b917762373122c588e53ff80ee8ece5bda261b3f /version.php | |
parent | 69dd6af57489395527e94b033e3f0b8d5c73ca12 (diff) | |
download | nextcloud-server-2cf26ee0b16bebe83a08e4be89681f73208ba9ae.tar.gz nextcloud-server-2cf26ee0b16bebe83a08e4be89681f73208ba9ae.zip |
put the current version and edition into a seperate file to simplify packaging. introduce update channels and build version for automated channel updates. More about that later
Conflicts:
lib/ocsclient.php
lib/util.php
Diffstat (limited to 'version.php')
-rw-r--r-- | version.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/version.php b/version.php new file mode 100644 index 00000000000..dcdc288959e --- /dev/null +++ b/version.php @@ -0,0 +1,17 @@ +<?php + +// We only can count up. Reset minor/patchlevel when updating major/minor version number. +$OC_Version=array(5, 80, 8); + +// The human radable string +$OC_VersionString='6.0 pre alpha'; + +// The ownCloud edition +$OC_Edition=''; + +// The ownCloud channel +$OC_Channel=''; + +// The build number +$OC_Build=''; + |