petersa
10th June 2001 03:01 UTC
Hi guys,
Y'know that bit of writing above the install progress bar? I think it'd be good if you could change it to something you want.
So instead of seeing a million things flash by in one second, you can have it so it says 'Installing Program Files', 'Creating Start Menu Group', etc.
It seems pretty easy to put in the script too. You could have:
InstallWritingThingy 'Installing Program Files'
...and to revert it back to displaying the files and stuff you could have something like:
InstallWritingThingy -
Thoughts?
Koen van de Sande
10th June 2001 12:33 UTC
Sounds good.
Edgewize
10th June 2001 22:22 UTC
I'll add the following command to my upcoming release:
ProgressText [set] "Blah blah blah"
ProgressText auto
Expect a forum announcement about my changes to NSIS some time this week.
petersa
29th October 2001 07:41 UTC
Just wondering if this might make it into an official Nullsoft version some time soon.
justin
30th October 2001 18:13 UTC
I'm adding an instruction, SetDetailsPrint, which can take one of the following parameters:
So basically you can do something like this:
SetDetailsPrint textonly
DetailPrint "Extracting files.."
SetDetailsPrint none ; this could be 'listonly' if you want them to be listed in the list view
; extract a bunch of files
SetDetailsPrint both ; back to normal
I'll be putting 1.62 up this afternoon.
-Justin