fix(gui): ship icon.png as real resource for packaged window icon (linux/mac/win)

This commit is contained in:
2026-08-17 20:57:27 +08:00
parent b9f2486037
commit ca81048637

View File

@ -41,6 +41,10 @@
{
"from": "bin/llmsproxy",
"to": "bin/llmsproxy"
},
{
"from": "build/icon.png",
"to": "build/icon.png"
}
]
},
@ -49,7 +53,13 @@
},
"mac": {
"target": "dmg",
"icon": "build/icon.png"
"icon": "build/icon.png",
"extraResources": [
{
"from": "build/icon.png",
"to": "build/icon.png"
}
]
},
"win": {
"target": "nsis",
@ -62,6 +72,10 @@
{
"from": "bin/lua51.dll",
"to": "bin/lua51.dll"
},
{
"from": "build/icon.png",
"to": "build/icon.png"
}
]
},