2018-04-27 17:43:35 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import os
|
|
|
|
import json
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
|
|
|
|
if len(sys.argv) == 1 or not sys.argv[1]:
|
|
|
|
raise SystemExit('Build dir missing.')
|
|
|
|
|
|
|
|
proj_dir = os.path.join(os.path.split(os.path.abspath(__file__))[0], '..')
|
|
|
|
build_dir = os.path.abspath(sys.argv[1])
|
|
|
|
|
|
|
|
version = ''
|
|
|
|
with open(os.path.join(proj_dir, 'dist', 'version')) as f:
|
|
|
|
version = f.read().strip()
|
|
|
|
|
|
|
|
webext_manifest = {}
|
|
|
|
webext_manifest_file = os.path.join(build_dir, 'manifest.json')
|
2018-09-11 12:44:52 +02:00
|
|
|
with open(webext_manifest_file, encoding='utf-8') as f2:
|
2018-04-27 17:43:35 +02:00
|
|
|
webext_manifest = json.load(f2)
|
|
|
|
|
2018-05-30 17:52:52 +02:00
|
|
|
webext_manifest['version'] = version
|
|
|
|
|
|
|
|
match = re.search('^\d+\.\d+\.\d+\.\d+$', version)
|
2018-04-27 17:43:35 +02:00
|
|
|
if match:
|
2018-05-30 17:52:52 +02:00
|
|
|
webext_manifest['name'] += ' development build'
|
|
|
|
webext_manifest['short_name'] += ' dev build'
|
|
|
|
webext_manifest['browser_action']['default_title'] += ' dev build'
|
2018-09-26 13:20:54 +02:00
|
|
|
else:
|
|
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=1459007
|
|
|
|
# By design Firefox opens the sidebar with new installation of
|
|
|
|
# uBO when sidebar_action is present in the manifest.
|
|
|
|
# Remove sidebarAction support for stable release of uBO.
|
|
|
|
del webext_manifest['sidebar_action']
|
2018-04-27 17:43:35 +02:00
|
|
|
|
2018-09-11 12:44:52 +02:00
|
|
|
with open(webext_manifest_file, mode='w', encoding='utf-8') as f2:
|
2018-04-27 17:43:35 +02:00
|
|
|
json.dump(webext_manifest, f2, indent=2, separators=(',', ': '), sort_keys=True)
|
|
|
|
f2.write('\n')
|