1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 13:19:43 +02:00

Change RefID field size from 16 to 20 with updated algo

Xid dependency updated.

Moved to 20 length ID values.

Added new revision number to version and meta information. Revision number is timestamp format.
This commit is contained in:
Harvey Kandola 2018-10-04 21:03:47 +01:00
parent 7860bc1808
commit 391c143483
25 changed files with 2123 additions and 878 deletions

View file

@ -25,8 +25,6 @@ import (
"github.com/documize/community/server/web"
)
var rt env.Runtime
func main() {
// runtime stores server/application level information
rt := env.Runtime{}
@ -42,6 +40,7 @@ func main() {
rt.Product.Major = "1"
rt.Product.Minor = "71"
rt.Product.Patch = "0"
rt.Product.Revision = 181004111512
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
rt.Product.Edition = "Community"
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition)