Archive: Can I modify the dialog static version line ?


Can I modify the dialog static version line ?
Hi all.

I'm using the Beta ver which show v2.0b3
and I don't like to give impression to the users that
my software is a Beta version,

is there a way to cut off the version (is it legal ?)
and leave "Nullsoft Install System"
or "Powered by Nullsoft Install System"... ?


And again, sure.
If you are using the Modern IU use


!define MUI_VERSION "2.03"
;insert this before the MUI.nsh

;For the "Nullsoft Install System", also call BrandingText, use:
BrandingText "My custum brand" ' or just " " For empty.

Super - (as usual :-)
10X again 4 sharing your great knowledge

4 other people - note that U must do it AFTER the

!insertmacro MUI_LANGUAGE "English"

A better way, that supports multiple languages more easily would be defining MUI_BRANDING as the text you want before you include every language file. This is also written in the MUI readme.


Re: Super - (as usual :-)

Originally posted by Yovav
10X again 4 sharing your great knowledge
Thanks, glad it worked.
But isn't my "great knowledge" :) ,
it's about the experience on Nsis. ;)
Some day you will to :p

10X 4 the try
Quote:


!define MUI_BRANDING "Powered by Nullsoft Install System "
did not work,

maybe coz I'm using a modern UI with Bitmap Header...

Originally posted by kichik
A better way, that supports multiple languages more easily would be defining MUI_BRANDING as the text you want before you include every language file. This is also written in the MUI readme.

I'm sorry, it's MUI_BRANDINGTEXT.


Working.
Quote:


yea - this is working,

10Q.

Originally posted by kichik
I'm sorry, it's MUI_BRANDINGTEXT.