Skip to content

Commit

Permalink
Updated browser versions
Browse files Browse the repository at this point in the history
• Updated:
- Browser versions
- Chrome: 0.1.3
- Edge: 0.1.3
- Firefox: 0.1.2
- Safari: 0.1.2
  • Loading branch information
mgabdev committed Mar 12, 2019
1 parent 6e431f0 commit 6870825
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ Latest versions:

| Browser | Version |
| --- | --- |
Chrome | v0.1.2 |
Edge | v0.1.2 |
Firefox | v0.1.1 |
Safari | v0.1.1 |
Chrome | v0.1.3 |
Edge | v0.1.3 |
Firefox | v0.1.2 |
Safari | v0.1.2 |

This extension only requires developer dependencies.

Expand Down
2 changes: 1 addition & 1 deletion config/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleShortVersionString</key>
<string>0.1.1</string>
<string>0.1.2</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>Chrome</key>
Expand Down
16 changes: 8 additions & 8 deletions config/browsers.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,29 @@ const Browser = require('./browser');
const chrome = new Browser({
name: 'Google Chrome',
slug: 'chrome',
version: '0.1.2',
version: '0.1.3',
scriptVariableMap: {
BROWSER: 'chrome',
MESSENGER: 'extension',
},
manifestMap: {
"background.persistent": false,
"offline_enabled": false,
"version_name": "0.1.2",
"version": "0.1.2",
"version_name": "0.1.3",
"version": "0.1.3",
},
});

const firefox = new Browser({
name: 'Mozilla Firefox',
slug: 'firefox',
version: '0.1.1',
version: '0.1.2',
scriptVariableMap: {
BROWSER: 'browser',
MESSENGER: 'runtime',
},
manifestMap: {
"version": "0.1.1",
"version": "0.1.2",
"sidebar_action": {
"default_title": "Dissenter",
"default_panel": "sidebar/sidebar.html",
Expand All @@ -39,22 +39,22 @@ const firefox = new Browser({
const edge = new Browser({
name: 'Microsoft Edge',
slug: 'edge',
version: '0.1.2',
version: '0.1.3',
scriptVariableMap: {
BROWSER: 'browser',
MESSENGER: 'runtime',
},
manifestMap: {
"background.persistent": false,
"version": "0.1.2",
"version": "0.1.3",
"author": "Gab.com",
},
});

const safari = new Browser({
name: 'Apple Safari',
slug: 'safari',
version: '0.1.1',
version: '0.1.2',
scriptVariableMap: {
BROWSER: 'browser',
CONTEXT_MENUS: 'menu',
Expand Down

0 comments on commit 6870825

Please sign in to comment.