summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--gui/tasks/distribution.js5
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index edaa39109c..27f012050b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -73,6 +73,7 @@ Line wrap the file at 100 chars. Th
#### Windows
- Fix "cannot find the file" error while creating a Wintun adapter by upgrading Wintun.
- Retry when creating a WireGuard tunnel fails due to no default routes being found.
+- Prevent tray icons from being extraced to `%TEMP%` directory.
#### Linux
- Stop using NM for managing DNS if it's newer than 1.26.
diff --git a/gui/tasks/distribution.js b/gui/tasks/distribution.js
index d6e6481871..e70ba6ab37 100644
--- a/gui/tasks/distribution.js
+++ b/gui/tasks/distribution.js
@@ -180,7 +180,10 @@ const config = {
function packWin() {
return builder.build({
targets: builder.Platform.WINDOWS.createTarget(),
- config: config,
+ config: {
+ ...config,
+ asarUnpack: ['build/assets/images/menubar icons/win32/lock-*.ico'],
+ },
});
}