diff --git a/build/icon.ico b/build/icon.ico new file mode 100644 index 0000000..3ee9bfb Binary files /dev/null and b/build/icon.ico differ diff --git a/package.json b/package.json index d516ba0..54db29d 100644 --- a/package.json +++ b/package.json @@ -183,7 +183,8 @@ "arm64" ] } - ] + ], + "icon": "icon.ico" }, "publish": { "provider": "github" diff --git a/src/shared/paths.ts b/src/shared/paths.ts index a935d82..af7d92b 100644 --- a/src/shared/paths.ts +++ b/src/shared/paths.ts @@ -9,4 +9,4 @@ import { join } from "path"; export const STATIC_DIR = /* @__PURE__ */ join(__dirname, "..", "..", "static"); export const VIEW_DIR = /* @__PURE__ */ join(STATIC_DIR, "views"); export const BADGE_DIR = /* @__PURE__ */ join(STATIC_DIR, "badges"); -export const ICON_PATH = /* @__PURE__ */ join(STATIC_DIR, "icon.png"); +export const ICON_PATH = /* @__PURE__ */ join(STATIC_DIR, "icon.ico"); diff --git a/static/icon.ico b/static/icon.ico index 1dc9894..3ee9bfb 100644 Binary files a/static/icon.ico and b/static/icon.ico differ