-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
83dba04
commit 73e23d8
Showing
67 changed files
with
545 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- | ||
# vim: set filetype=python: | ||
# 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/. | ||
|
||
@template | ||
def FirefoxBranding(): | ||
if CONFIG['MOZ_BRANDING_DIRECTORY'] == 'browser/branding/official': | ||
JS_PREFERENCE_PP_FILES += [ | ||
'pref/firefox-branding.js', | ||
] | ||
else: | ||
JS_PREFERENCE_FILES += [ | ||
'pref/firefox-branding.js', | ||
] | ||
|
||
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': | ||
FINAL_TARGET_FILES['..'] += [ | ||
'firefox.VisualElementsManifest.xml', | ||
'private_browsing.VisualElementsManifest.xml', | ||
] | ||
FINAL_TARGET_FILES.VisualElements += [ | ||
'PrivateBrowsing_150.png', | ||
'PrivateBrowsing_70.png', | ||
'VisualElements_150.png', | ||
'VisualElements_70.png', | ||
] | ||
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk': | ||
FINAL_TARGET_FILES.chrome.icons.default += [ | ||
'default128.png', | ||
'default16.png', | ||
'default22.png', | ||
'default24.png', | ||
'default256.png', | ||
'default32.png', | ||
'default48.png', | ||
'default64.png', | ||
] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# 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 "Mercury" | ||
!define BrandShortName "Mercury" | ||
!define BrandFullName "Mercury" | ||
!define CompanyName "Mercury" | ||
!define URLInfoAbout "https://github.com/Alex313031/Mercury#readme" | ||
!define URLUpdateInfo "https://github.com/Alex313031/Mercury/releases" | ||
!define HelpLink "https://github.com/Alex313031/Mercury/issues" | ||
|
||
!define URLStubDownloadX86 "https://github.com/Alex313031/Mercury/releases" | ||
!define URLStubDownloadAMD64 "https://github.com/Alex313031/Mercury/releases/latest" | ||
!define URLStubDownloadAArch64 "https://github.com/Alex313031/Mercury/releases" | ||
!define URLManualDownload "https://github.com/Alex313031/Mercury/releases" | ||
!define URLSystemRequirements "https://www.mozilla.org/firefox/system-requirements/" | ||
!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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# 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/. | ||
|
||
MOZ_APP_NAME=Mercury | ||
|
||
MOZ_APP_BASENAME="Mercury" | ||
|
||
MOZ_APP_DISPLAYNAME=Mercury | ||
|
||
MOZ_APP_UA_NAME=Mercury | ||
|
||
MOZ_APP_PROFILE=Mercury | ||
|
||
MOZ_APP_REMOTINGNAME=Mercury | ||
|
||
MOZ_APP_VENDOR=Alex313031 | ||
|
||
MOZ_APP_CODENAME=hydrargyrum | ||
|
||
MOZ_DEVTOOLS=all |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* 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/. */ | ||
|
||
#aboutDialogContainer { | ||
background-color: #130829; | ||
color: #fff; | ||
color-scheme: dark; | ||
} | ||
|
||
#clientBox { | ||
padding: 10px 0 15px; | ||
} | ||
|
||
#leftBox { | ||
background-image: url("chrome://branding/content/about-logo.png"); | ||
background-repeat: no-repeat; | ||
background-size: 192px auto; | ||
background-position: center 20%; | ||
/* min-width and min-height create room for the logo */ | ||
min-width: 210px; | ||
min-height: 210px; | ||
margin-top: 20px; | ||
margin-inline-start: 30px; | ||
} | ||
|
||
@media (min-resolution: 2dppx) { | ||
#leftBox { | ||
background-image: url("chrome://branding/content/about-logo@2x.png"); | ||
} | ||
} | ||
|
||
.text-link { | ||
color: #fff !important; | ||
text-decoration: underline; | ||
} | ||
|
||
#rightBox { | ||
background-size: auto 64px; | ||
margin-inline: 30px; | ||
padding-top: 64px; | ||
} | ||
|
||
#bottomBox { | ||
background-color: hsla(235, 43%, 10%, .5); | ||
padding: 15px 10px 15px; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# 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/. | ||
|
||
browser.jar: | ||
% content branding %content/branding/ contentaccessible=yes | ||
content/branding/about.png | ||
content/branding/about-logo.png | ||
content/branding/about-logo.svg | ||
content/branding/about-logo@2x.png | ||
content/branding/about-wordmark.svg | ||
content/branding/firefox-wordmark.svg | ||
content/branding/aboutlogins.svg | ||
content/branding/icon16.png (../default16.png) | ||
content/branding/icon32.png (../default32.png) | ||
content/branding/icon48.png (../default48.png) | ||
content/branding/icon64.png (../default64.png) | ||
content/branding/icon128.png (../default128.png) | ||
content/branding/aboutDialog.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- | ||
# vim: set filetype=python: | ||
# 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/. | ||
|
||
JAR_MANIFESTS += ["jar.mn"] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
12 changes: 12 additions & 0 deletions
12
browser/branding/mercury/firefox.VisualElementsManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!-- 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/. --> | ||
|
||
<Application xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'> | ||
<VisualElements | ||
ShowNameOnSquare150x150Logo='on' | ||
Square150x150Logo='browser\VisualElements\VisualElements_150.png' | ||
Square70x70Logo='browser\VisualElements\VisualElements_70.png' | ||
ForegroundText='light' | ||
BackgroundColor='#14171a'/> | ||
</Application> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!-- 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/. --> | ||
|
||
<!ENTITY brandShorterName "Mercury"> | ||
<!ENTITY brandShortName "Mercury"> | ||
<!ENTITY brandFullName "Mercury"> | ||
<!-- LOCALIZATION NOTE (brandProductName): | ||
This brand name can be used in messages where the product name needs to | ||
remain unchanged across different versions (Nightly, Beta, etc.). --> | ||
<!ENTITY brandProductName "Mercury"> | ||
<!ENTITY vendorShortName "Mercury"> | ||
<!ENTITY trademarkInfo.part1 " "> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# 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/. | ||
|
||
## Firefox Brand | ||
## | ||
## Firefox must be treated as a brand, and kept in English. | ||
## It cannot be: | ||
## - Declined to adapt to grammatical case. | ||
## - Transliterated. | ||
## - Translated. | ||
## | ||
## Reference: https://www.mozilla.org/styleguide/communications/translation/ | ||
|
||
-brand-shorter-name = Mercury | ||
-brand-short-name = Mercury | ||
-brand-full-name = Mercury | ||
-brand-shortcut-name = Mercury | ||
# This brand name can be used in messages where the product name needs to | ||
# remain unchanged across different versions (Nightly, Beta, etc.). | ||
-brand-product-name = Mercury | ||
-vendor-short-name = Mercury | ||
trademarkInfo = { " " } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# 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/. | ||
|
||
brandShorterName=Mercury | ||
brandShortName=Mercury | ||
brandFullName=Mercury | ||
# LOCALIZATION NOTE(brandProductName): | ||
# This brand name can be used in messages where the product name needs to | ||
# remain unchanged across different versions (Nightly, Beta, etc.). | ||
brandProductName=Mercury | ||
vendorShortName=Mercury | ||
|
||
syncBrandShortName=Mercury Sync |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#filter substitution | ||
# 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/. | ||
|
||
[localization] @AB_CD@.jar: | ||
branding (en-US/**/*.ftl) | ||
|
||
@AB_CD@.jar: | ||
% locale branding @AB_CD@ %locale/branding/ | ||
# Unofficial branding only exists in en-US | ||
locale/branding/brand.dtd (en-US/brand.dtd) | ||
locale/branding/brand.properties (en-US/brand.properties) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- | ||
# vim: set filetype=python: | ||
# 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/. | ||
|
||
DEFINES['MOZ_DISTRIBUTION_ID_UNQUOTED'] = CONFIG['MOZ_DISTRIBUTION_ID'] | ||
|
||
JAR_MANIFESTS += ["jar.mn"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- | ||
# vim: set filetype=python: | ||
# 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/. | ||
|
||
DIRS += ["content", "locales"] | ||
|
||
DIST_SUBDIR = "browser" | ||
export("DIST_SUBDIR") | ||
|
||
include("../branding-common.mozbuild") | ||
FirefoxBranding() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Binary file added
BIN
+62.7 KB
...ng/mercury/msix/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png
Oops, something went wrong.
Binary file added
BIN
+62.7 KB
...randing/mercury/msix/Assets/Square44x44Logo.altform-unplated_targetsize-256.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+41.8 KB
browser/branding/mercury/msix/Assets/Square44x44Logo.targetsize-256.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* 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/. */ | ||
|
||
// This file contains branding-specific prefs. | ||
|
||
pref("startup.homepage_override_url", ""); | ||
pref("startup.homepage_welcome_url", ""); | ||
pref("startup.homepage_welcome_url.additional", ""); | ||
// The time interval between checks for a new version (in seconds) | ||
pref("app.update.interval", 86400); // 24 hours | ||
// Give the user x seconds to react before showing the big UI. default=24 hours | ||
pref("app.update.promptWaitTime", 691200); | ||
// URL user can browse to manually if for some reason all update installation | ||
// attempts fail. | ||
pref("app.update.url.manual", "https://github.com/Alex313031/Mercury/releases"); | ||
// A default value for the "More information about this update" link | ||
// supplied in the "An update is available" page of the update wizard. | ||
pref("app.update.url.details", "https://nightly.mozilla.org"); | ||
|
||
// The number of days a binary is permitted to be old | ||
// without checking for an update. This assumes that | ||
// app.update.checkInstallTime is true. | ||
pref("app.update.checkInstallTime.days", 63); | ||
|
||
// Give the user x seconds to reboot before showing a badge on the hamburger | ||
// button. default=immediately | ||
pref("app.update.badgeWaitTime", 345600); | ||
|
||
// Number of usages of the web console. | ||
// If this is less than 5, then pasting code into the web console is disabled | ||
pref("devtools.selfxss.count", 0); |
12 changes: 12 additions & 0 deletions
12
browser/branding/mercury/private_browsing.VisualElementsManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!-- 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/. --> | ||
|
||
<Application xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'> | ||
<VisualElements | ||
ShowNameOnSquare150x150Logo='on' | ||
Square150x150Logo='browser\VisualElements\PrivateBrowsing_150.png' | ||
Square70x70Logo='browser\VisualElements\PrivateBrowsing_70.png' | ||
ForegroundText='light' | ||
BackgroundColor='#14171a'/> | ||
</Application> |
Oops, something went wrong.
Oops, something went wrong.