
* Uses the new language files * Updated documentation * Although MUI_DIRECTORYPAGE_BGCOLOR and MUI_STARTMENUPAGE_BGCOLOR are documented as interface setttings that apply to every directory page or Start Menu folder page, they were actually implemented as page specific settings. They have been changed to interface settings. * MUI_LANGDLL_DISPLAY now also reads a previously saved language from the registry if the installation is silent. * InstallOptions macros have been moved to a separate header file (InstallOptions.nsh). The MUI_INSTALLOPTIONS_* macros are still provided for backwards compatibility and insert the equalivent INSTALLOPTIONS_* macros. git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5229 212acab6-be3b-0410-9dea-997c60f758d6
31 lines
502 B
Python
31 lines
502 B
Python
target = 'Modern UI'
|
|
|
|
docs = Split("""
|
|
Changelog.txt
|
|
License.txt
|
|
Readme.html
|
|
""")
|
|
|
|
doc_images = Split("""
|
|
closed.gif
|
|
header.gif
|
|
open.gif
|
|
screen1.png
|
|
screen2.png
|
|
""")
|
|
|
|
contribs = Split("""
|
|
ioSpecial.ini
|
|
System.nsh
|
|
""")
|
|
|
|
|
|
Import('defenv')
|
|
|
|
def join(prefix, list):
|
|
return map(lambda x: '%s/%s' % (prefix, x), list)
|
|
|
|
defenv.DistributeDocs(docs, path=target)
|
|
path = 'images'
|
|
defenv.DistributeDocs(join(path,doc_images), path='%s/%s'%(target,path))
|
|
defenv.DistributeContrib(contribs, path=target)
|