From b41d9514d119a25898254cef33a811dad1266725 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Sat, 14 Jan 2023 06:00:30 -0800 Subject: [PATCH] Windows icon --- deno.jsonc | 1 - desktop/forge.config.ts | 4 ++-- scripts/build_demo.sh | 2 +- web/images/{icon.ico => logo.ico} | Bin 4 files changed, 3 insertions(+), 4 deletions(-) rename web/images/{icon.ico => logo.ico} (100%) diff --git a/deno.jsonc b/deno.jsonc index c55c5833..7f7a52c3 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -6,7 +6,6 @@ "build": "deno run -A --unstable --check build_plugs.ts && deno run -A --unstable --check build_web.ts", "plugs": "deno run -A --unstable --check build_plugs.ts", "watch-web": "deno run -A --unstable --check build_web.ts --watch", - "watch-mobile": "deno run -A --unstable --check build_mobile.ts --watch", "watch-server": "deno run -A --unstable --check --watch silverbullet.ts", // The only reason to run a shell script is that deno task doesn't support globs yet (e.g. *.plug.yaml) "watch-plugs": "deno run -A --unstable --check build_plugs.ts -w", diff --git a/desktop/forge.config.ts b/desktop/forge.config.ts index 89fd484d..e9a3059b 100644 --- a/desktop/forge.config.ts +++ b/desktop/forge.config.ts @@ -83,8 +83,8 @@ const config: ForgeConfig = { rebuildConfig: {}, makers: [ new MakerSquirrel({ - iconUrl: "https://silverbullet.md/icon.ico", - setupIcon: "../web/images/icon.ico" + iconUrl: "https://silverbullet.md/logo.ico", + setupIcon: "../web/images/logo.ico" }), new MakerZIP({}, ["darwin", "linux"]), new MakerRpm({}), diff --git a/scripts/build_demo.sh b/scripts/build_demo.sh index 2ee95a02..84a6557d 100755 --- a/scripts/build_demo.sh +++ b/scripts/build_demo.sh @@ -38,4 +38,4 @@ echo "Bundling..." deno task bundle cp dist/silverbullet.js website_build/ cp dist_bundle/web/global.plug.json website_build/ -cp web/images/icon.ico website_build/ \ No newline at end of file +cp web/images/logo.ico website_build/ \ No newline at end of file diff --git a/web/images/icon.ico b/web/images/logo.ico similarity index 100% rename from web/images/icon.ico rename to web/images/logo.ico