Skip to content

Commit 736de1e

Browse files
Specify application bundle id
1 parent cdfbffa commit 736de1e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Clippy",
44
"productName": "Clippy",
55
"description": "Clipboard manager with RPC",
6-
"version": "0.11.0",
6+
"version": "0.12.0",
77
"author": "AndreasArvidsson",
88
"license": "MIT",
99
"main": "out/main.js",

package.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import { packager } from "@electron/packager";
88
out: "dist",
99
overwrite: true,
1010
icon: "images/icon_dark",
11-
ignore: [whitelistToIgnore(["out", "node_modules", "package.json"]), ".map$"]
11+
appBundleId: "com.github.andreasarvidsson.clippy",
12+
ignore: [whitelistToIgnore(["out", "node_modules", "package.json"]), ".map$"],
1213
});
1314
})();
1415

0 commit comments

Comments
 (0)