1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 01:36:27 +00:00

Update icon and focusing (#12)

This commit is contained in:
Ciro Mattia Gonano
2013-03-07 10:51:45 +01:00
parent 3365f111e4
commit 10724489fc
9 changed files with 11 additions and 97 deletions

View File

@@ -27,7 +27,7 @@ if sys.platform == 'darwin':
options=dict(
py2app=dict(
argv_emulation=True,
iconfile='resources/comic2ebook.icns',
iconfile='comic2ebook.icns',
plist=dict(
CFBundleName=NAME,
CFBundleShortVersionString=VERSION,
@@ -43,7 +43,7 @@ elif sys.platform == 'win32':
from cx_Freeze import setup, Executable
base = "Win32GUI"
extra_options = dict(
executables=[Executable("kcc.py", base=base, icon='resources/comic2ebook.ico',
executables=[Executable("kcc.py", base=base, icon='comic2ebook.ico',
appendScriptToExe=True, appendScriptToLibrary=False)],
options=dict(
build_exe=dict(