We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e4d80d commit 33cd82bCopy full SHA for 33cd82b
index.js
@@ -31,7 +31,9 @@ contextMenu();
31
32
// Note: Must match `build.appId` in package.json
33
app.setAppUserModelId(config.get('appUserModelId'));
34
-app.dock.hide();
+if (process.platform == 'darwin') {
35
+ app.dock.hide();
36
+}
37
38
// Uncomment this before publishing your first version.
39
// It's commented out as it throws an error if there are no published versions.
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "beacon",
3
"productName": "beacon",
4
- "version": "0.1.0",
+ "version": "0.1.1",
5
"description": "Control a USB Busylight as a Beacon/Notification",
6
"license": "MIT",
7
"repository": "josephdadams/beacon",
0 commit comments