Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2013-09-28 01:41:24 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-09-30 22:19:26 +0400
commit2cf26ee0b16bebe83a08e4be89681f73208ba9ae (patch)
treeb917762373122c588e53ff80ee8ece5bda261b3f /version.php
parent69dd6af57489395527e94b033e3f0b8d5c73ca12 (diff)
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.php17
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='';
+