aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorSimon Rozman <simon@rozman.si>2019-10-25 11:47:04 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2019-10-25 13:32:27 +0200
commitf91ee37c4a66d5097d0ee37c851a0d629ec0811b (patch)
tree2ec325ba63d0b60b371cfbe73997fe61580b8953
parentbuild: enable aslr and dep (diff)
downloadwireguard-windows-f91ee37c4a66d5097d0ee37c851a0d629ec0811b.tar.xz
wireguard-windows-f91ee37c4a66d5097d0ee37c851a0d629ec0811b.zip
ui: provide icons for 128x128 and 16x16 at 144dpi
Signed-off-by: Simon Rozman <simon@rozman.si>
-rw-r--r--Makefile2
-rw-r--r--build.bat2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5c6951e5..064d9191 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ DEPLOYMENT_PATH ?= Desktop
all: amd64/wireguard.exe x86/wireguard.exe
%.ico: %.svg
- convert -background none $< -define icon:auto-resize="256,128,96,64,48,32,16" $@
+ convert -background none $< -define icon:auto-resize="256,192,128,96,64,48,32,24,16" $@
resources_amd64.syso: $(RESOURCE_FILES)
x86_64-w64-mingw32-windres -i $< -o $@ -O coff
diff --git a/build.bat b/build.bat
index 122ab13d..8c735d32 100644
--- a/build.bat
+++ b/build.bat
@@ -28,7 +28,7 @@ if exist .deps\prepared goto :render
:render
echo [+] Rendering icons
- for %%a in ("ui\icon\*.svg") do convert -background none "%%~fa" -define icon:auto-resize="256,128,96,64,48,32,16" "%%~dpna.ico" || goto :error
+ for %%a in ("ui\icon\*.svg") do convert -background none "%%~fa" -define icon:auto-resize="256,192,128,96,64,48,32,24,16" "%%~dpna.ico" || goto :error
:build
set GOOS=windows