Skip to content

Commit

Permalink
Updated browser versions
Browse files Browse the repository at this point in the history
Chrome: 0.1.8
Edge: 0.1.7
Firefox: 0.1.9
Safari: 0.1.6
  • Loading branch information
mgabdev committed Apr 29, 2019
1 parent b669ae0 commit 1d6aa2f
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 @@ -14,10 +14,10 @@ Latest versions:

| Browser | Version |
| --- | --- |
Chrome | v0.1.7 |
Edge | v0.1.6 |
Firefox | v0.1.8 |
Safari | v0.1.5 |
Chrome | v0.1.8 |
Edge | v0.1.7 |
Firefox | v0.1.9 |
Safari | v0.1.6 |

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.5</string>
<string>0.1.6</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,16 +5,16 @@ const Browser = require('./browser');
const chrome = new Browser({
name: 'Google Chrome',
slug: 'chrome',
version: '0.1.7',
version: '0.1.8',
scriptVariableMap: {
BROWSER: 'chrome',
MESSENGER: 'extension',
},
manifestMap: {
"background.persistent": false,
"offline_enabled": false,
"version_name": "0.1.7",
"version": "0.1.7",
"version_name": "0.1.8",
"version": "0.1.8",
"options_page": "options/options.html",
"update_url": "https://dissenter.com/dist/extensions/updates/chrome/manifest.xml",
"omnibox": {
Expand All @@ -30,13 +30,13 @@ const chrome = new Browser({
const firefox = new Browser({
name: 'Mozilla Firefox',
slug: 'firefox',
version: '0.1.8',
version: '0.1.9',
scriptVariableMap: {
BROWSER: 'browser',
MESSENGER: 'runtime',
},
manifestMap: {
"version": "0.1.8",
"version": "0.1.9",
"sidebar_action": {
"default_title": "Dissenter",
"default_panel": "sidebar/sidebar.html",
Expand All @@ -61,14 +61,14 @@ const firefox = new Browser({
const edge = new Browser({
name: 'Microsoft Edge',
slug: 'edge',
version: '0.1.6',
version: '0.1.7',
scriptVariableMap: {
BROWSER: 'browser',
MESSENGER: 'runtime',
},
manifestMap: {
"background.persistent": false,
"version": "0.1.6",
"version": "0.1.7",
"author": "Gab.com",
"options_ui": {
"page": "options/options.html",
Expand All @@ -85,7 +85,7 @@ const edge = new Browser({
const safari = new Browser({
name: 'Apple Safari',
slug: 'safari',
version: '0.1.5',
version: '0.1.6',
scriptVariableMap: {
BROWSER: 'browser',
CONTEXT_MENUS: 'menu',
Expand Down

0 comments on commit 1d6aa2f

Please sign in to comment.