From 4492b5f8e774bf3b4f21e4e468fc052cbcbb468a Mon Sep 17 00:00:00 2001 From: Thomas Groman Date: Mon, 16 Dec 2019 19:48:42 -0800 Subject: initial commit --- branding/shared/background.png | Bin 0 -> 115 bytes branding/shared/branding.mozbuild | 58 ++++++++++++ branding/shared/locales/browserconfig.properties | 2 + branding/shared/newtab.ico | Bin 0 -> 1150 bytes branding/shared/newwindow.ico | Bin 0 -> 1150 bytes branding/shared/pbmode.ico | Bin 0 -> 1150 bytes branding/shared/pref/preferences.inc | 107 +++++++++++++++++++++++ branding/shared/pref/uaoverrides.inc | 83 ++++++++++++++++++ 8 files changed, 250 insertions(+) create mode 100644 branding/shared/background.png create mode 100644 branding/shared/branding.mozbuild create mode 100644 branding/shared/locales/browserconfig.properties create mode 100644 branding/shared/newtab.ico create mode 100644 branding/shared/newwindow.ico create mode 100644 branding/shared/pbmode.ico create mode 100644 branding/shared/pref/preferences.inc create mode 100644 branding/shared/pref/uaoverrides.inc (limited to 'branding/shared') diff --git a/branding/shared/background.png b/branding/shared/background.png new file mode 100644 index 0000000..3594557 Binary files /dev/null and b/branding/shared/background.png differ diff --git a/branding/shared/branding.mozbuild b/branding/shared/branding.mozbuild new file mode 100644 index 0000000..284520a --- /dev/null +++ b/branding/shared/branding.mozbuild @@ -0,0 +1,58 @@ +# -*- Mode: python; c-basic-offset: 4; 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/palemoon-branding.js', + ] + + if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': + FINAL_TARGET_FILES['..'] += [ + 'palemoon.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/background.png', + 'disk.icns', + 'document.icns', + 'dsstore', + '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'] + DEFINES['MOZILLA_COMPATVERSION_U'] = "52.9" diff --git a/branding/shared/locales/browserconfig.properties b/branding/shared/locales/browserconfig.properties new file mode 100644 index 0000000..139e884 --- /dev/null +++ b/branding/shared/locales/browserconfig.properties @@ -0,0 +1,2 @@ +browser.startup.homepage=https://wiby.me/ +browser.startup.homepage_reset=https://wiby.me/ diff --git a/branding/shared/newtab.ico b/branding/shared/newtab.ico new file mode 100644 index 0000000..6e3fee6 Binary files /dev/null and b/branding/shared/newtab.ico differ diff --git a/branding/shared/newwindow.ico b/branding/shared/newwindow.ico new file mode 100644 index 0000000..a300935 Binary files /dev/null and b/branding/shared/newwindow.ico differ diff --git a/branding/shared/pbmode.ico b/branding/shared/pbmode.ico new file mode 100644 index 0000000..d217994 Binary files /dev/null and b/branding/shared/pbmode.ico differ diff --git a/branding/shared/pref/preferences.inc b/branding/shared/pref/preferences.inc new file mode 100644 index 0000000..5b4c031 --- /dev/null +++ b/branding/shared/pref/preferences.inc @@ -0,0 +1,107 @@ +// ===| General |============================================================== + +pref("startup.homepage_welcome_url", ""); + +//pref("app.vendorURL", "http://www.palemoon.org/"); + + +// User Interface +pref("browser.identity.ssl_domain_display", 1); //show domain verified SSL (blue) + +// ============================================================================ + +// ===| Application Update Service |=========================================== + +// Disable application auto-update +pref("app.updated.enabled", false); + +// The time interval between the downloading of mar file chunks in the +// background (in seconds) +//pref("app.update.download.backgroundInterval", 600); + +// Give the user x seconds to react before showing the big UI. default=48 hours +//pref("app.update.promptWaitTime", 172800); + +// ============================================================================ + +// ===| Add-ons Manager |====================================================== + +// Add-on window fixes +pref("extensions.getMoreThemesURL", "https://addons.palemoon.org/themes/"); + +pref("extensions.update.autoUpdateDefault", true); // Automatically update extensions by default +pref("extensions.getAddons.maxResults", 10); +pref("extensions.getAddons.cache.enabled", false); + +// ============================================================================ + +// ===| DOM |================================================================== + +// Set max script runtimes to sane values +pref("dom.max_chrome_script_run_time", 90); //Some addons need ample time! +pref("dom.max_script_run_time", 20); //Should be plenty for a page script to do what it needs + +// ============================================================================ + +// ===| Plugins |============================================================== + +pref("plugin.default.state", 2); //Allow plugins to run by default +pref("plugin.expose_full_path", true); //Security: expose the full path to the plugin +pref("dom.ipc.plugins.timeoutSecs", 20); + +// ============================================================================ + +// ===| Graphics |============================================================= + +pref("nglayout.initialpaint.delay", 300); + +// ============================================================================ + +// ===| Image |================================================================ + +pref("image.mem.max_ms_before_yield", 50); +pref("image.mem.decode_bytes_at_a_time", 65536); //larger chunks + +// ============================================================================ + +// ===| Sync |================================================================= + +// Pale Moon Sync server URLs +//pref("services.sync.serverURL","https://pmsync.palemoon.org/sync/index.php/"); +//pref("services.sync.jpake.serverURL","https://keyserver.palemoon.org/"); +//pref("services.sync.termsURL", "http://www.palemoon.org/sync/terms.shtml"); +//pref("services.sync.privacyURL", "http://www.palemoon.org/sync/privacy.shtml"); +//pref("services.sync.statusURL", "https://pmsync.palemoon.org/status/"); +//pref("services.sync.syncKeyHelpURL", "http://www.palemoon.org/sync/help/recoverykey.shtml"); +// +//pref("services.sync.APILevel", 1); // FSyncMS doesn't support 'info/configuration' requests + +// ============================================================================ + +// ===| Misc. |================================================================ + +// Make sure we shortcut out of a11y to save walking unnecessary code +pref("accessibility.force_disabled", 1); + +// Disable OCSP Stapling which sends every website visited to the CA's server +// and is easily defeatable by sending a '3' response code making the whole +// standard meaningless to protect against MITM attacks with stolen privkeys. +// see https://tools.ietf.org/html/rfc6960#section-4.2 +pref("security.ssl.enable_stapling", false); +pref("security.OCSP.enabled", 0); + +// Force a successful staple if user turns OCSP back to prevent '3' response +// code bypass. keep in mind you'll be sending all the domains you vist to the +// CA's OCSP endpoint. +pref("security.ssl.must_staple", true); +pref("security.OCSP.require", true); + +// ============================================================================ + +// ===| DevTools |============================================================= + +// 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); + +// ============================================================================ diff --git a/branding/shared/pref/uaoverrides.inc b/branding/shared/pref/uaoverrides.inc new file mode 100644 index 0000000..c3286f7 --- /dev/null +++ b/branding/shared/pref/uaoverrides.inc @@ -0,0 +1,83 @@ +// ===| Site Specific User Agent Overrides |=================================== + +#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 PM_SLICE WebBrowser/@MOZ_APP_VERSION@ + +#define GK_VERSION @MOZILLA_COMPATVERSION_U@ +#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 + +// Special-case AMO +// We send the native UA slice now, since they no longer offer any compatible extensions for us. +// This will result in an "only with Firefox" message which suits us fine, because it's the truth. +pref("@GUAO_PREF@.addons.mozilla.org","Mozilla/5.0 (@OS_SLICE@ rv:@GRE_VERSION@) @GRE_DATE_SLICE@ @PM_SLICE@"); + +// Required for domains that have proven unresponsive to requests from users +pref("@GUAO_PREF@.live.com","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@ (Pale Moon)"); +pref("@GUAO_PREF@.msn.com","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@ (Pale Moon)"); +pref("@GUAO_PREF@.bing.com","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@ (Pale Moon)"); +pref("@GUAO_PREF@.outlook.com","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@ (Pale Moon)"); +pref("@GUAO_PREF@.web.de","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@ (Pale Moon)"); +pref("@GUAO_PREF@.aol.com","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@ (Pale Moon)"); +pref("@GUAO_PREF@.calendar.yahoo.com","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@ (Pale Moon)"); +pref("@GUAO_PREF@.google.com","Mozilla/5.0 (@OS_SLICE@ rv:52.9) @GK_SLICE@ @GRE_VERSION_SLICE@ Firefox/52.9 @PM_SLICE@"); +pref("@GUAO_PREF@.googlevideos.com","Mozilla/5.0 (@OS_SLICE@ rv:38.9) @GK_SLICE@ @GRE_VERSION_SLICE@ Firefox/38.9 @PM_SLICE@"); +pref("@GUAO_PREF@.gstatic.com","Mozilla/5.0 (@OS_SLICE@ rv:31.9) @GK_SLICE@ @GRE_VERSION_SLICE@ Firefox/31.9 @PM_SLICE@"); +pref("@GUAO_PREF@.yahoo.com","Mozilla/5.0 (@OS_SLICE@ rv:99.9) @GK_SLICE@ Firefox/99.9 (Pale Moon)"); +pref("@GUAO_PREF@.youtube.com","Mozilla/5.0 (@OS_SLICE@ rv:42.0) @GK_SLICE@ Firefox/42.0 @PM_SLICE@"); +pref("@GUAO_PREF@.gaming.youtube.com","Mozilla/5.0 (@OS_SLICE@ rv:42.0) @GK_SLICE@ Firefox/42.0"); +pref("@GUAO_PREF@.dropbox.com","Mozilla/5.0 (@OS_SLICE@ rv:99.9) @GK_SLICE@ Firefox/99.9 (Pale Moon)"); + +pref("@GUAO_PREF@.players.brightcove.net","Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"); + +// The never-ending Facebook debacle... +pref("@GUAO_PREF@.facebook.com","Mozilla/5.0 (@OS_SLICE@ rv:99.9) @GK_SLICE@ Firefox/99.9 (Pale Moon)"); +pref("@GUAO_PREF@.fbcdn.net","Mozilla/5.0 (@OS_SLICE@ rv:99.9) @GK_SLICE@ Firefox/99.9 (Pale Moon)"); + + +// UA-Sniffing domains below are pending responses from their operators - temp workaround +pref("@GUAO_PREF@.chase.com","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@"); +// For Amazon Prime videos +pref("@GUAO_PREF@.www.amazon.com","Mozilla/5.0 (@OS_SLICE@ rv:45.9) @GK_SLICE@ Firefox/45.9 (Pale Moon)"); +// Soundcloud uses Firefox-exclusive combinations of code. Never pass Firefox slice. +pref("@GUAO_PREF@.soundcloud.com","Mozilla/5.0 (@OS_SLICE@ rv:@GRE_VERSION@) @GRE_DATE_SLICE@ @PM_SLICE@"); +// 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. +pref("@GUAO_PREF@.deviantart.com","Mozilla/5.0 (@OS_SLICE@ rv:@GRE_VERSION@) @GRE_DATE_SLICE@ @PM_SLICE@"); +pref("@GUAO_PREF@.deviantart.net","Mozilla/5.0 (@OS_SLICE@ rv:@GRE_VERSION@) @GRE_DATE_SLICE@ @PM_SLICE@"); +pref("@GUAO_PREF@.altibox.dk","Mozilla/5.0 (@OS_SLICE@ rv:@GRE_VERSION@) @GRE_DATE_SLICE@ @PM_SLICE@"); +pref("@GUAO_PREF@.altibox.no","Mozilla/5.0 (@OS_SLICE@ rv:@GRE_VERSION@) @GRE_DATE_SLICE@ @PM_SLICE@"); +pref("@GUAO_PREF@.firefox.com","Mozilla/5.0 (@OS_SLICE@ rv:@GRE_VERSION@) @GRE_DATE_SLICE@ @PM_SLICE@"); + +// UA-Sniffing domains below have indicated no interest in supporting Pale Moon (BOO!) +pref("@GUAO_PREF@.humblebundle.com","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@ (Pale Moon)"); +pref("@GUAO_PREF@.privat24.ua","Mozilla/5.0 (@OS_SLICE@ rv:38.0) @GK_SLICE@ Firefox/38.0"); +pref("@GUAO_PREF@.citi.com","Mozilla/5.0 (@OS_SLICE@ rv:57.0) @GK_SLICE@ Firefox/57.0 (Pale Moon)"); +pref("@GUAO_PREF@.netflix.com","Mozilla/5.0 (@OS_SLICE@ rv:45.9) @GK_SLICE@ Firefox/45.9"); +pref("@GUAO_PREF@.netflximg.net","Mozilla/5.0 (@OS_SLICE@ rv:45.9) @GK_SLICE@ Firefox/45.9"); + +// UA-sniffing domains that are "app/vendor-specific" and do not like Pale Moon +pref("@GUAO_PREF@.web.whatsapp.com","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36"); + +// 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@ @PM_SLICE@"); + +// ============================================================================ -- cgit v1.2.3