mirror of https://github.com/KLayout/klayout.git
parent
3fe0280a14
commit
0f2983e553
|
|
@ -306,7 +306,8 @@ def MakeTargetDMGFile(msg=""):
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
t = string.Template(tmpl)
|
t = string.Template(tmpl)
|
||||||
applescript = t.substitute( ORGX='50', ORGY='100',
|
applescript = t.safe_substitute(
|
||||||
|
ORGX='50', ORGY='100',
|
||||||
WIN_WIDTH='1000', WIN_HEIGHT='700',
|
WIN_WIDTH='1000', WIN_HEIGHT='700',
|
||||||
FULL_PATH_DS_STORE='/Volumes/%s/.DS_Store' % VolumeDMG,
|
FULL_PATH_DS_STORE='/Volumes/%s/.DS_Store' % VolumeDMG,
|
||||||
BACKGROUND_PNG_FILE=BackgroundPNG,
|
BACKGROUND_PNG_FILE=BackgroundPNG,
|
||||||
|
|
@ -396,7 +397,7 @@ def MakeTargetDMGFile(msg=""):
|
||||||
msgSF += "!!! You are working on <%s> and failed to set a custom volume icon.\n"
|
msgSF += "!!! You are working on <%s> and failed to set a custom volume icon.\n"
|
||||||
msgSF += " This looks a bug of underlying JavaFX Packager.\n"
|
msgSF += " This looks a bug of underlying JavaFX Packager.\n"
|
||||||
msgSF += " As a workaround, manually set the custom volume icon.\n"
|
msgSF += " As a workaround, manually set the custom volume icon.\n"
|
||||||
msgSF += " To do so, this Python script is going to skip...\n"
|
msgSF += " To enable your work, this Python script is going to skip...\n"
|
||||||
msgSF += " >>> (8) Changing permission to 755...\n"
|
msgSF += " >>> (8) Changing permission to 755...\n"
|
||||||
msgSF += " >>> (13) Computing MD5 checksum...\n"
|
msgSF += " >>> (13) Computing MD5 checksum...\n"
|
||||||
msgSF += " After manually setting <%s> to <%s>, \n"
|
msgSF += " After manually setting <%s> to <%s>, \n"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue