Skip to content

Commit

Permalink
Updated browser versions
Browse files Browse the repository at this point in the history
Chrome: 0.1.6
Edge: 0.1.6
Firefox: 0.1.7 (skipped 0.1.6 for FF addon store ban)
Safari: 0.1.5
  • Loading branch information
mgabdev committed Apr 25, 2019
1 parent ed43612 commit 389575d
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.5 |
Edge | v0.1.5 |
Firefox | v0.1.5 |
Safari | v0.1.4 |
Chrome | v0.1.6 |
Edge | v0.1.6 |
Firefox | v0.1.7 |
Safari | v0.1.5 |

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

0 comments on commit 389575d

Please sign in to comment.