|
1 # This Source Code Form is subject to the terms of the Mozilla Public |
|
2 # License, v. 2.0. If a copy of the MPL was not distributed with this |
|
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
|
4 |
|
5 # NSIS branding defines for unofficial builds. |
|
6 # The official release build branding.nsi is located in other-license/branding/firefox/ |
|
7 # The nightly build branding.nsi is located in browser/installer/windows/nsis/ |
|
8 |
|
9 # BrandFullNameInternal is used for some registry and file system values |
|
10 # instead of BrandFullName and typically should not be modified. |
|
11 !define BrandFullNameInternal "Mozilla Developer Preview" |
|
12 !define CompanyName "mozilla.org" |
|
13 !define URLInfoAbout "https://www.mozilla.org" |
|
14 !define HelpLink "https://support.mozilla.org" |
|
15 |
|
16 !define URLStubDownload "http://download.mozilla.org/?os=win&lang=${AB_CD}&product=firefox-latest" |
|
17 !define URLManualDownload "https://www.mozilla.org/${AB_CD}/firefox/installer-help/?channel=release&installer_lang=${AB_CD}" |
|
18 !define Channel "unofficial" |
|
19 |
|
20 # The installer's certificate name and issuer expected by the stub installer |
|
21 !define CertNameDownload "Mozilla Corporation" |
|
22 !define CertIssuerDownload "Thawte Code Signing CA - G2" |
|
23 |
|
24 # Dialog units are used so the UI displays correctly with the system's DPI |
|
25 # settings. |
|
26 # The dialog units for the bitmap's dimensions should match exactly with the |
|
27 # bitmap's width and height in pixels. |
|
28 !define APPNAME_BMP_WIDTH_DU 159u |
|
29 !define APPNAME_BMP_HEIGHT_DU 50u |
|
30 !define INTRO_BLURB_WIDTH_DU "230u" |
|
31 !define INTRO_BLURB_EDGE_DU "198u" |
|
32 !define INTRO_BLURB_LTR_TOP_DU "16u" |
|
33 !define INTRO_BLURB_RTL_TOP_DU "11u" |
|
34 |
|
35 # UI Colors that can be customized for each channel |
|
36 !define FOOTER_CONTROL_TEXT_COLOR_NORMAL 0x000000 |
|
37 !define FOOTER_CONTROL_TEXT_COLOR_FADED 0x999999 |
|
38 !define FOOTER_BKGRD_COLOR 0xFFFFFF |
|
39 !define INTRO_BLURB_TEXT_COLOR 0xFFFFFF |
|
40 !define INSTALL_BLURB_TEXT_COLOR 0xFFFFFF |
|
41 !define INSTALL_PROGRESS_TEXT_COLOR_NORMAL 0xFFFFFF |
|
42 !define COMMON_TEXT_COLOR_NORMAL 0xFFFFFF |
|
43 !define COMMON_TEXT_COLOR_FADED 0xA1AAB3 |
|
44 !define COMMON_BKGRD_COLOR 0x0F1B26 |