Commit graph

1,186 commits

Author SHA1 Message Date
Roy Tam
b241d88b7d remove official brandings, closes #10. 2019-12-17 10:21:20 +08:00
Roy Tam
fe246de487 Merge remote-tracking branch 'origin/master' into custom 2019-12-12 13:32:54 +08:00
wolfbeast
9bb203773c Update default bookmarks toolbar FAQ entry to redirect to forum. 2019-12-12 13:32:04 +08:00
wolfbeast
ac6ab46cad New cycle version bump 2019-12-12 13:31:59 +08:00
Roy Tam
1b93e051f2 Merge remote-tracking branch 'origin/master' into custom 2019-12-02 15:47:09 +08:00
Matt A. Tobin
a4b95f5c0a Issue #1306 - Move bundled fonts to toolkit 2019-12-02 15:46:26 +08:00
Roy Tam
33f029715a Merge remote-tracking branch 'origin/master' into custom 2019-11-29 11:37:55 +08:00
Matt A. Tobin
364df3c82e Fix typo in application./basilisk/build.mk 2019-11-29 11:36:38 +08:00
Matt A. Tobin
2ddb294c26 Issue #1303 - Add langpack generation targets for Pale Moon and Basilisk
* The langpack is not generated via the package target but IS for mozpackage target using old behavior
* Add mach command to specifically generate the langpack when needed without the rest of the packaging routine (mach langpack)
2019-11-29 11:36:36 +08:00
Roy Tam
09a915bd50 Merge remote-tracking branch 'origin/master' into custom 2019-11-28 10:34:50 +08:00
Matt A. Tobin
94b1e61383 No Issue - Use alternative packaging for Pale Moon and Basilisk
* This adds what will eventually be a rewritten packaging routine while maintaining backwards compatibility with the original mozilla routine
* Changes the build target and installer makefile to use the alternative packaging
* Adds build target to specifically invoke the original mozilla routine
* Update mach commands accordingly
2019-11-28 10:32:44 +08:00
wolfbeast
b8f4a7fd8b Issue #1254 - Update embedded emoji font to 0.5.0 (Twemoji 12.1.3) for
Emoji 12 support.
2019-11-28 10:32:37 +08:00
Roy Tam
0d0bb35885 Merge remote-tracking branch 'origin/master' into custom 2019-11-16 06:18:37 +08:00
wolfbeast
cb944199e0 Add Ekoru to the included search engines.
This provides a charity-supporting search engine option focused on
the planet's health and animal welfare.
Since this engine is based on Bing search, it provides a balancing
alternative to Ecosia (Google-based) with similar eco goals.
2019-11-16 06:17:39 +08:00
Roy Tam
d2b5ffafc2 Merge remote-tracking branch 'origin/master' into custom 2019-11-15 15:03:49 +08:00
wolfbeast
4749ba0047 Issue #1289 - Part 4: Update Pale Moon UI.
This swaps the UI choice to using the new boolean pref instead of
enforcement level.
2019-11-15 14:24:08 +08:00
Roy Tam
b53b2fdca6 Merge remote-tracking branch 'origin/master' into custom 2019-11-05 10:44:28 +08:00
wolfbeast
c7212a0d1a Issue #1252 - Remove fragile fast path.
This resolves #1252.
2019-11-05 10:43:39 +08:00
Roy Tam
e578dccb6d [palemoon] lock browser.tabs.remote.* to prevent crash if user tries to enable them. 2019-11-04 15:05:16 +08:00
Roy Tam
09a00ad3bd Merge remote-tracking branch 'origin/master' into custom 2019-11-04 11:56:53 +08:00
athenian200
d8c37e0db8 MoonchildProductions#1251 - Part 24: Remove temporary GNU M4 workaround.
We finally found where configure was failing. Apparently they just invoked m4 without regard for TOOLCHAIN_PREFIX. Easy to fix, difficult to find.
2019-11-04 11:54:03 +08:00
athenian200
1041e13cfb MoonchildProductions#1251 - Part 21: Fix Flash player and some extensions being incompatible.
82dd4adb0e/components/desktop/firefox/patches/firefox-49-npapi.patch

The first fix was something I found on Oracle's patchset and allowed me to use the last Flash Player compiled for Solaris, from all the way back in 2012. Still works with most Flash content.

