diff --git a/.github/workflows/creat_release.yml b/.github/workflows/creat_release.yml index 2593db8..eb901e2 100644 --- a/.github/workflows/creat_release.yml +++ b/.github/workflows/creat_release.yml @@ -36,8 +36,8 @@ jobs: - name: Build executable run: | # pyinstaller --hidden-import=console.detection --onefile --uac-admin VpngateClient\VpngateClient.py - pyinstaller --onefile --uac-admin VpngateClient\VpngateClient.py - pyinstaller --onefile --uac-admin VpngateClient\VpngateClient_global.py + pyinstaller --onefile --uac-admin -i VpngateClient\logo.ico VpngateClient\VpngateClient.py + pyinstaller --onefile --uac-admin -i VpngateClient\logo.ico VpngateClient\VpngateClient_global.py dir dist - name: Get tag info diff --git a/.gitignore b/.gitignore index d867da4..cfac29f 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ __pycache__ build dist *test*.* +.idea/ # https://github.com/phusion/debian-packaging-for-the-modern-developer/blob/master/.gitignore debhelper-build-stamp diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..5dbd7af --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +VpngateClient_global.py \ No newline at end of file diff --git a/VpngateClient/logo.ico b/VpngateClient/logo.ico new file mode 100644 index 0000000..3011f34 Binary files /dev/null and b/VpngateClient/logo.ico differ