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.
This commit is contained in:
ave 2019-01-31 11:45:29 +03:00
parent 82a88a3da5
commit 3f12f86cd9
No known key found for this signature in database
GPG Key ID: 09356ABAA42C842B
1 changed files with 1 additions and 1 deletions

View File

@ -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