The second is an evolution of what I had to do to get Interlink to compile. For Interlink, I basically had to copy the contents of any boolean values from confvars.sh into the empty moz.configure file, otherwise nothing would get configured. I decided to test whether Pale Moon had the same issue, and it turned out that it wasn't as bad as on Interlink, but it was still pure luck that the browser component built at all, because MOZ_PHOENIX and other important flags were apparently not being defined at all, hence why I couldn't get half the extensions to be compatible at first.

I don't know why this is the case, but apparently configure.in isn't able to import values from confvars.sh. old-configure.in seems immune to the problem that application-specific configure.in files were experiencing, though. confvars.sh itself seems to work fine with values that aren't passed along via configure.in, though. So it's the interface between those two files that is messed up.
2019-11-04 11:53:59 +08:00
athenian200
6de8a0f12d MoonchildProductions#1251 - Part 1: Restore initial Solaris support, fixed up.
Compared with what Pale Moon had for Solaris originally, this is mostly the same zero point I started patching from, but I've made the following changes here after reviewing all this initial code I never looked at closely before.

1. In package-manifest.in for both Basilisk and Pale Moon, I've made the SPARC code for libfreebl not interefere with the x86 code, use the proper build flags, and also updated it to allow a SPARC64 build which is more likely to be used than the 32-bit SPARC code we had there.

2. See Mozilla bug #832272 and the old rules.mk patch from around Firefox 30 in oracle/solaris-userland. I believe they screwed up NSINSTALL on Solaris when they were trying to streamline the NSS buildsystem, because they started having unexplained issues with it around that time after Firefox 22 that they never properly resolved until Mozilla began building NSS with gyp files. I'm actually not even sure how relevant the thing they broke actually is to Solaris at this point, bug 665509 is so old it predates Firefox itself and goes back to the Mozilla suite days. I believe $(INSTALL) -t was wrong, and they meant $(NSINSTALL) -t because that makes more sense and is closer to what was there originally. It's what they have for WINNT, and it's possible a fix more like that could serve for Solaris as well. Alternatively, we could get rid of all these half-broken Makefiles and start building NSS with gyp files like Mozilla did.

3. I've completely cut out support for the Sun compiler and taken into account the reality that everyone builds Firefox (and therefore its forks) with GCC now on Solaris. This alone helped clean up a lot of the uglier parts of the code.

4. I've updated all remaining SOLARIS build flags to the newer XP_SOLARIS, because the SOLARIS flag is no longer set when building Solaris.

5. I've confirmed the workaround in gtxFontconfigFonts.cpp is no longer necessary. The Solaris people got impatient about implementing a half-baked patch for a fontconfig feature that wasn't ready yet back in 2009, and somehow convinced Mozilla to patch their software to work around it when really they should have just fixed or removed their broken fontconfig patch. The feature they wanted has since been implemented properly, and no version of Solaris still uses the broken patch that required this fix. If anyone had ever properly audited this code, it would have been removed a long time ago.
2019-11-04 11:52:13 +08:00
Roy Tam
e43610d8a7 Merge remote-tracking branch 'origin/master' into custom 2019-11-02 06:46:58 +08:00
wolfbeast
465f7201ca #1261 - Update status bar component for the removal of Object.(un)watch
This fixes the regression from #1257 by adding in an
Object.prototype.watch() shim, based on Eli Grey's polyfill.

This resolves #1261.
2019-11-02 06:45:33 +08:00
Roy Tam
d169fea758 Revert "Follow up to #1177 - Clean up package-manifest.in"
This reverts commit fdd8829fea.
2019-10-19 12:04:13 +08:00
Roy Tam
56f0c32c14 guard getBoolPref(kPrefWebIDEInNavbar) with try-catch block 2019-10-19 11:41:08 +08:00
Roy Tam
df89b48e30 Revert "Remove WebIDE devtools component."
This reverts commit 8c1500707f.

