From 3f12f86cd9fc55f8becec1c08ca41c040943d601 Mon Sep 17 00:00:00 2001 From: Ave Ozkal Date: Thu, 31 Jan 2019 11:45:29 +0300 Subject: [PATCH] branding: start custom version numbers from 1000 so that we won't have issues current issue: - 8.3.5 is 83512 - 8.3.6 is 8361 that's not okay, and it's failing to distribute updates. --- patches/branding/addpatch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/branding/addpatch.py b/patches/branding/addpatch.py index 67950da..bc0ffc2 100644 --- a/patches/branding/addpatch.py +++ b/patches/branding/addpatch.py @@ -13,7 +13,7 @@ def counterup(branch="base"): with open(cfname, 'r') as file: countdata = file.read() else: - countdata = 0 + countdata = 1000 countdata = int(countdata) + 1