I'm not really sure what that means.ThatRandomToast wrote: ↑11 Apr 2026, 14:18 Regarding age restrictions and ID requirements, are more companies and countries trying to follow China?
I'm not really sure what that means.ThatRandomToast wrote: ↑11 Apr 2026, 14:18 Regarding age restrictions and ID requirements, are more companies and countries trying to follow China?
Code: Select all
// ==UserScript==
// @name - YouTube 00 - Invidious Redirect
// @version 1.2.1
// @include http://www.youtube.com/*
// @include https://www.youtube.com/*
// @run-at document-start
// @grant none
// ==/UserScript==
document.addEventListener('keydown', function(event) {
if (event.key === 'Escape') {
var a = 0;
setInterval(function () {
if (a === 0 && window.location.href.indexOf('watch?') > -1 && window.location.href.indexOf('list=WL') < 0) {
a = '//inv.nadeko.net/watch?' + window.parent.location.href.split('?')[1] + '&quality=dash&quality_dash=best';
window.location.replace(a);
}
}, 10);
}
});
Code: Select all
// ==UserScript==
// @name - YouTube 00 - Invidious Redirect
// @version 1.2.1
// @include http://www.youtube.com/*
// @include https://www.youtube.com/*
// @run-at document-start
// @grant none
// ==/UserScript==
document.addEventListener('keydown', function(event) {
if (event.key === 'Escape') {
var a = 0;
setInterval(function () {
if (a === 0 && window.location.href.indexOf('watch?') > -1 && window.location.href.indexOf('list=WL') < 0) {
a = '//inv.nadeko.net/watch?' + window.parent.location.href.split('?')[1] + '&quality=dash&quality_dash=best';
window.location.replace(a);
}
}, 10);
}
});
Attachments
Attachments
Attachments
Attachments
Attachments
Attachments
Attachments
Attachments
Attachments
Attachments
Attachments
Attachments
]]>
]]>Code: Select all
// ==UserScript==
// @name - Fonts - Apply Text Shadow
// @match *://*/*
// @version 2.17.1
// @grant none
// ==/UserScript==
'use strict';
var isRunning;
function applyFilter() {
var AllElem=document.querySelectorAll(':not(script):not(style):not(area):not(base):not(br):not(col):not(embed):not(hr):not(img):not(input):not(keygen):not(link):not(meta):not(param):not(source):not(track):not(wbr):not(table):not(tbody):not(tr):not(ul)')
for (var i=0;i<AllElem.length;i++) {
for (var j=0;j<AllElem[i].childNodes.length;j++) { // cycle through element nodes
if (AllElem[i].childNodes[j].nodeType===3 && AllElem[i].childNodes[j].textContent.trim().length>0) {// is it a text node?
if (window.getComputedStyle(AllElem[i]).getPropertyValue('text-shadow')=='none'){ // do not run if text-shadow is already present
var Col=window.getComputedStyle(AllElem[i]).getPropertyValue('color').replace(/[^\d,.]/g,'').split(',') // text color array (R/G/B/A)
if (typeof(Col[3])=='undefined'||Col[3].split('.')[0]=='1') { // run if element does not have an alpha channel already applied
var Lum=Math.round(0.2126*Col[0]+0.7152*Col[1]+0.0722*Col[2]) // luminosity
var Opa=parseFloat(255*(255-Lum)/65025).toFixed(1) // opacity between 0 and 1
if (Lum<128) Opa=1
AllElem[i].style.setProperty('text-shadow','0 0 0px rgba('+Col[0]+','+Col[1]+','+Col[2]+','+Opa+')','important') // set text shadow with alpha
}
}
}
}
}
}
function waitAndApplyFilter() {
if (typeof(isRunning)!='undefined') clearTimeout(isRunning)
isRunning=setTimeout(function(){applyFilter()},100)
}
const callback = (mutationList, observer) => { // called every time BODY has changed
for (const mutation of mutationList) {
if (mutation.type === "childList") waitAndApplyFilter()
}
};
applyFilter();
const targetNode = document.getElementsByTagName("body")[0]
// Options for the observer (which mutations to observe)
const config = { attributes: false, childList: true, subtree: true };
// Create an observer instance linked to the callback function
const observer = new MutationObserver(callback);
// Start observing the target node for configured mutations
observer.observe(targetNode, config);
Code: Select all
// ==UserScript==
// @name - Fonts - Set Minimum Weight
// @version 1.0
// @match http://*/*
// @match https://*/*
// @grant none
// @run-at document-idle
// ==/UserScript==
(function() {
'use strict';
var minweight = 400;
var all = document.getElementsByTagName("*");
for (var i=0, max=all.length; i < max; i++) {
var weight = parseFloat(window.getComputedStyle(all.item(i), null).getPropertyValue('font-weight'));
if (weight < minweight) {
all.item(i).style.fontWeight = minweight;
}
}
})();
Code: Select all
// ==UserScript==
// @name - Fonts - Apply Text Shadow
// @match *://*/*
// @version 2.17.1
// @grant none
// ==/UserScript==
'use strict';
var isRunning;
function applyFilter() {
var AllElem=document.querySelectorAll(':not(script):not(style):not(area):not(base):not(br):not(col):not(embed):not(hr):not(img):not(input):not(keygen):not(link):not(meta):not(param):not(source):not(track):not(wbr):not(table):not(tbody):not(tr):not(ul)')
for (var i=0;i<AllElem.length;i++) {
for (var j=0;j<AllElem[i].childNodes.length;j++) { // cycle through element nodes
if (AllElem[i].childNodes[j].nodeType===3 && AllElem[i].childNodes[j].textContent.trim().length>0) {// is it a text node?
if (window.getComputedStyle(AllElem[i]).getPropertyValue('text-shadow')=='none'){ // do not run if text-shadow is already present
var Col=window.getComputedStyle(AllElem[i]).getPropertyValue('color').replace(/[^\d,.]/g,'').split(',') // text color array (R/G/B/A)
if (typeof(Col[3])=='undefined'||Col[3].split('.')[0]=='1') { // run if element does not have an alpha channel already applied
var Lum=Math.round(0.2126*Col[0]+0.7152*Col[1]+0.0722*Col[2]) // luminosity
var Opa=parseFloat(255*(255-Lum)/65025).toFixed(1) // opacity between 0 and 1
if (Lum<128) Opa=1
AllElem[i].style.setProperty('text-shadow','0 0 0px rgba('+Col[0]+','+Col[1]+','+Col[2]+','+Opa+')','important') // set text shadow with alpha
}
}
}
}
}
}
function waitAndApplyFilter() {
if (typeof(isRunning)!='undefined') clearTimeout(isRunning)
isRunning=setTimeout(function(){applyFilter()},100)
}
const callback = (mutationList, observer) => { // called every time BODY has changed
for (const mutation of mutationList) {
if (mutation.type === "childList") waitAndApplyFilter()
}
};
applyFilter();
const targetNode = document.getElementsByTagName("body")[0]
// Options for the observer (which mutations to observe)
const config = { attributes: false, childList: true, subtree: true };
// Create an observer instance linked to the callback function
const observer = new MutationObserver(callback);
// Start observing the target node for configured mutations
observer.observe(targetNode, config);
Code: Select all
// ==UserScript==
// @name - Fonts - Set Minimum Weight
// @version 1.0
// @match http://*/*
// @match https://*/*
// @grant none
// @run-at document-idle
// ==/UserScript==
(function() {
'use strict';
var minweight = 400;
var all = document.getElementsByTagName("*");
for (var i=0, max=all.length; i < max; i++) {
var weight = parseFloat(window.getComputedStyle(all.item(i), null).getPropertyValue('font-weight'));
if (weight < minweight) {
all.item(i).style.fontWeight = minweight;
}
}
})();
I wonder if you could test alpha 149 builds to figure out where this dip occur ed. Could fix the issue in r3dfox.The-10-Pen wrote: ↑16 Apr 2026, 19:03 2026-04-16_14-56-30.jpg
2026-04-16_14-52-51.jpg
2026-04-16_14-50-36.jpg
The version included in r3dfox and in the Firefox addon store is MV2 though. There is a uBO Lite that is MV3, and from what I've heard it works pretty well and can even be better than MV2 uBO, but I haven't tried it.The-10-Pen wrote: ↑16 Apr 2026, 21:38 In case you missed it (because I "talk a lot", lol), MV3 is *one of the reasons* that I *hate* uBO force-included in recent 'fox forks.
Although, yeah, I probably (probably) shouldn't complain about that UNTIL (it will happen eventually, IMO) Firefox/Forks no longer support MV2.
I *intentionally* use a MV2 version of uBO.
Those are two different types of addons. uMatrix is not the same sort of content blocker as uBlock Origin. They're kinda made to be used together, which I do.
Corporate controlled opposition *and* literally argued in court that they were not news and just entertainment, and argued that no sane person would take them seriously. You could do a lot better.The-10-Pen wrote: ↑16 Apr 2026, 23:41 And H#LL YEAH, CNN *and* Fox! When I tell you I am "purple" and a "centrist", I really am.
I HATE THE "EXTREMISTS" ON BOTH SIDES !!!
Yeah all that comes from needing to parse the modern internet. I don't think we will ever get that.
Out of the last three major Firefox redesigns, I prefer the Firefox 68 style the most imo. Although it's a low bar and only beats Austrailous or whatever because the tab shape isn't horrible. 89+ I hate the floating tabs and the line icons are worse, but not worse enough for me to replace them in r3dfox. Except for where it makes the downloads list horrible to check for failed downloads.The-10-Pen wrote: ↑18 Apr 2026, 00:26 The UI of Mypal bugs the crap out of me. Not even sure "why", to be honest.
It's some form of "beauty is in the eye of the beholder" and I just find it and those like it UGLY.
That seems like a weird RAM leak. I didn't encounter this when I tested Librewolf on my T52 with 1GB. It was just very slow, even when I accidentally ran it without a page file. Although that was on x86 Debian Linux.
Combination of modern internet being awful and them forking at literally the worst point. Firefox 52 was basically the end point where Firefox consistently got slower and slower every release. I feel the browser would've been better off had they just kept extending the 38 ESR codebase. Although you could still do better.
Next version of Lun3r will come with Dactyloidae's performance improvements, and if things go well, both browsers should merge, so updates should be at least a little more consistent.
I wonder if you could test alpha 149 builds to figure out where this dip occur ed. Could fix the issue in r3dfox.The-10-Pen wrote: ↑16 Apr 2026, 19:03 2026-04-16_14-56-30.jpg
2026-04-16_14-52-51.jpg
2026-04-16_14-50-36.jpg
The version included in r3dfox and in the Firefox addon store is MV2 though. There is a uBO Lite that is MV3, and from what I've heard it works pretty well and can even be better than MV2 uBO, but I haven't tried it.The-10-Pen wrote: ↑16 Apr 2026, 21:38 In case you missed it (because I "talk a lot", lol), MV3 is *one of the reasons* that I *hate* uBO force-included in recent 'fox forks.
Although, yeah, I probably (probably) shouldn't complain about that UNTIL (it will happen eventually, IMO) Firefox/Forks no longer support MV2.
I *intentionally* use a MV2 version of uBO.
Those are two different types of addons. uMatrix is not the same sort of content blocker as uBlock Origin. They're kinda made to be used together, which I do.
Corporate controlled opposition *and* literally argued in court that they were not news and just entertainment, and argued that no sane person would take them seriously. You could do a lot better.The-10-Pen wrote: ↑16 Apr 2026, 23:41 And H#LL YEAH, CNN *and* Fox! When I tell you I am "purple" and a "centrist", I really am.
I HATE THE "EXTREMISTS" ON BOTH SIDES !!!
Yeah all that comes from needing to parse the modern internet. I don't think we will ever get that.
Out of the last three major Firefox redesigns, I prefer the Firefox 68 style the most imo. Although it's a low bar and only beats Austrailous or whatever because the tab shape isn't horrible. 89+ I hate the floating tabs and the line icons are worse, but not worse enough for me to replace them in r3dfox. Except for where it makes the downloads list horrible to check for failed downloads.The-10-Pen wrote: ↑18 Apr 2026, 00:26 The UI of Mypal bugs the crap out of me. Not even sure "why", to be honest.
It's some form of "beauty is in the eye of the beholder" and I just find it and those like it UGLY.
That seems like a weird RAM leak. I didn't encounter this when I tested Librewolf on my T52 with 1GB. It was just very slow, even when I accidentally ran it without a page file. Although that was on x86 Debian Linux.
Combination of modern internet being awful and them forking at literally the worst point. Firefox 52 was basically the end point where Firefox consistently got slower and slower every release. I feel the browser would've been better off had they just kept extending the 38 ESR codebase. Although you could still do better.
Next version of Lun3r will come with Dactyloidae's performance improvements, and if things go well, both browsers should merge, so updates should be at least a little more consistent.
Corporate controlled opposition *and* literally argued in court that they were not news and just entertainment, and argued that no sane person would take them seriously. You could do a lot better.The-10-Pen wrote: ↑16 Apr 2026, 23:41 And H#LL YEAH, CNN *and* Fox! When I tell you I am "purple" and a "centrist", I really am.
I HATE THE "EXTREMISTS" ON BOTH SIDES !!!
Corporate controlled opposition *and* literally argued in court that they were not news and just entertainment, and argued that no sane person would take them seriously. You could do a lot better.The-10-Pen wrote: ↑16 Apr 2026, 23:41 And H#LL YEAH, CNN *and* Fox! When I tell you I am "purple" and a "centrist", I really am.
I HATE THE "EXTREMISTS" ON BOTH SIDES !!!
Attachments
Attachments
Please can you check these pages with Chromium:
Please can you check these pages with Chromium:
Attachments
Attachments
I don't think I've ever used RequestPolicy, and I'm not sure how this would be better. It looks like it does the same thing as uMatrix but with less fine grained control.Duke wrote: ↑18 Apr 2026, 13:46You may also want to check this one (remember RequestPolicy):the_r3dacted wrote: ↑18 Apr 2026, 13:06 uMatrix is not the same sort of content blocker as uBlock Origin. They're kinda made to be used together, which I do.
https://addons.mozilla.org/en-US/firefox/addon/tprb/
416 to 407 is small enough that it could just be run variance. The +- is literally 39.]]>The-10-Pen wrote: ↑18 Apr 2026, 13:54 first = 452
middle = 416
last = 407
That seems like enough data points to me. 149 just got slower and slower and slower with each and every nightly.
I don't think I've ever used RequestPolicy, and I'm not sure how this would be better. It looks like it does the same thing as uMatrix but with less fine grained control.Duke wrote: ↑18 Apr 2026, 13:46You may also want to check this one (remember RequestPolicy):the_r3dacted wrote: ↑18 Apr 2026, 13:06 uMatrix is not the same sort of content blocker as uBlock Origin. They're kinda made to be used together, which I do.
https://addons.mozilla.org/en-US/firefox/addon/tprb/
416 to 407 is small enough that it could just be run variance. The +- is literally 39.]]>The-10-Pen wrote: ↑18 Apr 2026, 13:54 first = 452
middle = 416
last = 407
That seems like enough data points to me. 149 just got slower and slower and slower with each and every nightly.
Attachments
Attachments
Attachments
Attachments
DoNotThrowOldPCsAway wrote: ↑16 Apr 2026, 15:14 Anyone else noticed how fast version 148 was only for the whole speed improvement to go away in 149?
DoNotThrowOldPCsAway wrote: ↑16 Apr 2026, 15:14 Anyone else noticed how fast version 148 was only for the whole speed improvement to go away in 149?
Attachments
Attachments
I'm not asking you to count one by one. But in both pages emojis are sorted by sections or subgroups.The-10-Pen wrote: ↑18 Apr 2026, 14:24 That second web site has no way for me to report a quantified result.
Aside from me manually counting "squares" representing an un-rendered font (which I'm not going to count, sorry).
I'm not asking you to count one by one. But in both pages emojis are sorted by sections or subgroups.The-10-Pen wrote: ↑18 Apr 2026, 14:24 That second web site has no way for me to report a quantified result.
Aside from me manually counting "squares" representing an un-rendered font (which I'm not going to count, sorry).
AGREED !!!the_r3dacted wrote: ↑18 Apr 2026, 13:06Corporate controlled opposition *and* literally argued in court that they were not news and just entertainment, and argued that no sane person would take them seriously. You could do a lot better.The-10-Pen wrote: ↑16 Apr 2026, 23:41 And H#LL YEAH, CNN *and* Fox! When I tell you I am "purple" and a "centrist", I really am.
I HATE THE "EXTREMISTS" ON BOTH SIDES !!!
AGREED !!!the_r3dacted wrote: ↑18 Apr 2026, 13:06Corporate controlled opposition *and* literally argued in court that they were not news and just entertainment, and argued that no sane person would take them seriously. You could do a lot better.The-10-Pen wrote: ↑16 Apr 2026, 23:41 And H#LL YEAH, CNN *and* Fox! When I tell you I am "purple" and a "centrist", I really am.
I HATE THE "EXTREMISTS" ON BOTH SIDES !!!
I'm talking about the technical aspect of things. Why does it work in this case but not in this other case, that's what I'm trying to understand.]]>The-10-Pen wrote: ↑18 Apr 2026, 19:43 emoji's and use thereof is for TEENAGE GIRLS and their PHONE apps. NOT for adults.
I'm talking about the technical aspect of things. Why does it work in this case but not in this other case, that's what I'm trying to understand.]]>The-10-Pen wrote: ↑18 Apr 2026, 19:43 emoji's and use thereof is for TEENAGE GIRLS and their PHONE apps. NOT for adults.
Attachments
Attachments
So did I, and it worked.The-10-Pen wrote: ↑19 Apr 2026, 10:31 so I go the .pdf route today.
24.9 MB (25,563 KB) file size to capture those d@mn ONE HUNDRED AND THIRTY PAGES.
Compress it to a .7z and it's only 7.03 MB (7,206 KB) but I ran into a brick F'in wall the last time I tried to attach a .7z
So did I, and it worked.The-10-Pen wrote: ↑19 Apr 2026, 10:31 so I go the .pdf route today.
24.9 MB (25,563 KB) file size to capture those d@mn ONE HUNDRED AND THIRTY PAGES.
Compress it to a .7z and it's only 7.03 MB (7,206 KB) but I ran into a brick F'in wall the last time I tried to attach a .7z
The version included in r3dfox and in the Firefox addon store is MV2 though. There is a uBO Lite that is MV3, and from what I've heard it works pretty well and can even be better than MV2 uBO, but I haven't tried it.The-10-Pen wrote: ↑16 Apr 2026, 21:38 In case you missed it (because I "talk a lot", lol), MV3 is *one of the reasons* that I *hate* uBO force-included in recent 'fox forks.
Although, yeah, I probably (probably) shouldn't complain about that UNTIL (it will happen eventually, IMO) Firefox/Forks no longer support MV2.
The version included in r3dfox and in the Firefox addon store is MV2 though. There is a uBO Lite that is MV3, and from what I've heard it works pretty well and can even be better than MV2 uBO, but I haven't tried it.The-10-Pen wrote: ↑16 Apr 2026, 21:38 In case you missed it (because I "talk a lot", lol), MV3 is *one of the reasons* that I *hate* uBO force-included in recent 'fox forks.
Although, yeah, I probably (probably) shouldn't complain about that UNTIL (it will happen eventually, IMO) Firefox/Forks no longer support MV2.
We have decided to extend support to ESR 115 only on Windows 7-8.1 and macOS 10.12-10.14 up to August 2026.
We will re-evaluate this decision in July 2026 and announce any updates on ESR 115's end-of-life then.
We have decided to extend support to ESR 115 only on Windows 7-8.1 and macOS 10.12-10.14 up to August 2026.
We will re-evaluate this decision in July 2026 and announce any updates on ESR 115's end-of-life then.
On top of that I've just noticed that R3dfox keeps on connecting to detectportal.firefox.com every time I open a new window (Ctrl+N) even though network.captive-portal-service.enabled is set to false.
On top of that I've just noticed that R3dfox keeps on connecting to detectportal.firefox.com every time I open a new window (Ctrl+N) even though network.captive-portal-service.enabled is set to false.
]]>The NetworkConnectivityService will periodically connect to the same URL we use for captive portal detection, but will restrict its preferences to either IPv4 or IPv6.
]]>The NetworkConnectivityService will periodically connect to the same URL we use for captive portal detection, but will restrict its preferences to either IPv4 or IPv6.
the_r3dacted said: "Maybe". There:
I don't know what I'm going to do. Maybe I'll work on 140.9 ESR which will mirror a lot of changes from 149.0.2 since I'm rebuilding it.
]]>the-r3dacted wrote:I think I'm just going to skip 140.9. Running into issues with the patches. Will just wait for 140.10 patches.
the_r3dacted said: "Maybe". There:
I don't know what I'm going to do. Maybe I'll work on 140.9 ESR which will mirror a lot of changes from 149.0.2 since I'm rebuilding it.
]]>the-r3dacted wrote:I think I'm just going to skip 140.9. Running into issues with the patches. Will just wait for 140.10 patches.
Attachments
Attachments
However, I have grown over many years the habit of treating "portable" apps in the original sense of the term, i.e. in being transferable across different devices; thus, I religiously avoid to associate in any manner any instance of a said "portable" app with a given host OS; and since pmprt.mod became available, I manually rename the default ".\browser\pmundprt.mod" file to ".\browser\pmundprt.mod.BAK" and create a ".\browser\pmprt.mod" (empty) file in its place; only then do I launch r3dfox.exeAdded the rest of the portable mode code (pmprt.mod now makes the browser run in no-remote mode as it should and completely disables set as default functionality) (Normal portable mode (pmundprt.mod) works the same as before)
However, I have grown over many years the habit of treating "portable" apps in the original sense of the term, i.e. in being transferable across different devices; thus, I religiously avoid to associate in any manner any instance of a said "portable" app with a given host OS; and since pmprt.mod became available, I manually rename the default ".\browser\pmundprt.mod" file to ".\browser\pmundprt.mod.BAK" and create a ".\browser\pmprt.mod" (empty) file in its place; only then do I launch r3dfox.exeAdded the rest of the portable mode code (pmprt.mod now makes the browser run in no-remote mode as it should and completely disables set as default functionality) (Normal portable mode (pmundprt.mod) works the same as before)
Attachments
Attachments
Another annoyance with R3dfox 150.0b10: the calculation of the browsing data seems to be stuck
Attachments
Another annoyance with R3dfox 150.0b10: the calculation of the browsing data seems to be stuck
Attachments
Attachments
Attachments
Attachments
Attachments
Attachments
Attachments
Attachments
Attachments
Attachments
Attachments
Not everyone is tech savvy. That's why it's enabled by default because it can be very useful.The-10-Pen wrote: ↑07 May 2026, 11:09 whatever a "detectportal" is (something that to me should be OFF by **DEFAULT**)
Not everyone is tech savvy. That's why it's enabled by default because it can be very useful.The-10-Pen wrote: ↑07 May 2026, 11:09 whatever a "detectportal" is (something that to me should be OFF by **DEFAULT**)
Would you mind using a different file host? If I recall, 4Shared enforces logging in, which is counterproductive to the values of this message board.[/url], I reviewed the New Moon 28 PT-BR language pack (originally posted by developer JustOff) and can be accessed by clicking here: https://www.4shared.com/file/SjcESZ-qku/pt-BR_28100_RC7.html?.
Would you mind using a different file host? If I recall, 4Shared enforces logging in, which is counterproductive to the values of this message board.[/url], I reviewed the New Moon 28 PT-BR language pack (originally posted by developer JustOff) and can be accessed by clicking here: https://www.4shared.com/file/SjcESZ-qku/pt-BR_28100_RC7.html?.
Would you mind using a different file host? If I recall, 4Shared enforces logging in, which is counterproductive to the values of this message board.[/url], I reviewed the New Moon 28 PT-BR language pack (originally posted by developer JustOff) and can be accessed by clicking here: https://www.4shared.com/file/SjcESZ-qku/pt-BR_28100_RC7.html?.
Would you mind using a different file host? If I recall, 4Shared enforces logging in, which is counterproductive to the values of this message board.[/url], I reviewed the New Moon 28 PT-BR language pack (originally posted by developer JustOff) and can be accessed by clicking here: https://www.4shared.com/file/SjcESZ-qku/pt-BR_28100_RC7.html?.
In fact, in the case of Basilisk and Serpent 52, it is very similar to Firefox 52, just with removed features and some specific additions, such as exclusive features and tags, however it can still be difficult to translate directly from the Firefox language pack; then I recommend using what I did as a base, especially for Serpent 55, which is a mix of Firefox 52 / 55 with Pale Moon, which made it particularly challenging and required many hours of work, as I did a thorough analysis, file by file (which can be difficult, in addition to many tests and corrections until reaching the final version).Iffy-chan wrote: ↑14 Apr 2026, 07:00 Nice job creating a localisation! Out of curiosity, is the localisation system of the UXP-based browser engine at all similar to earlier versions of Firefox's (key versions to look at would be 24, 38 and 52 as PM team based their code on these versions at some point or another in time), or are there significant differences that would make it nontrivial to port the localisation of one to the other?
Would you mind using a different file host? If I recall, 4Shared enforces logging in, which is counterproductive to the values of this message board.[/url], I reviewed the New Moon 28 PT-BR language pack (originally posted by developer JustOff) and can be accessed by clicking here: https://www.4shared.com/file/SjcESZ-qku/pt-BR_28100_RC7.html?.
Also, don't be afraid to include a translation of your first post in Portuguese-BR - in this specific case, I'm fairly certain it should be okay to bypass the English-language rules of the forum. (It'll help local search engine results pick up this post/thread for what it's worth.)
There's a few small mistakes in your writing, but nothing that really stuck out to me as particularly annoying. I'd say you tend to overuse conjunctions where a full stop would probably be more appropriate, which makes some of it a bit difficult to follow at times.
In fact, in the case of Basilisk and Serpent 52, it is very similar to Firefox 52, just with removed features and some specific additions, such as exclusive features and tags, however it can still be difficult to translate directly from the Firefox language pack; then I recommend using what I did as a base, especially for Serpent 55, which is a mix of Firefox 52 / 55 with Pale Moon, which made it particularly challenging and required many hours of work, as I did a thorough analysis, file by file (which can be difficult, in addition to many tests and corrections until reaching the final version).Iffy-chan wrote: ↑14 Apr 2026, 07:00 Nice job creating a localisation! Out of curiosity, is the localisation system of the UXP-based browser engine at all similar to earlier versions of Firefox's (key versions to look at would be 24, 38 and 52 as PM team based their code on these versions at some point or another in time), or are there significant differences that would make it nontrivial to port the localisation of one to the other?
Would you mind using a different file host? If I recall, 4Shared enforces logging in, which is counterproductive to the values of this message board.[/url], I reviewed the New Moon 28 PT-BR language pack (originally posted by developer JustOff) and can be accessed by clicking here: https://www.4shared.com/file/SjcESZ-qku/pt-BR_28100_RC7.html?.
Also, don't be afraid to include a translation of your first post in Portuguese-BR - in this specific case, I'm fairly certain it should be okay to bypass the English-language rules of the forum. (It'll help local search engine results pick up this post/thread for what it's worth.)
There's a few small mistakes in your writing, but nothing that really stuck out to me as particularly annoying. I'd say you tend to overuse conjunctions where a full stop would probably be more appropriate, which makes some of it a bit difficult to follow at times.
Code: Select all
wsreset -i





]]>Code: Select all
wsreset -i





]]>Attachments
Attachments
I haven't allowed it internet access, but it looks like Edge is included and attempts to update at every boot.
I haven't allowed it internet access, but it looks like Edge is included and attempts to update at every boot.
I for one don't like the word "think", but I can look past that (for now).demaxxander04 wrote: ↑11 Apr 2026, 10:33 I don't think it will ever install or run Edge even if the update service still exists and I think that's normal, I used this script to remove it: https://gist.github.com/ave9858/c3451d9f452389ac7607c99d45edecc6
I used it for so long and still didn't got Edge!
I for one don't like the word "think", but I can look past that (for now).demaxxander04 wrote: ↑11 Apr 2026, 10:33 I don't think it will ever install or run Edge even if the update service still exists and I think that's normal, I used this script to remove it: https://gist.github.com/ave9858/c3451d9f452389ac7607c99d45edecc6
I used it for so long and still didn't got Edge!
I for one don't like the word "think", but I can look past that (for now).demaxxander04 wrote: ↑11 Apr 2026, 10:33 I don't think it will ever install or run Edge even if the update service still exists and I think that's normal, I used this script to remove it: https://gist.github.com/ave9858/c3451d9f452389ac7607c99d45edecc6
I used it for so long and still didn't got Edge!
I for one don't like the word "think", but I can look past that (for now).demaxxander04 wrote: ↑11 Apr 2026, 10:33 I don't think it will ever install or run Edge even if the update service still exists and I think that's normal, I used this script to remove it: https://gist.github.com/ave9858/c3451d9f452389ac7607c99d45edecc6
I used it for so long and still didn't got Edge!
Attachments
Attachments
Does ImgBB work in the UK (at least for now)?OwnedByWuigi wrote: ↑12 Apr 2026, 14:41 Also you're using Imgur to host your images, I can't see them unless I am using a VPN. Please fix if you can
Does ImgBB work in the UK (at least for now)?OwnedByWuigi wrote: ↑12 Apr 2026, 14:41 Also you're using Imgur to host your images, I can't see them unless I am using a VPN. Please fix if you can
Is Widevine L1 support possible?OwnedByWuigi wrote: ↑13 Apr 2026, 19:04 Aside from performance-wise issues (I will fix that in 13.2 trust), what else would you like to see in Dactyloidae 13.2?
Is Widevine L1 support possible?OwnedByWuigi wrote: ↑13 Apr 2026, 19:04 Aside from performance-wise issues (I will fix that in 13.2 trust), what else would you like to see in Dactyloidae 13.2?
Attachments
Attachments
Attachments
Attachments
LibreWolf?
LibreWolf?
Attachments
Attachments
Attachments
Attachments
Dact-ae is *VERY* tame considering THIS is what Official (I used PortableApps, the results are the same!) Firefox looks like on its VERY FIRST LAUNCH.
Attachments
Dact-ae is *VERY* tame considering THIS is what Official (I used PortableApps, the results are the same!) Firefox looks like on its VERY FIRST LAUNCH.
Attachments
That doesn't look correct.
That doesn't look correct.
Dact-ae is *VERY* tame considering THIS is what Official (I used PortableApps, the results are the same!) Firefox looks like on its VERY FIRST LAUNCH.
Attachments
Dact-ae is *VERY* tame considering THIS is what Official (I used PortableApps, the results are the same!) Firefox looks like on its VERY FIRST LAUNCH.
Attachments
Attachments
Attachments
Attachments
Attachments
I’m only using DuckDuckGo because it helps support the Pale Moon developers financially (their deal with DDG is their primary source of income).Iffy-chan wrote: ↑18 Apr 2026, 23:20 Also, consider making Mojeek the default search engine, if you read their blog you'll see what I mean. It's actually privacy-friendly, and uses its own crawler, unlike most other 'smaller' search engines. https://www.mojeek.com/
I’m only using DuckDuckGo because it helps support the Pale Moon developers financially (their deal with DDG is their primary source of income).Iffy-chan wrote: ↑18 Apr 2026, 23:20 Also, consider making Mojeek the default search engine, if you read their blog you'll see what I mean. It's actually privacy-friendly, and uses its own crawler, unlike most other 'smaller' search engines. https://www.mojeek.com/
Code: Select all
OwnedByWuigi/DactyloidaeCode: Select all
Eclipse Community/DactyloidaeCode: Select all
OwnedByWuigi/DactyloidaeCode: Select all
Eclipse Community/DactyloidaeAttachments
Attachments
Attachments
Attachments
Maybe the RSS feed can help you: https://board.eclipse.cx/app.php/smartfeed/ui]]>
Maybe the RSS feed can help you: https://board.eclipse.cx/app.php/smartfeed/ui]]>
Mike Anderson wrote:Not your brand of it, no.
André Linoge wrote:Perhaps you don't believe me.
Mike Anderson wrote:I believe you, but the thing of it is you see only the bad, none of the good.
André Linoge wrote:By and large Constable the good's an illusion. Little fables folks tell themselves so they can get through their days without screaming too much.
Mike Anderson wrote:I don't believe that.
]]>André Linoge wrote:I know. A good boy to the last. But I think you'll find yourself at the short end this time. Your town if full of adulterers, pedophiles, thieves, gluttons, murderers, bullies, scoundrels and covertous morons and I know every last one of them.
Born in lust, turn to dust. Born in sin, come on in.
Mike Anderson wrote:Not your brand of it, no.
André Linoge wrote:Perhaps you don't believe me.
Mike Anderson wrote:I believe you, but the thing of it is you see only the bad, none of the good.
André Linoge wrote:By and large Constable the good's an illusion. Little fables folks tell themselves so they can get through their days without screaming too much.
Mike Anderson wrote:I don't believe that.
]]>André Linoge wrote:I know. A good boy to the last. But I think you'll find yourself at the short end this time. Your town if full of adulterers, pedophiles, thieves, gluttons, murderers, bullies, scoundrels and covertous morons and I know every last one of them.
Born in lust, turn to dust. Born in sin, come on in.
Research it yourself.
Research it yourself.
That means you don't have any evidences.The-10-Pen wrote: ↑29 Apr 2026, 19:17Research it yourself.
I've told you before, I will not hold your hand, and I personally feel you won't believe it anyway unless it is the product of your own research.
That means you don't have any evidences.The-10-Pen wrote: ↑29 Apr 2026, 19:17Research it yourself.
I've told you before, I will not hold your hand, and I personally feel you won't believe it anyway unless it is the product of your own research.
That's stupid. If you were homeless and being given some money what would you do with it ? Begging for food on street corners ?]]>The-10-Pen wrote: ↑29 Apr 2026, 19:50 Hell, our city has PROVEN that "homeless people" were being PAID to stand on street corners and BEG FOR FOOD.
Being paid by CALIFORNIA "interests" and California is over TWO THOUSAND MILES AWAY.
That's stupid. If you were homeless and being given some money what would you do with it ? Begging for food on street corners ?]]>The-10-Pen wrote: ↑29 Apr 2026, 19:50 Hell, our city has PROVEN that "homeless people" were being PAID to stand on street corners and BEG FOR FOOD.
Being paid by CALIFORNIA "interests" and California is over TWO THOUSAND MILES AWAY.
substack.comThe-10-Pen wrote: ↑29 Apr 2026, 19:50 Here, this is a START, I *beg* of you to DO SOME RESEARCH !!!
https://legalexplained.substack.com/p/decoded-the-real-story-behind-no
That's stupid. If you were homeless and being given some money what would you do with it ? Begging for food on street corners ?The-10-Pen wrote: ↑29 Apr 2026, 19:50 Hell, our city has PROVEN that "homeless people" were being PAID to stand on street corners and BEG FOR FOOD.
Being paid by CALIFORNIA "interests" and California is over TWO THOUSAND MILES AWAY.
substack.comThe-10-Pen wrote: ↑29 Apr 2026, 19:50 Here, this is a START, I *beg* of you to DO SOME RESEARCH !!!
https://legalexplained.substack.com/p/decoded-the-real-story-behind-no
That's stupid. If you were homeless and being given some money what would you do with it ? Begging for food on street corners ?The-10-Pen wrote: ↑29 Apr 2026, 19:50 Hell, our city has PROVEN that "homeless people" were being PAID to stand on street corners and BEG FOR FOOD.
Being paid by CALIFORNIA "interests" and California is over TWO THOUSAND MILES AWAY.
xperceniol_sal has deleted several of his own posts for some reason.
xperceniol_sal has deleted several of his own posts for some reason.
I agree.
I agree.
And some Windows 8.1 and even Windows 10 users like you and me
And some Windows 8.1 and even Windows 10 users like you and me
And don't dare to point out how slow these browsers are.The-10-Pen wrote: ↑26 Apr 2026, 11:40 Agreed! It's personally quite SAD and ANNOYING and INFURIATING how it seems that there is NO SUCH THING as a "technical forum" these days that doesn't focus ENTIRELY, and I mean **ENTIRELY** on prolonging the life of outdated OS's *but* topics entailing how to get Win10 (which in itself is 'kind of' an OUTDATED OS) working BETTER than those POS OS's land flat on their F'in Face, zero interest, the ONLY interest that ever gains any shred of traction is SLOW-AS-SH#T web browsers that focus on XP or 7 !!! !!! !!!
"To each their own", I suppose.
Funny how repacks of this browser stopped appearing as soon as Chinese dropped XP.]]>The-10-Pen wrote: ↑26 Apr 2026, 11:48 And yeah, I too was an ENABLER of this "annoyance" by my tweaking/modding of 360Chrome for XP.
And don't dare to point out how slow these browsers are.The-10-Pen wrote: ↑26 Apr 2026, 11:40 Agreed! It's personally quite SAD and ANNOYING and INFURIATING how it seems that there is NO SUCH THING as a "technical forum" these days that doesn't focus ENTIRELY, and I mean **ENTIRELY** on prolonging the life of outdated OS's *but* topics entailing how to get Win10 (which in itself is 'kind of' an OUTDATED OS) working BETTER than those POS OS's land flat on their F'in Face, zero interest, the ONLY interest that ever gains any shred of traction is SLOW-AS-SH#T web browsers that focus on XP or 7 !!! !!! !!!
"To each their own", I suppose.
Funny how repacks of this browser stopped appearing as soon as Chinese dropped XP.]]>The-10-Pen wrote: ↑26 Apr 2026, 11:48 And yeah, I too was an ENABLER of this "annoyance" by my tweaking/modding of 360Chrome for XP.
Attachments
Attachments