Yovav
12th May 2003 03:14 UTC
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
12th May 2003 04:08 UTC
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
12th May 2003 08:03 UTC
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
12th May 2003 12:32 UTC
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
12th May 2003 16:18 UTC
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
Yovav
12th May 2003 21:47 UTC
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.
|
kichik
12th May 2003 21:50 UTC
I'm sorry, it's MUI_BRANDINGTEXT.
Yovav
13th May 2003 01:29 UTC
Working.
Quote:
yea - this is working,
10Q.
Originally posted by kichik
I'm sorry, it's MUI_BRANDINGTEXT.
|