2017-08-05 00:19:55 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import os
|
|
|
|
import json
|
2017-08-11 00:50:23 +02:00
|
|
|
import re
|
2017-08-05 00:19:55 +02:00
|
|
|
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])
|
|
|
|
|
2018-02-23 15:56:45 +01:00
|
|
|
version = ''
|
|
|
|
with open(os.path.join(proj_dir, 'dist', 'version')) as f:
|
|
|
|
version = f.read().strip()
|
2017-08-05 00:19:55 +02:00
|
|
|
|
2018-04-27 18:38:09 +02:00
|
|
|
firefox_manifest = {}
|
|
|
|
firefox_manifest_file = os.path.join(build_dir, 'manifest.json')
|
|
|
|
with open(firefox_manifest_file) as f2:
|
|
|
|
firefox_manifest = json.load(f2)
|
2017-08-05 00:19:55 +02:00
|
|
|
|
2019-06-17 13:35:14 +02:00
|
|
|
if 'sidebar_action' in firefox_manifest:
|
|
|
|
match = re.search('^(\d+\.\d+\.\d+)(\.\d+)$', version)
|
|
|
|
if not match:
|
|
|
|
# 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 firefox_manifest['sidebar_action']
|
2017-08-05 00:19:55 +02:00
|
|
|
|
2018-06-01 14:12:44 +02:00
|
|
|
firefox_manifest['version'] = version
|
|
|
|
|
2018-04-27 18:38:09 +02:00
|
|
|
with open(firefox_manifest_file, 'w') as f2:
|
|
|
|
json.dump(firefox_manifest, f2, indent=2, separators=(',', ': '), sort_keys=True)
|
2017-08-05 00:19:55 +02:00
|
|
|
f2.write('\n')
|