# Conflicts:
#	application/basilisk/components/customizableui/CustomizableUI.jsm
2019-10-18 09:09:39 +08:00
Roy Tam
e589306930 Revert "Issue #1124: [Basilisk] Remove Dev Edition theme."
This reverts commit bd9bb12027.
2019-09-20 22:21:40 +08:00
Roy Tam
6d191b58d4 Merge remote-tracking branch 'origin/master' into custom 2019-09-06 23:57:22 +08:00
wolfbeast
b3b78fea06 Issue #1222: Don't load plugin instances when they have no src URI.
Favor fallback content in that case (if present). Fallback is always
considered "good" in this case so may end up doing nothing which is what
we'd want for corner cases that hammer this routine with no content.
2019-09-06 23:48:49 +08:00
Roy Tam
6c9fff4c0e Merge remote-tracking branch 'origin/master' into custom 2019-08-30 13:38:16 +08:00
wolfbeast
b328222636 New cycle version bump 2019-08-30 13:37:39 +08:00
Roy Tam
8ec47d9a66 optimize about-background.png 2019-08-30 13:33:02 +08:00
Mathwi
a0cdcc34b4 Help / About dialog box enhancements (#8)
* Replace Help / About Serpent window background

* Copy new web.whatsapp.com SSUAO from PM to Serpent

* Revert last commit & future-proof whatsapp SSUAO

1. Reverted previous commit as unnecessary. Web.whatsapp.com will work with a FF SSUAO as well as a Chrome one.
2. Changed FF rv for whatsapp.com from 61.0 to 68.0 so whatsapp will consider Basilisk & Serpent "up to date" for a while longer

* Fix file ext. to show "Serpent" wordmark

Style sheet was attempting to load about-wordmark.png but actual file is about-wordmark.svg

* Update about-wordmark.svg

* New royalty-free Help / About background image
2019-08-29 06:27:22 +08:00
Roy Tam
e6e3f61761 Merge remote-tracking branch 'origin/master' into custom 2019-08-23 10:05:02 +08:00
Matt A. Tobin
90f6b97ecc [MCP Applications] Add %WIDGET_TOOLKIT% to the AUS update url for Pale Moon and Basilisk
Also removes the redundant branding version of app.update.url in Pale Moon that was missed when many prefs were merged back into application preferences
2019-08-23 09:58:14 +08:00
Roy Tam
59916a7d19 update Twemoji font to KwanEsq/twemoji-colr v12 branch with twemoji-12.1.2. 2019-08-18 13:46:05 +08:00
Roy Tam
18869d3807 Merge remote-tracking branch 'origin/master' into custom 2019-08-17 13:34:39 +08:00
wolfbeast
bd9bb12027 Issue #1124: [Basilisk] Remove Dev Edition theme. 2019-08-17 13:33:08 +08:00
wolfbeast
188fdce00f Issue #1124: [Basilisk] Remove Dev Edition front-end tie-ins. 2019-08-17 13:32:34 +08:00
wolfbeast
1f68992bee Issue #1124: Remove Firefox Developer Edition code.
Removes all occurrences of MOZ_DEV_EDITION code and some helpers.
2019-08-17 13:32:31 +08:00
janekptacijarabaci
fe68fd519c Remove "Delete this page" and "Forget about this site" from livemarks.
These context menu entries should not be present on live bookmarks
because they make no sense for feed entries.
This resolves #663.
2019-08-17 13:31:54 +08:00
wolfbeast
dabcbe1d6d Remove some leftover snippets code.
follow-up to 3a17b713ef27abb8c9d7c116815d3af7e0f366d9
2019-08-17 13:30:58 +08:00
Roy Tam
a85a33f6de Merge remote-tracking branch 'origin/master' into custom 2019-08-02 14:09:49 +08:00
wolfbeast
aa1fc0720e Hide and disable open_all/cut/copy/delete/properties when opening
bookmarks/history context menu with no selection

This resolves #882 (by not offering options that can't be used)
2019-08-02 13:48:47 +08:00
Ryan Fox
f921a47707 Issue #1156 - Location Bar Preferences Checkboxes
Signed-off-by: Ryan Fox <flewkey@2a03.party>
2019-08-02 13:48:42 +08:00
Roy Tam
57a3bd35a6 Merge remote-tracking branch 'origin/master' into custom 2019-07-27 06:45:53 +08:00
wolfbeast
b0cd49c0b8 Add UI preference for overall vertical smooth scrolling speed
(as a percentage).

Resolves #1147.
2019-07-27 06:35:40 +08:00
Roy Tam
4ad03e727f Merge remote-tracking branch 'origin/master' into custom 2019-07-25 21:47:07 +08:00