Skip to content

Commit

Permalink
v0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-hub committed Feb 17, 2020
1 parent 4a7be69 commit c9fc342
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "trackers-away",
"version": "0.1.8",
"version": "0.1.9",
"description": "The best cross-platform ads, tracking service blocker and hosts manager.",
"repository": "https://github.com/tim-hub/TrackersAway",
"main": "src/main/main.js",
Expand All @@ -16,28 +16,28 @@
"Trackers Blocker",
"Ads Blocker"
],
"author": "",
"license": "",
"author": "github.com/tim-hub",
"license": "APACHE V2",
"devDependencies": {
"bulma-tooltip": "2.0.2",
"electron": "8.0.1",
"electron-builder": "22.3.2",
"eslint": "6.3.0",
"eslint-config-google": "0.14.0",
"mocha": "6.2.0",
"redux": "4.0.5",
"sudo-prompt": "9.1.1"
"mocha": "6.2.0"
},
"dependencies": {
"axios": "0.19.2",
"bulma-tooltip": "2.0.2",
"dotenv": "^8.0.0",
"electron-reload": "1.5.0",
"electron-store": "^5.0.0",
"md5": "^2.2.1",
"pino": "^5.13.1",
"pino-pretty": "^3.2.0",
"ramda": "^0.26.1",
"sha.js": "^2.4.11"
"redux": "4.0.5",
"sha.js": "^2.4.11",
"sudo-prompt": "9.1.1"
},
"build": {
"appId": "uno.bai.tim.bear-blocker",
Expand Down
2 changes: 1 addition & 1 deletion src/main/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const createWindow = () => {
win.loadFile(path.join(__dirname, '../pages/index2.html'));

// Open the DevTools.
if (process.env.LOG_LEVEL === 'debug') {
if (process.env.LOG_LEVEL && process.env.LOG_LEVEL === 'debug') {
win.webContents.openDevTools();
}

Expand Down

0 comments on commit c9fc342

Please sign in to comment.