1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00

revision 100+ will be release candidates

This commit is contained in:
gorhill 2016-08-16 14:04:49 -04:00
parent 160ee42e9f
commit d1413bef69

View File

@ -79,7 +79,12 @@ with open(chromium_manifest, encoding='utf-8') as m:
match = re.search('^(\d+\.\d+\.\d+)(\.\d+)$', manifest['version'])
if match:
manifest['version'] = match.group(1) + 'b' + match.group(2)[1:]
buildtype = int(match.group(2)[1:])
if buildtype < 100:
builttype = 'b' + str(buildtype)
else:
builttype = 'rc' + str(buildtype - 100)
manifest['version'] = match.group(1) + builttype
manifest['homepage'] = 'https://github.com/gorhill/uBlock'
manifest['description'] = descriptions['en']