aboutsummaryrefslogtreecommitdiff
path: root/common/source_files/browser/branding/librewolf/branding.nsi
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-08-16 20:00:38 -0500
committerBeatLink <beatlink@protonmail.com>2019-08-16 20:00:38 -0500
commitd16a5b29e81bb6e0e58af2a97484defccacf355c (patch)
tree4ef06da3e1d9548a99fc4ce8adf4587d7bd14621 /common/source_files/browser/branding/librewolf/branding.nsi
parentmove toggle settings folder to linux script (diff)
downloadlibrewolf-linux-d16a5b29e81bb6e0e58af2a97484defccacf355c.tar.gz
librewolf-linux-d16a5b29e81bb6e0e58af2a97484defccacf355c.tar.bz2
librewolf-linux-d16a5b29e81bb6e0e58af2a97484defccacf355c.zip
Move branding and settings to seperate repos and move browser to top level
Diffstat (limited to 'common/source_files/browser/branding/librewolf/branding.nsi')
-rw-r--r--common/source_files/browser/branding/librewolf/branding.nsi50
1 files changed, 50 insertions, 0 deletions
diff --git a/common/source_files/browser/branding/librewolf/branding.nsi b/common/source_files/browser/branding/librewolf/branding.nsi
new file mode 100644
index 0000000..36cc1d4
--- /dev/null
+++ b/common/source_files/browser/branding/librewolf/branding.nsi
@@ -0,0 +1,50 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+# NSIS branding defines for unofficial builds.
+# The official release build branding.nsi is located in other-license/branding/firefox/
+# The nightly build branding.nsi is located in browser/installer/windows/nsis/
+
+# BrandFullNameInternal is used for some registry and file system values
+# instead of BrandFullName and typically should not be modified.
+!define BrandFullNameInternal "LibreWolf"
+!define BrandFullName "LibreWolf"
+!define CompanyName "LibreWolf"
+!define URLInfoAbout "https://www.libreWolf.gitlab.io"
+!define HelpLink "https://github.com/LibreWolf-Browser"
+
+!define URLStubDownloadX86 "https://github.com/LibreWolf-Browser/LibreWolf/releases"
+!define URLStubDownloadAMD64 "https://github.com/LibreWolf-Browser/LibreWolf/releases"
+!define URLStubDownloadAArch64 "https://github.com/LibreWolf-Browser/LibreWolf/releases"
+!define URLManualDownload "https://github.com/LibreWolf-Browser/LibreWolf/releases"
+!define URLSystemRequirements "https://github.com/LibreWolf-Browser/LibreWolf"
+!define Channel "unofficial"
+
+# The installer's certificate name and issuer expected by the stub installer
+!define CertNameDownload "Mozilla Corporation"
+!define CertIssuerDownload "DigiCert SHA2 Assured ID Code Signing CA"
+
+# Dialog units are used so the UI displays correctly with the system's DPI
+# settings.
+# The dialog units for the bitmap's dimensions should match exactly with the
+# bitmap's width and height in pixels.
+!define APPNAME_BMP_WIDTH_DU 159u
+!define APPNAME_BMP_HEIGHT_DU 50u
+!define INTRO_BLURB_WIDTH_DU "230u"
+!define INTRO_BLURB_EDGE_DU "198u"
+!define INTRO_BLURB_LTR_TOP_DU "16u"
+!define INTRO_BLURB_RTL_TOP_DU "11u"
+!define INSTALL_FOOTER_TOP_DU "-48u"
+
+# UI Colors that can be customized for each channel
+!define FOOTER_CONTROL_TEXT_COLOR_NORMAL 0x000000
+!define FOOTER_CONTROL_TEXT_COLOR_FADED 0x999999
+!define FOOTER_BKGRD_COLOR 0xFFFFFF
+!define INSTALL_FOOTER_TEXT_COLOR 0xFFFFFF
+!define INTRO_BLURB_TEXT_COLOR 0xFFFFFF
+!define INSTALL_BLURB_TEXT_COLOR 0xFFFFFF
+!define INSTALL_PROGRESS_TEXT_COLOR_NORMAL 0xFFFFFF
+!define COMMON_TEXT_COLOR_NORMAL 0xFFFFFF
+!define COMMON_TEXT_COLOR_FADED 0xA1AAB3
+!define COMMON_BKGRD_COLOR 0x0F1B26
bgstack15