From f1ed8d36c4541e7422daee06e5a05f8d48efd003 Mon Sep 17 00:00:00 2001 From: "seppmutterman@gmail.com" Date: Sun, 14 Dec 2025 18:47:17 +0100 Subject: [PATCH] fixed the build script --- build.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.ps1 b/build.ps1 index 9c0fdb3..170ff08 100644 --- a/build.ps1 +++ b/build.ps1 @@ -6,13 +6,14 @@ Write-Host "Building application with PyInstaller..." -ForegroundColor Cyan pyinstaller ` --onefile ` --noconfirm ` + --windowed ` --hidden-import wx._xml ` --add-data "FiraCode-Regular.ttf;." ` --add-data "FiraCode-SemiBold.ttf;." ` --add-data "src\sounds\*;sounds" ` --add-data "venv\Lib\site-packages\irc\codes.txt;irc" ` --add-data "icon.ico;." ` - --add-data "src\server.ico;." ` + --add-data "src\channel.ico;." ` --icon "icon.ico" ` "src/main.py"