mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-07 03:12:33 +01:00
This commit is contained in:
parent
3c9e7fe54f
commit
91b0ac5b3f
@ -64,10 +64,19 @@ var noopFunc = function(){};
|
|||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
||||||
vAPI.app = {
|
vAPI.app = (function() {
|
||||||
name: manifest.name.replace(' dev build', ''),
|
let version = manifest.version;
|
||||||
version: manifest.version
|
let match = /(\d+\.\d+\.\d+)(?:\.(\d+))?/.exec(version);
|
||||||
};
|
if ( match !== null ) {
|
||||||
|
let v = parseInt(match[2], 10);
|
||||||
|
version = match[1] + (v < 100 ? 'b' + v : 'rc' + (v - 100));
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
name: manifest.name.replace(/ dev\w+ build/, ''),
|
||||||
|
version: version
|
||||||
|
};
|
||||||
|
})();
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
||||||
@ -635,7 +644,9 @@ vAPI.tabs.injectScript = function(tabId, details, callback) {
|
|||||||
|
|
||||||
vAPI.setIcon = (function() {
|
vAPI.setIcon = (function() {
|
||||||
let browserAction = chrome.browserAction,
|
let browserAction = chrome.browserAction,
|
||||||
titleTemplate = chrome.runtime.getManifest().name + ' ({badge})';
|
titleTemplate =
|
||||||
|
chrome.runtime.getManifest().browser_action.default_title +
|
||||||
|
' ({badge})';
|
||||||
let icons = [
|
let icons = [
|
||||||
{
|
{
|
||||||
tabId: 0,
|
tabId: 0,
|
||||||
|
@ -25,10 +25,9 @@ manifest_out['version'] = version
|
|||||||
# Development build? If so, modify name accordingly.
|
# Development build? If so, modify name accordingly.
|
||||||
match = re.search('^\d+\.\d+\.\d+\.\d+$', version)
|
match = re.search('^\d+\.\d+\.\d+\.\d+$', version)
|
||||||
if match:
|
if match:
|
||||||
dev_build = ' development build'
|
manifest_out['name'] += ' development build'
|
||||||
manifest_out['name'] += dev_build
|
manifest_out['short_name'] += ' dev build'
|
||||||
manifest_out['short_name'] += dev_build
|
manifest_out['browser_action']['default_title'] += ' dev build'
|
||||||
manifest_out['browser_action']['default_title'] += dev_build
|
|
||||||
|
|
||||||
with open(manifest_out_file, 'w') as f:
|
with open(manifest_out_file, 'w') as f:
|
||||||
json.dump(manifest_out, f, indent=2, separators=(',', ': '), sort_keys=True)
|
json.dump(manifest_out, f, indent=2, separators=(',', ': '), sort_keys=True)
|
||||||
|
Loading…
Reference in New Issue
Block a user