Skip to content

Commit 33cd82b

Browse files
committed
windows dock hide fix
1 parent 6e4d80d commit 33cd82b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ contextMenu();
3131

3232
// Note: Must match `build.appId` in package.json
3333
app.setAppUserModelId(config.get('appUserModelId'));
34-
app.dock.hide();
34+
if (process.platform == 'darwin') {
35+
app.dock.hide();
36+
}
3537

3638
// Uncomment this before publishing your first version.
3739
// It's commented out as it throws an error if there are no published versions.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "beacon",
33
"productName": "beacon",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"description": "Control a USB Busylight as a Beacon/Notification",
66
"license": "MIT",
77
"repository": "josephdadams/beacon",

0 commit comments

Comments
 (0)