Skip to content

Commit

Permalink
Updated browser manifest version build functionality
Browse files Browse the repository at this point in the history
• Updated:
- Browser manifest version build functionality, setting version in browser classes as they are not all the same.
  • Loading branch information
mgabdev committed Feb 28, 2019
1 parent 35f3ff6 commit a8ca70e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion config/browsers.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ const chrome = new Browser({
"background.persistent": false,
"incognito": "not_allowed",
"offline_enabled": false,
"version_name": "0.1.0",
"version_name": "0.1.1",
"version": "0.1.1",
},
});

Expand All @@ -27,6 +28,7 @@ const firefox = new Browser({
MESSENGER: 'runtime',
},
manifestMap: {
"version": "0.1.0",
},
});

Expand All @@ -40,6 +42,7 @@ const edge = new Browser({
},
manifestMap: {
"background.persistent": false,
"version": "0.1.1",
},
});

Expand Down
1 change: 0 additions & 1 deletion config/manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module.exports = manifest = {
"short_name": "Dissenter",
"description": "Dissenter is the comment section of the Internet.",
"homepage_url": "https://dissenter.com",
"version": "0.1.0",
"icons": {
"16": "assets/images/logo/icon-16.png",
"48": "assets/images/logo/icon-48.png",
Expand Down

0 comments on commit a8ca70e

Please sign in to comment.