* Distribute MUI2 beta
* Preliminary MUI2 documentation git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5249 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
a52e1dd17c
commit
d7881c29c8
5 changed files with 1196 additions and 0 deletions
1158
Contrib/Modern UI 2/Readme.html
Normal file
1158
Contrib/Modern UI 2/Readme.html
Normal file
File diff suppressed because it is too large
Load diff
35
Contrib/Modern UI 2/SConscript
Normal file
35
Contrib/Modern UI 2/SConscript
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
target = 'Modern UI 2'
|
||||||
|
|
||||||
|
docs = Split("""
|
||||||
|
License.txt
|
||||||
|
Readme.html
|
||||||
|
""")
|
||||||
|
|
||||||
|
|
||||||
|
contribs = Split("""
|
||||||
|
Interface.nsh
|
||||||
|
Localization.nsh
|
||||||
|
MUI2.nsh
|
||||||
|
Pages.nsh
|
||||||
|
""")
|
||||||
|
|
||||||
|
pages = Split("""
|
||||||
|
Components.nsh
|
||||||
|
Directory.nsh
|
||||||
|
Finish.nsh
|
||||||
|
InstallFiles.nsh
|
||||||
|
License.nsh
|
||||||
|
StartMenu.nsh
|
||||||
|
UninstallConfirm.nsh
|
||||||
|
Welcome.nsh
|
||||||
|
""")
|
||||||
|
|
||||||
|
Import('defenv')
|
||||||
|
|
||||||
|
def join(prefix, list):
|
||||||
|
return map(lambda x: '%s/%s' % (prefix, x), list)
|
||||||
|
|
||||||
|
defenv.DistributeDocs(docs, path=target)
|
||||||
|
path = 'Pages'
|
||||||
|
defenv.DistributeContrib(join(path,pages), path='%s/%s'%(target,path))
|
||||||
|
defenv.DistributeContrib(contribs, path=target)
|
1
Include/MUI2.nsh
Normal file
1
Include/MUI2.nsh
Normal file
|
@ -0,0 +1 @@
|
||||||
|
!include "${NSISDIR}\Contrib\Modern UI 2\MUI2.nsh"
|
|
@ -6,6 +6,7 @@ includes = Split("""
|
||||||
LogicLib.nsh
|
LogicLib.nsh
|
||||||
Memento.nsh
|
Memento.nsh
|
||||||
MUI.nsh
|
MUI.nsh
|
||||||
|
MUI2.nsh
|
||||||
Sections.nsh
|
Sections.nsh
|
||||||
StrFunc.nsh
|
StrFunc.nsh
|
||||||
TextFunc.nsh
|
TextFunc.nsh
|
||||||
|
|
|
@ -46,6 +46,7 @@ misc = [
|
||||||
'Graphics',
|
'Graphics',
|
||||||
'Language files',
|
'Language files',
|
||||||
'Modern UI',
|
'Modern UI',
|
||||||
|
'Modern UI 2',
|
||||||
'VPatch',
|
'VPatch',
|
||||||
'ExDLL'
|
'ExDLL'
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue