Issue #303 Part 1: Move basilisk files from /browser to /application/basilisk
10
application/basilisk/branding/official/LICENSE
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
This location contains official branding for the Basilisk browser.
|
||||
|
||||
Please note that you are not granted any trademark rights or licenses
|
||||
to the trademarks of Moonchild Productions or any other party,
|
||||
including without limitation the Basilisk name or logo.
|
||||
|
||||
These branding materials are Copyrighted (c) M. Straver. All rights reserved.
|
||||
|
||||
Official branding using these files is only allowed by the copyright holder
|
||||
or by third parties with express permission from the copyright holder.
|
||||
BIN
application/basilisk/branding/official/VisualElements_150.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
application/basilisk/branding/official/VisualElements_70.png
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
application/basilisk/branding/official/appname.bmp
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
application/basilisk/branding/official/background.png
Normal file
|
After Width: | Height: | Size: 129 KiB |
|
|
@ -0,0 +1,8 @@
|
|||
<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='#0996f8'/>
|
||||
</Application>
|
||||
50
application/basilisk/branding/official/branding.nsi
Normal file
|
|
@ -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 official release builds.
|
||||
# The nightly build branding.nsi is located in browser/installer/windows/nsis/
|
||||
# The unofficial build branding.nsi is located in browser/branding/unofficial/
|
||||
|
||||
# BrandFullNameInternal is used for some registry and file system values
|
||||
# instead of BrandFullName and typically should not be modified.
|
||||
!define BrandFullNameInternal "Basilisk"
|
||||
!define CompanyName "Moonchild Productions"
|
||||
!define URLInfoAbout "https://www.basilisk-browser.org"
|
||||
!define URLUpdateInfo "https://www.basilisk-browser.org/releasenotes.shtml"
|
||||
!define HelpLink "https://www.basilisk-browser.org"
|
||||
|
||||
; The OFFICIAL define is a workaround to support different urls for Release and
|
||||
; Beta since they share the same branding when building with other branches that
|
||||
; set the update channel to beta.
|
||||
!define OFFICIAL
|
||||
!define URLStubDownload ""
|
||||
!define URLManualDownload ""
|
||||
!define URLSystemRequirements ""
|
||||
!define Channel "release"
|
||||
|
||||
# The installer's certificate name and issuer expected by the stub installer
|
||||
!define CertNameDownload ""
|
||||
!define CertIssuerDownload ""
|
||||
|
||||
# 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 "134u"
|
||||
!define APPNAME_BMP_HEIGHT_DU "36u"
|
||||
!define INTRO_BLURB_WIDTH_DU "258u"
|
||||
!define INTRO_BLURB_EDGE_DU "170u"
|
||||
!define INTRO_BLURB_LTR_TOP_DU "20u"
|
||||
!define INTRO_BLURB_RTL_TOP_DU "12u"
|
||||
|
||||
# UI Colors that can be customized for each channel
|
||||
!define FOOTER_CONTROL_TEXT_COLOR_NORMAL 0x000000
|
||||
!define FOOTER_CONTROL_TEXT_COLOR_FADED 0x666666
|
||||
!define FOOTER_BKGRD_COLOR 0xFFFFFF
|
||||
!define INTRO_BLURB_TEXT_COLOR 0x666666
|
||||
!define INSTALL_BLURB_TEXT_COLOR 0x666666
|
||||
!define INSTALL_PROGRESS_TEXT_COLOR_NORMAL 0x666666
|
||||
!define COMMON_TEXT_COLOR_NORMAL 0x000000
|
||||
!define COMMON_TEXT_COLOR_FADED 0x666666
|
||||
!define COMMON_BKGRD_COLOR 0xF0F0F0
|
||||
5
application/basilisk/branding/official/configure.sh
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# 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_DISPLAYNAME=Basilisk
|
||||
BIN
application/basilisk/branding/official/content/about-logo.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
application/basilisk/branding/official/content/about-logo@2x.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
BIN
application/basilisk/branding/official/content/about.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
|
|
@ -0,0 +1,49 @@
|
|||
/* 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/. */
|
||||
|
||||
#clientBox {
|
||||
background-color: #F7F7F7;
|
||||
color: #222222;
|
||||
}
|
||||
|
||||
#leftBox {
|
||||
background-image: url("chrome://branding/content/about-logo.png");
|
||||
background-repeat: no-repeat;
|
||||
background-size: 192px auto;
|
||||
/* 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");
|
||||
}
|
||||
}
|
||||
|
||||
#rightBox {
|
||||
margin-left: 30px;
|
||||
margin-right: 30px;
|
||||
background-image: url("chrome://branding/content/about-wordmark.png");
|
||||
background-repeat: no-repeat;
|
||||
/* padding-top creates room for the wordmark */
|
||||
padding-top: 38px;
|
||||
margin-top:20px;
|
||||
}
|
||||
|
||||
|
||||
#updateDeck > hbox > label:not([class="text-link"]) {
|
||||
color: #909090;
|
||||
}
|
||||
|
||||
#trademark {
|
||||
font-size: xx-small;
|
||||
text-align: center;
|
||||
color: #999999;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
BIN
application/basilisk/branding/official/content/icon48.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
application/basilisk/branding/official/content/icon64.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 8.1 KiB |
18
application/basilisk/branding/official/content/jar.mn
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# 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@2x.png
|
||||
content/branding/about-wordmark.png
|
||||
content/branding/icon48.png
|
||||
content/branding/icon64.png
|
||||
content/branding/icon16.png (../default16.png)
|
||||
content/branding/icon32.png (../default32.png)
|
||||
content/branding/icon128.png (../mozicon128.png)
|
||||
content/branding/identity-icons-brand.svg
|
||||
content/branding/silhouette-40.svg
|
||||
content/branding/aboutDialog.css
|
||||
7
application/basilisk/branding/official/content/moz.build
Normal file
|
|
@ -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']
|
||||
|
After Width: | Height: | Size: 7.7 KiB |
BIN
application/basilisk/branding/official/default16.png
Normal file
|
After Width: | Height: | Size: 820 B |
BIN
application/basilisk/branding/official/default22.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
application/basilisk/branding/official/default24.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
application/basilisk/branding/official/default256.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
application/basilisk/branding/official/default32.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
application/basilisk/branding/official/default48.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
application/basilisk/branding/official/default64.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
application/basilisk/branding/official/disk.icns
Normal file
BIN
application/basilisk/branding/official/document.icns
Normal file
BIN
application/basilisk/branding/official/document.ico
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
application/basilisk/branding/official/firefox.icns
Normal file
BIN
application/basilisk/branding/official/firefox.ico
Normal file
|
After Width: | Height: | Size: 44 KiB |
|
|
@ -0,0 +1,6 @@
|
|||
# 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/.
|
||||
|
||||
# Do NOT localize or otherwise change these values
|
||||
browser.startup.homepage=about:home
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
<!-- 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 "Basilisk">
|
||||
<!ENTITY brandShortName "Basilisk">
|
||||
<!ENTITY brandFullName "Basilisk">
|
||||
<!ENTITY vendorShortName "Moonchild">
|
||||
<!ENTITY vendorFullName "Moonchild Productions">
|
||||
<!ENTITY trademarkInfo.part1 "Basilisk, Basilisk Browser and the Basilisk logos are trademarks of Moonchild Productions.">
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
# 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=Basilisk
|
||||
brandShortName=Basilisk
|
||||
brandFullName=Basilisk
|
||||
vendorShortName=Moonchild
|
||||
|
||||
homePageSingleStartMain=Internal home page with search.
|
||||
homePageImport=Import your home page from %S
|
||||
|
||||
homePageMigrationPageTitle=Home Page Selection
|
||||
homePageMigrationDescription=Please select the home page you wish to use:
|
||||
|
||||
syncBrandShortName=Sync
|
||||
11
application/basilisk/branding/official/locales/jar.mn
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#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/.
|
||||
|
||||
|
||||
@AB_CD@.jar:
|
||||
% locale branding @AB_CD@ %locale/branding/
|
||||
locale/branding/brand.dtd (%brand.dtd)
|
||||
locale/branding/brand.properties (%brand.properties)
|
||||
locale/branding/browserconfig.properties
|
||||
7
application/basilisk/branding/official/locales/moz.build
Normal file
|
|
@ -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']
|
||||
13
application/basilisk/branding/official/moz.build
Normal file
|
|
@ -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('../shared/branding.mozbuild')
|
||||
ApplicationBranding()
|
||||
BIN
application/basilisk/branding/official/mozicon128.png
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
|
|
@ -0,0 +1,48 @@
|
|||
/* 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/. */
|
||||
|
||||
#filter substitution
|
||||
#filter emptyLines
|
||||
|
||||
// Set defines to construct URLs
|
||||
#define BRANDING_BASEURL basilisk-browser.org
|
||||
#define BRANDING_SITEURL www.@BRANDING_BASEURL@
|
||||
#define BRANDING_RELNOTESPATH releasenotes.shtml
|
||||
#define BRANDING_FIRSTRUNPATH firstrun/
|
||||
#define BRANDING_APPUPDATEURL aus.@BRANDING_BASEURL@
|
||||
#define BRANDING_APPUPDATEPATH ?application=%PRODUCT%&version=%VERSION%&arch=%BUILD_TARGET%&buildid=%BUILD_ID%&channel=%CHANNEL%
|
||||
|
||||
// Shared Branding Preferences
|
||||
// XXX: These should REALLY go back to application preferences
|
||||
#include ../../shared/preferences.inc
|
||||
|
||||
// Branding Specific Preferences
|
||||
pref("startup.homepage_override_url", "https://@BRANDING_SITEURL@/@BRANDING_RELNOTESPATH@");
|
||||
pref("startup.homepage_welcome_url", "http://@BRANDING_SITEURL@/@BRANDING_FIRSTRUNPATH@");
|
||||
pref("startup.homepage_welcome_url.additional", "");
|
||||
|
||||
// Version release notes
|
||||
pref("app.releaseNotesURL", "http://@BRANDING_SITEURL@/@BRANDING_RELNOTESPATH@");
|
||||
|
||||
// Vendor home page
|
||||
pref("app.vendorURL", "http://@BRANDING_SITEURL@/");
|
||||
|
||||
pref("app.update.url", "https://@BRANDING_APPUPDATEURL@/@BRANDING_APPUPDATEPATH@");
|
||||
|
||||
// URL user can browse to manually if for some reason all update installation
|
||||
// attempts fail.
|
||||
pref("app.update.url.manual", "https://@BRANDING_SITEURL@/");
|
||||
// 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://@BRANDING_SITEURL@/@BRANDING_RELNOTESPATH@");
|
||||
|
||||
// Provide UA Gecko and Firefox slices for web compatibility
|
||||
pref("general.useragent.compatMode.firefox",true);
|
||||
pref("general.useragent.compatMode.gecko",true);
|
||||
|
||||
// Switch Application Updates off for now
|
||||
pref("app.update.enabled", false);
|
||||
|
||||
// Shared User Agent Overrides
|
||||
#include ../../shared/uaoverrides.inc
|
||||
BIN
application/basilisk/branding/official/wizHeader.bmp
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
application/basilisk/branding/official/wizHeaderRTL.bmp
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
application/basilisk/branding/official/wizWatermark.bmp
Normal file
|
After Width: | Height: | Size: 151 KiB |
56
application/basilisk/branding/shared/branding.mozbuild
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
# -*- 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 ApplicationBranding():
|
||||
JS_PREFERENCE_PP_FILES += [
|
||||
'pref/firefox-branding.js',
|
||||
]
|
||||
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
|
||||
FINAL_TARGET_FILES['..'] += [
|
||||
'basilisk.VisualElementsManifest.xml',
|
||||
]
|
||||
FINAL_TARGET_FILES.VisualElements += [
|
||||
'VisualElements_150.png',
|
||||
'VisualElements_70.png',
|
||||
]
|
||||
BRANDING_FILES += [
|
||||
'../shared/newtab.ico',
|
||||
'../shared/newwindow.ico',
|
||||
'../shared/pbmode.ico',
|
||||
'appname.bmp',
|
||||
'branding.nsi',
|
||||
'document.ico',
|
||||
'firefox.ico',
|
||||
'wizHeader.bmp',
|
||||
'wizHeaderRTL.bmp',
|
||||
'wizWatermark.bmp',
|
||||
]
|
||||
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
||||
BRANDING_FILES += [
|
||||
'../shared/dsstore',
|
||||
'background.png',
|
||||
'disk.icns',
|
||||
'document.icns',
|
||||
'firefox.icns',
|
||||
]
|
||||
elif 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']:
|
||||
BRANDING_FILES += [
|
||||
'default16.png',
|
||||
'default32.png',
|
||||
'default48.png',
|
||||
'mozicon128.png',
|
||||
]
|
||||
FINAL_TARGET_FILES.icons += ['mozicon128.png']
|
||||
FINAL_TARGET_FILES.chrome.icons.default += [
|
||||
'default16.png',
|
||||
'default32.png',
|
||||
'default48.png',
|
||||
]
|
||||
DEFINES['MOZ_APP_VERSION'] = CONFIG['MOZ_APP_VERSION']
|
||||
DEFINES['MOZ_BRANDING_DIRECTORY'] = CONFIG['MOZ_BRANDING_DIRECTORY']
|
||||
DEFINES['MOZILLA_UAVERSION_U'] = CONFIG['MOZILLA_UAVERSION_U']
|
||||
BIN
application/basilisk/branding/shared/dsstore
Normal file
BIN
application/basilisk/branding/shared/newtab.ico
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
application/basilisk/branding/shared/newwindow.ico
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
application/basilisk/branding/shared/pbmode.ico
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
26
application/basilisk/branding/shared/preferences.inc
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
// Interval: Time between checks for a new version (in seconds)
|
||||
pref("app.update.interval", 86400); // 1 day
|
||||
|
||||
// The time interval between the downloading of mar file chunks in the
|
||||
// background (in seconds)
|
||||
// 0 means "download everything at once"
|
||||
pref("app.update.download.backgroundInterval", 0);
|
||||
|
||||
// Give the user x seconds to react before showing the big UI. default=192 hours
|
||||
pref("app.update.promptWaitTime", 691200);
|
||||
|
||||
// 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", 14);
|
||||
|
||||
// Give the user x seconds to reboot before showing a badge on the hamburger
|
||||
// button. default=immediately
|
||||
pref("app.update.badgeWaitTime", 0);
|
||||
|
||||
// Number of usages of the web console or scratchpad.
|
||||
// If this is less than 5, then pasting code into the web console or scratchpad is disabled
|
||||
pref("devtools.selfxss.count", 100);
|
||||
|
||||
//
|
||||
pref("general.useragent.appVersionIsBuildID", true);
|
||||
42
application/basilisk/branding/shared/uaoverrides.inc
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
#define GUAO_PREF general.useragent.override
|
||||
|
||||
#define GRE_VERSION @MOZILLA_UAVERSION_U@
|
||||
#define GRE_VERSION_SLICE Goanna/@GRE_VERSION@
|
||||
#define GRE_DATE_SLICE Goanna/20170101
|
||||
#define APP_SLICE Basilisk/@MOZ_APP_VERSION@
|
||||
|
||||
#define GK_VERSION 52.9
|
||||
#define GK_SLICE Gecko/20100101
|
||||
#define FX_SLICE Firefox/@GK_VERSION@
|
||||
|
||||
#ifdef XP_UNIX
|
||||
#ifndef XP_MACOSX
|
||||
#define OS_SLICE X11; Linux x86_64;
|
||||
#else
|
||||
#define OS_SLICE Macintosh; Intel Mac OS X 10.11;
|
||||
#endif
|
||||
#else
|
||||
#define OS_SLICE Windows NT 6.1; WOW64;
|
||||
#endif
|
||||
|
||||
// Mozilla overrides
|
||||
pref("@GUAO_PREF@.accounts.firefox.com", "Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@");
|
||||
pref("@GUAO_PREF@.addons.mozilla.org", "Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@");
|
||||
|
||||
// Required for domains that have proven unresponsive to requests from users
|
||||
|
||||
// The never-ending Facebook debacle...
|
||||
|
||||
// UA-Sniffing domains below are pending responses from their operators - temp workaround
|
||||
// Daily motion only likes strict Firefox UAs
|
||||
pref("@GUAO_PREF@.dailymotion.com","Mozilla/5.0 (@OS_SLICE@ rv:52.0) @GK_SLICE@ Firefox/52.0");
|
||||
|
||||
// The following requires native mode. Or it blocks.. "too old firefox", breakage, etc.
|
||||
|
||||
// UA-Sniffing domains below have indicated no interest in supporting Pale Moon (BOO!)
|
||||
|
||||
// UA-sniffing domains that are "app/vendor-specific" and do not like Pale Moon
|
||||
|
||||
// The following domains do not like the Goanna slice
|
||||
pref("@GUAO_PREF@.hitbox.tv","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@");
|
||||
pref("@GUAO_PREF@.yuku.com","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@ @APP_SLICE@");
|
||||
9
application/basilisk/branding/unofficial/LICENSE
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
The Serpent application name and Serpent logo are licensed under a
|
||||
Creative Commons Attribution license.
|
||||
|
||||
The Serpent logo is derived from "Sea Serpent"
|
||||
by Lorc,
|
||||
licensed under the Creative Commons license CC-BY 3.0
|
||||
|
||||
Branding files are created by M. Straver and similarly released
|
||||
under the Creative Commons license CC-BY 3.0
|
||||
BIN
application/basilisk/branding/unofficial/VisualElements_150.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
application/basilisk/branding/unofficial/VisualElements_70.png
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
application/basilisk/branding/unofficial/appname.bmp
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
application/basilisk/branding/unofficial/background.png
Normal file
|
After Width: | Height: | Size: 113 KiB |
|
|
@ -0,0 +1,8 @@
|
|||
<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='#304D7E'/>
|
||||
</Application>
|
||||
45
application/basilisk/branding/unofficial/branding.nsi
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
# 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 "Serpent"
|
||||
!define CompanyName "Moonchild Productions"
|
||||
!define URLInfoAbout "http://www.basilisk-browser.org"
|
||||
!define HelpLink "https://forum.palemoon.org"
|
||||
|
||||
!define URLStubDownload ""
|
||||
!define URLManualDownload ""
|
||||
!define URLSystemRequirements ""
|
||||
!define Channel "unofficial"
|
||||
|
||||
# The installer's certificate name and issuer expected by the stub installer
|
||||
!define CertNameDownload ""
|
||||
!define CertIssuerDownload ""
|
||||
|
||||
# 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"
|
||||
|
||||
# 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 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
|
||||
5
application/basilisk/branding/unofficial/configure.sh
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# 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_DISPLAYNAME=Serpent
|
||||
|
After Width: | Height: | Size: 62 KiB |
BIN
application/basilisk/branding/unofficial/content/about-logo.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
|
@ -0,0 +1,87 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- 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/. -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="132px"
|
||||
height="48px"
|
||||
viewBox="0 0 132 48"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="about-wordmark.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1215"
|
||||
inkscape:window-height="778"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.4090909"
|
||||
inkscape:cx="91.154186"
|
||||
inkscape:cy="24"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<g
|
||||
transform="scale(0.83939803,1.1913299)"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.56122971px;line-height:125%;font-family:'Levenim MT';-inkscape-font-specification:'Levenim MT';letter-spacing:0px;word-spacing:0px;fill:#a8e6db;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="text4138">
|
||||
<path
|
||||
d="m 18.521413,24.115665 q 0,3.470569 -2.618513,5.881264 -2.535386,2.348349 -6.0475185,2.348349 -5.6942271,0 -9.22714164,-6.463156 L 3.2259712,24.323483 q 2.7432042,5.04999 6.3384644,5.04999 3.4082234,0 4.9460804,-2.639295 0.706583,-1.205347 0.706583,-2.556167 0,-1.537857 -1.039093,-3.013369 Q 12.827186,19.23193 9.1487985,16.488726 5.3872836,13.703958 4.1819363,12.082974 2.560952,9.9008792 2.560952,7.4070572 q 0,-4.2394975 3.6576056,-6.2345551 1.7248936,-0.93518331 3.761515,-0.93518331 4.3641884,0 8.0217944,5.00842591 L 15.508045,7.1368931 Q 14.115661,5.3080903 13.138914,4.5391618 11.684184,3.3961601 9.917727,3.3961601 q -1.7664573,0 -2.9510228,1.0598743 -1.246911,1.0806563 -1.246911,2.8263317 0,2.0574032 1.9327121,3.9693339 0.56111,0.540328 3.9485517,3.054932 3.117277,2.306785 4.655134,4.15637 2.265222,2.763986 2.265222,5.652663 z"
|
||||
style=""
|
||||
id="path4143" />
|
||||
<path
|
||||
d="m 46.743165,20.499623 -20.324649,0 q 0.08313,3.803079 2.369131,6.338464 2.410694,2.660077 6.151427,2.660077 3.616042,0 6.130646,-2.202876 1.143002,-0.997529 2.47304,-3.221187 l 2.452259,1.288475 q -2.286004,4.468098 -6.338465,6.026737 -1.974275,0.768928 -4.468097,0.768928 -5.091554,0 -8.437432,-3.36666 -3.325096,-3.366659 -3.325096,-8.458213 0,-4.301843 2.639295,-7.668503 3.345878,-4.2810608 8.956978,-4.2810608 5.777354,0 9.227141,4.3849708 2.452259,3.117277 2.493822,7.730848 z M 43.54276,17.985019 q -1.080656,-4.301843 -4.634352,-5.964391 -1.828803,-0.852056 -3.844643,-0.852056 -3.325096,0 -5.715008,2.140531 -1.745676,1.558639 -2.639295,4.675916 l 16.833298,0 z"
|
||||
style=""
|
||||
id="path4145" />
|
||||
<path
|
||||
d="m 62.516592,9.1527326 -1.517075,2.4522584 q -0.914401,-0.394855 -1.537857,-0.394855 -3.491351,0 -4.862953,4.904517 -0.540328,1.932712 -0.540328,7.813975 l 0,7.647721 -2.971805,0 0,-22.610653 2.971805,0 0,3.304314 q 2.639295,-3.8862058 5.881264,-3.8862058 1.205347,0 2.576949,0.7689284 z"
|
||||
style=""
|
||||
id="path4147" />
|
||||
<path
|
||||
d="m 88.577029,20.208677 q 0,4.94608 -3.325096,8.416649 -3.366659,3.532915 -8.271176,3.532915 -5.382499,0 -9.060887,-4.468098 l 0,12.157383 -2.888677,0 0,-30.88183 2.888677,0 0,4.15637 q 3.449787,-4.7382618 8.977759,-4.7382618 4.883735,0 8.271177,3.4705688 3.408223,3.470569 3.408223,8.354304 z m -2.930241,0.103909 q 0,-2.410694 -1.205347,-4.572007 -1.205347,-2.161312 -3.283532,-3.345878 -2.057403,-1.205347 -4.48888,-1.205347 -3.865424,0 -6.421592,2.660077 -2.535385,2.660077 -2.535385,6.546283 0,5.403281 4.468097,7.897103 2.140531,1.205347 4.530444,1.205347 2.410694,0 4.488879,-1.246911 2.01584,-1.226129 3.221187,-3.387441 1.226129,-2.161313 1.226129,-4.551226 z"
|
||||
style=""
|
||||
id="path4149" />
|
||||
<path
|
||||
d="m 116.23767,20.499623 -20.324647,0 q 0.08313,3.803079 2.36913,6.338464 2.410697,2.660077 6.151427,2.660077 3.61604,0 6.13065,-2.202876 1.143,-0.997529 2.47304,-3.221187 l 2.45226,1.288475 q -2.28601,4.468098 -6.33847,6.026737 -1.97427,0.768928 -4.4681,0.768928 -5.09155,0 -8.437428,-3.36666 -3.325096,-3.366659 -3.325096,-8.458213 0,-4.301843 2.639295,-7.668503 3.345878,-4.2810608 8.956979,-4.2810608 5.77735,0 9.22714,4.3849708 2.45226,3.117277 2.49382,7.730848 z m -3.2004,-2.514604 q -1.08066,-4.301843 -4.63436,-5.964391 -1.8288,-0.852056 -3.84464,-0.852056 -3.32509,0 -5.715007,2.140531 -1.745675,1.558639 -2.639295,4.675916 l 16.833302,0 z"
|
||||
style=""
|
||||
id="path4151" />
|
||||
<path
|
||||
d="m 141.4045,31.576349 -2.88868,0 0,-10.78578 q 0,-3.823861 -0.33251,-5.216245 -1.08066,-4.509661 -5.69423,-4.509661 -2.63929,0 -4.73826,1.745675 -2.07819,1.724894 -2.7432,4.322625 -0.41564,1.641766 -0.41564,6.151428 l 0,8.291958 -2.90946,0 0,-22.610653 2.90946,0 0,4.052461 q 3.47057,-4.6343528 8.47899,-4.6343528 2.47304,0 4.44732,1.2676928 1.99506,1.246911 2.93024,3.470569 0.95597,2.202876 0.95597,6.816447 l 0,11.637836 z"
|
||||
style=""
|
||||
id="path4153" />
|
||||
<path
|
||||
d="m 157.69747,11.459518 -4.61357,0 0,20.116831 -2.93024,0 0,-20.116831 -3.96934,0 0,-2.493822 3.96934,0 0,-8.3958676 2.93024,0 0,8.3958676 4.61357,0 0,2.493822 z"
|
||||
style=""
|
||||
id="path4155" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.1 KiB |
BIN
application/basilisk/branding/unofficial/content/about.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
|
|
@ -0,0 +1,25 @@
|
|||
/* 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-image: url("chrome://branding/content/about-background.png");
|
||||
background-repeat: no-repeat;
|
||||
background-color: rgb(10,17,37);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.text-link {
|
||||
color: #fff !important;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#rightBox {
|
||||
/* this margin prevents text from overlapping the planet image */
|
||||
margin-left: 280px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
#bottomBox {
|
||||
background-color: rgba(0,0,0,.7);
|
||||
}
|
||||
BIN
application/basilisk/branding/unofficial/content/icon48.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
application/basilisk/branding/unofficial/content/icon64.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 38 KiB |
19
application/basilisk/branding/unofficial/content/jar.mn
Normal file
|
|
@ -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-background.png
|
||||
content/branding/about-logo.png
|
||||
content/branding/about-logo@2x.png
|
||||
content/branding/about-wordmark.svg
|
||||
content/branding/icon48.png
|
||||
content/branding/icon64.png
|
||||
content/branding/icon16.png (../default16.png)
|
||||
content/branding/icon32.png (../default32.png)
|
||||
content/branding/icon128.png (../mozicon128.png)
|
||||
content/branding/identity-icons-brand.svg
|
||||
content/branding/silhouette-40.svg
|
||||
content/branding/aboutDialog.css
|
||||
|
|
@ -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']
|
||||
1360
application/basilisk/branding/unofficial/content/silhouette-40.svg
Normal file
|
After Width: | Height: | Size: 146 KiB |
BIN
application/basilisk/branding/unofficial/default16.png
Normal file
|
After Width: | Height: | Size: 793 B |
BIN
application/basilisk/branding/unofficial/default32.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
application/basilisk/branding/unofficial/default48.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
application/basilisk/branding/unofficial/disk.icns
Normal file
BIN
application/basilisk/branding/unofficial/document.icns
Normal file
BIN
application/basilisk/branding/unofficial/document.ico
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
application/basilisk/branding/unofficial/dsstore
Normal file
BIN
application/basilisk/branding/unofficial/firefox.icns
Normal file
BIN
application/basilisk/branding/unofficial/firefox.ico
Normal file
|
After Width: | Height: | Size: 45 KiB |
|
|
@ -0,0 +1,6 @@
|
|||
# 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/.
|
||||
|
||||
# Do NOT localize or otherwise change these values
|
||||
browser.startup.homepage=about:home
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
<!-- 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 "Serpent">
|
||||
<!ENTITY brandShortName "Serpent">
|
||||
<!ENTITY brandFullName "Serpent">
|
||||
<!ENTITY vendorShortName "Moonchild">
|
||||
<!ENTITY vendorFullName "Moonchild Productions">
|
||||
<!ENTITY trademarkInfo.part1 " ">
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
# 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=Serpent
|
||||
brandShortName=Serpent
|
||||
brandFullName=Serpent
|
||||
vendorShortName=Moonchild
|
||||
vendorFullName=Moonchild Productions
|
||||
|
||||
syncBrandShortName=Sync
|
||||
12
application/basilisk/branding/unofficial/locales/jar.mn
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#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/.
|
||||
|
||||
|
||||
@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)
|
||||
locale/branding/browserconfig.properties
|
||||
|
|
@ -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']
|
||||
13
application/basilisk/branding/unofficial/moz.build
Normal file
|
|
@ -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('../shared/branding.mozbuild')
|
||||
ApplicationBranding()
|
||||
BIN
application/basilisk/branding/unofficial/mozicon128.png
Normal file
|
After Width: | Height: | Size: 9 KiB |
|
|
@ -0,0 +1,40 @@
|
|||
/* 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/. */
|
||||
|
||||
#filter substitution
|
||||
#filter emptyLines
|
||||
|
||||
// Set defines to construct URLs
|
||||
#define BRANDING_BASEURL basilisk-browser.org
|
||||
#define BRANDING_SITEURL www.@BRANDING_BASEURL@
|
||||
|
||||
// Shared Branding Preferences
|
||||
// XXX: These should REALLY go back to application preferences
|
||||
#include ../../shared/preferences.inc
|
||||
|
||||
// Branding Specific Preferences
|
||||
pref("startup.homepage_override_url", "");
|
||||
pref("startup.homepage_welcome_url", "");
|
||||
pref("startup.homepage_welcome_url.additional", "");
|
||||
|
||||
// Version release notes
|
||||
pref("app.releaseNotesURL", "about:blank");
|
||||
|
||||
// Vendor home page
|
||||
pref("app.vendorURL", "about:");
|
||||
|
||||
pref("app.update.url", "");
|
||||
|
||||
// URL user can browse to manually if for some reason all update installation
|
||||
// attempts fail.
|
||||
pref("app.update.url.manual", "about:");
|
||||
// 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", "about:");
|
||||
|
||||
// Switch Application Updates off for unofficial branding
|
||||
pref("app.update.enabled", false);
|
||||
|
||||
// Shared User Agent Overrides
|
||||
#include ../../shared/uaoverrides.inc
|
||||
BIN
application/basilisk/branding/unofficial/wizHeader.bmp
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
application/basilisk/branding/unofficial/wizHeaderRTL.bmp
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
application/basilisk/branding/unofficial/wizWatermark.bmp
Normal file
|
After Width: | Height: | Size: 151 KiB |