Skip to content
⌘ NSIS Forum Archive

Can I modify the dialog static version line ?

8 posts

Yovav#

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"... ?
Joel#
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.
Yovav#
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"
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.
Joel#
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 😛
Yovav#
10X 4 the try

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.

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

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

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

yea - this is working,

10Q.