Archive: WELCOME and FINISH gone


WELCOME and FINISH gone
I have made an installer and the installer works fine. Now i compile them in linux but the MUI_PAGE_WELCOME and
MUI_PAGE_FINISH are gone. I have took the same code(only changed some seperators) but i see all the other pages unless the WELCOME and FINISH... ? Very strange i think ?


Make sure Contrib\Modern UI\ioSpecial.ini uses Windows line breaks.


Originally posted by kichik
Make sure Contrib\Modern UI\ioSpecial.ini uses Windows line breaks.
so i think that you mean on a new line :
these is my ioSpecial.ini

[Settings]
Rect=1044
NumFields=3
[Field 1]
Type=bitmap
Left=0
Right=109
Top=0
Bottom=193
Flags=RESIZETOFIT
[Field 2]
Type=label
Left=120
Right=315
Top=10
[Field 3]
Type=label
Left=120
Right=315

I mean the new line should be marked by CRLF ("\r\n") and not just LF ("\n"). Open the file with any half decent editor and make sure the file is using CRLF.


I have tried it and nothing changes...
I have made a very little installer and i don't understand it... again the welcome en finish pages are gone.
I have pack it in a zip-file
can someone say of it is my makensis that not work good of it is my script...
in the zip file there is a setup.exe (this file is compiled on my linux server)
a directory that names linux2 with in that directory there is a file ./afgeslankte (=little installer that i have made)

a second thing :
!define MUI_HEADERIMAGE_BITMAP "t.bmp"
!define MUI_HEADERIMAGE
i define headerimage and come a whire block in the installer. So he knows the "defines" but he doesn't take the bitmaps.
:weird:

thx a lot!


Can you recreate the zip file? My archiver (7-zip) won't open it.


Originally posted by kichik
Can you recreate the zip file? My archiver (7-zip) won't open it.
if have upload a new file, this time rar the file.

It's still not going... That file is non-existant.


Originally posted by deguix
It's still not going... That file is non-existant.
http://www.houffamarathon.be/dontunderstand.rar

or

the file ...

Yep, now it's working. But why did you copy the entire NSIS folder? Your installer doesn't use all of that. Or does it :rolleyes:?


Originally posted by deguix
Yep, now it's working. But why did you copy the entire NSIS folder? Your installer doesn't use all of that.
I have copy the entire folder because i don't know of it is my script that not work good or that i have adapted a file in the NSIS folder incorrect.

Lots of files have been changed in the archive you've attached. Contrib\Modern UI\System.nsh is one of them. It's those changes that cause all of the problems you're experiencing. You should revert all of those changes. It'd probably be easier to rebuild NSIS. Download nsis206.tar.bz2, extract it and run:

make -C Source USE_PRECOMPILED_EXEHEADS=1

Quote:


sorry,
make -C Source USE_PRECOMPILED_EXEHEADS=1

Where can i find the file Source ?

(make: *** Source: No such file or directory. Stop.)

Originally posted by kichik
Lots of files have been changed in the archive you've attached. Contrib\Modern UI\System.nsh is one of them. It's those changes that cause all of the problems you're experiencing. You should revert all of those changes. It'd probably be easier to rebuild NSIS. Download nsis206.tar.bz2, extract it and run:
make -C Source USE_PRECOMPILED_EXEHEADS=1


You need to change to the directory where you've extracted NSIS first. For example:

tar xjf nsis206.tar.bz2
cd NSIS
make -C Source USE_PRECOMPILED_EXEHEADS=1

thx!!! it works