Skip to content

Commit

Permalink
Custom Title
Browse files Browse the repository at this point in the history
타이틀 이름 변경
  • Loading branch information
pgh268400 committed Oct 12, 2022
1 parent 44ad6c7 commit 279e939
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 1 deletion.
77 changes: 77 additions & 0 deletions build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
{
"version": "auto-py-to-exe-configuration_v1",
"pyinstallerOptions": [
{
"optionDest": "noconfirm",
"value": true
},
{
"optionDest": "filenames",
"value": "C:/Users/pgh26/PycharmProjects/NWebtoon_Downloader/main.py"
},
{
"optionDest": "onefile",
"value": true
},
{
"optionDest": "console",
"value": true
},
{
"optionDest": "icon_file",
"value": "C:/Users/pgh26/PycharmProjects/NWebtoon_Downloader/main.ico"
},
{
"optionDest": "ascii",
"value": false
},
{
"optionDest": "clean_build",
"value": false
},
{
"optionDest": "strip",
"value": false
},
{
"optionDest": "noupx",
"value": false
},
{
"optionDest": "disable_windowed_traceback",
"value": false
},
{
"optionDest": "embed_manifest",
"value": true
},
{
"optionDest": "uac_admin",
"value": false
},
{
"optionDest": "uac_uiaccess",
"value": false
},
{
"optionDest": "win_private_assemblies",
"value": false
},
{
"optionDest": "win_no_prefer_redirects",
"value": false
},
{
"optionDest": "bootloader_ignore_signals",
"value": false
},
{
"optionDest": "argv_emulation",
"value": false
}
],
"nonPyinstallerOptions": {
"increaseRecursionLimit": true,
"manualArguments": ""
}
}
Binary file added main.ico
Binary file not shown.
6 changes: 5 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# -*- coding: utf-8 -*-
from module.ImageMerger import *
from sys import exit
# 웹툰 다운로드 Class
from module.Nwebtoon import *

# 타이틀 이름 변경용
import ctypes
ctypes.windll.kernel32.SetConsoleTitleW("NWebtoon Downloader v4")

# 이미지 병합 Class
from module.ImageMerger import *

if __name__ == "__main__":
dialog = input('모드를 선택해주세요 d : 다운로드 , m : 이미지합치기 : ')
Expand Down
Binary file added output/NWebtoon v4.exe
Binary file not shown.

0 comments on commit 279e939

Please sign in to comment.