Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/28/2024 in all areas

  1. New build of Serpent/UXP for XP! Test binary: Win32 https://o.rthost.win/basilisk/basilisk52-g4.8.win32-git-20241228-3219d2d-uxp-e5fa99d83c-xpmod.7z Win64 https://o.rthost.win/basilisk/basilisk52-g4.8.win64-git-20241228-3219d2d-uxp-e5fa99d83c-xpmod.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/custom IA32 Win32 https://o.rthost.win/basilisk/basilisk52-g4.8.win32-git-20241228-3219d2d-uxp-e5fa99d83c-xpmod-ia32.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/ia32 NM28XP build: Win32 https://o.rthost.win/palemoon/palemoon-28.10.7a1.win32-git-20241228-d849524bd-uxp-e5fa99d83c-xpmod.7z Win32 IA32 https://o.rthost.win/palemoon/palemoon-28.10.7a1.win32-git-20241228-d849524bd-uxp-e5fa99d83c-xpmod-ia32.7z Win32 SSE https://o.rthost.win/palemoon/palemoon-28.10.7a1.win32-git-20241228-d849524bd-uxp-e5fa99d83c-xpmod-sse.7z Win64 https://o.rthost.win/palemoon/palemoon-28.10.7a1.win64-git-20241228-d849524bd-uxp-e5fa99d83c-xpmod.7z Official UXP changes picked since my last build: - Issue #2672 - Part 1: Load nsCookieService OMT and use sync reads. (aec27853c6) - Issue #2672 - Part 2: Auto-close `syncConn` for edge cases. (fe53a0bb1c) - Issue #2672 - Part 3: Ensure thread lifetimes are in tandem. (032b0ae0d8) - Issue #2672 - Part 4: Prevent db access while rebuilding is underway. (d69e2a3779) - Issue #2672 - Follow-up: Remove unused telemetry variable. (d935c4f54c) - Issue #2670 - Compute baseDomain when cookies are read from the database (2e1c487563) No official Pale-Moon changes picked since my last build. No official Basilisk changes picked since my last build. Update Notice: - You may delete file named icudt*.dat inside program folder when updating from old releases. * Notice: From now on, UXP rev will point to `custom` branch of my UXP repo instead of MCP UXP repo, while "official UXP changes" shows only `tracking` branch changes.
    2 points
  2. There is a pretty good (i.e. up to date) mirror of UXP on GitHub at https://github.com/Basilisk-Development-Team/UXP-mirror if you are interested.
    2 points
  3. // ==UserScript== // @name Font Enhancer // @namespace https://github.com/UCyborg // @description Improves font contrast. Sourced from Chrome Font Super Enhancer. // @version 1.0 // @author UCyborg // @match *://*/* // @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(applyFilter, 100); } const callback = (mutationList, observer) => { // called every time BODY has changed for (const mutation of mutationList) { if (mutation.type === "childList") { waitAndApplyFilter(); } } }; applyFilter(); // 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(document.body, config);
    2 points
  4. https://driverscollection.com/ On that site, search has gone completely kaput, shows nothing, is it only me?
    2 points
  5. At the moment, there is only one mod for checking, uBlock Origin 1.16.4.31b2-1.54.0 from this post.. But another mod is coming very soon that is strictly orientated on version 1.16.4.31b2. It is my new release uBlock Origin 1.16.4.31.
    2 points
  6. I was blocked on the XDA-dev site in exactly the same way as it was on the How-To-Geek site. And the same trick via Block Element works there, too. Thus, both rules are identical: ! 2024-01-13 https://www.howtogeek.com www.howtogeek.com##.bOvWNQ ! 2024-01-13 https://www.xda-developers.com www.xda-developers.com##.bOvWNQ
    2 points
  7. It does run normally on capable CPUs natively. Intel SDE slows down even CPU-Z immensely. Not sure if there are any tricks to speed it up (not a developer with proper expertise to use the tool), but I can imagine the goal of making existing compiled Windows executable execute when it normally wouldn't being complicated.
    1 point
  8. New build of post-deprecated Serpent/moebius for XP! * Notice: This repo will not be built on regular schedule, and changes are experimental as usual. ** Current moebius patch level should be on par with 52.9, but some security patches can not be applied/ported due to source milestone differences between versions. Test binary: Win32 https://o.rthost.win/basilisk/basilisk55-win32-git-20241228-9c7eb2592-xpmod.7z Win64 https://o.rthost.win/basilisk/basilisk55-win64-git-20241228-9c7eb2592-xpmod.7z repo: https://github.com/roytam1/basilisk55 Repo changes: - ported from UXP: Issue #2672 - Part 1: Load nsCookieService OMT and use sync reads. (aec27853) (23befc27d) - ported from UXP: Issue #2672 - Part 2: Auto-close `syncConn` for edge cases. (fe53a0bb) (050894ea7) - import from UXP: Issue #2672 - Part 3: Ensure thread lifetimes are in tandem. (032b0ae0) (45659106a) - import from UXP: Issue #2672 - Part 4: Prevent db access while rebuilding is underway. (d69e2a37) (8af5b9262) - import from UXP: Issue #2672 - Follow-up: Remove unused telemetry variable. (d935c4f5) (90a1e3f57) - ported from UXP: Issue #2670 - Compute baseDomain when cookies are read from the database (2e1c4875) (9c7eb2592)
    1 point
  9. New build of BOC/UXP for XP! Test binary: MailNews Win32 https://o.rthost.win/boc-uxp/mailnews.win32-20241228-7bda12e7-uxp-e5fa99d83c-xpmod.7z BNavigator Win32 https://o.rthost.win/boc-uxp/bnavigator.win32-20241228-7bda12e7-uxp-e5fa99d83c-xpmod.7z source repo (excluding UXP): https://github.com/roytam1/boc-uxp/tree/custom * Notice: the profile prefix (i.e. parent folder names) are also changed since 2020-08-15 build, you may rename their names before using new binaries when updating from builds before 2020-08-15. -- New build of HBL-UXP for XP! Test binary: IceDove-UXP(mail) https://o.rthost.win/hbl-uxp/icedove.win32-20241228-id-656ea98-uxp-e5fa99d83c-xpmod.7z IceApe-UXP(suite) https://o.rthost.win/hbl-uxp/iceape.win32-20241228-id-656ea98-ia-93af9a0-uxp-e5fa99d83c-xpmod.7z source repo (excluding UXP): https://github.com/roytam1/icedove-uxp/tree/winbuild https://github.com/roytam1/iceape-uxp/tree/winbuild
    1 point
  10. ... FWIW, I can now access it here fine: In the PMForum link above, it was mentioned that: ... so, is your HK IP address blocked by Moonchild still? Do you have access to a VPN service with, e.g., European nodes?
    1 point
  11. Hello and welcome, Dylan Taylor, what a wonderful name! Are you a rock star?
    1 point
  12. Hi, how're doing? You caught me right in this topic. xD! Well, I'm guessing it's a Gigabyte model? They do tend to intentionally complicate thing so you would buy a new one. I've never seen the 32 bit version of the aforementioned driver.
    1 point
  13. Officially added to my arsenal. This route works hand-in-hand with my other "stuff". The as-an-extension route was not "playing well" with several userstyles where I intentionally use text shadows to hide input field "placeholders" (things like "Search" inside YouTube's search bar). Why hide "placeholders"? Because I employ a routine that automatically enters usernames/passwords but nobody looking over my shoulder (can't prevent at work) can actually "see" the entry.
    1 point
  14. Piece of cake! You don't need the extension. All it does is apply a .css text shadow to all text. You can do that in any style editor such as Stylus/Stylish/Stylem or even via Tampermonkey/Greasemonkey or even via Firefox's own userChrome.css. To me, the font enhancer extension is "redundant" if the browser profile is already utilizing something like Stylus/Tampermonkey/etc.
    1 point
  15. https://forum.palemoon.org/viewtopic.php?f=62&t=31930 Dark ages never ended in general IMO.
    1 point
  16. Is alive, for now. Salvation.
    1 point
  17. The new version not completed yet, to be during next month. @dapgo This addon has "incognito": "not_allowed", while Mypal not - thus fails. I removed that thing at all - addons enabled regardless private mode. However mypal has own multitabs
    1 point
  18. Thank you, very unfortunate, seems we're running low on drivers' sites, they're dropping like flies.
    1 point
  19. That's why you need to use OEM drivers. "Throttling on all drivers from nvidia site - laptop" https://www.nvidia.com/en-us/geforce/forums/game-ready-drivers/13/292634/throttling-on-all-drivers-from-site-nvidia-laptop-/ "That's your "punishment" for buying laptops for gaming. You're fully at the mercy of the manufacturer, and rely on their driver updates, instead of being able to just use Nvidia's generic drivers and constant improvements." "You'll have to get back to whatever driver is offered for your laptop on Acer's website." "This is because the OEM manufacturer is the manufacturer of the graphics device (card); not Nvidia, which only produces the physical "chip" to these manufacturers. Vram, PCB, VRM, trace, and cooling are all designed by the OEM manufacturer; thus is considered as "proprietary" hardware. In which; has it's own thermal and power limits that can be effected with use of 3rd party (vanilla) drivers and can damage or lower the performance of the hardware. (Not to mention interfere with the unit's Optimus switching ability). The laptop model# must also be added to the supported driver ID list by Nvidia prior to the unit being supported via 3rd party vanilla drivers."
    1 point
  20. Saved the post to the phone, then forgot. This one is wonderful. https://www.station-drivers.com/index.php/en/driverss/5/view,containers/sort_order,0/lang,en-gb/
    1 point
  21. Or this one, very good! https://www.touslesdrivers.com/
    1 point
  22. For those that seek laptop drivers, I can suggest this site. https://driverscollection.com/
    1 point
  23. Topic can be closed if the admins wish to do so.
    1 point
  24. Thanks for the idea, I'm not familiar with that man. Anyways, I already found everything on another site. Life goes on!
    1 point
  25. @VistaLover Do you think this filter list is worth to be added to the default lists of uBlock Origin? And are there others you would recommend to add to the default ones?
    1 point
  26. This is always to be expected with old, no longer really further developed extensions for UXP browsers & co. and is generally unavoidable. If it only affects a few pages, it's easy to get over. I will also test the two websites with my upcoming release uBlock Origin 1.16.4.31. @UCyborg First of all, the How-To-Geek website is a bit clumsy in New Moon 28 and leads to high processor utilisation on older, weak systems. For comparison purpose, I checked this site first in Mypal 68 with uBlock Origin 1.49.2 activated. Here is a screenshot with the filtering results: As you already stated, no problems there. The How-To-Geek website does not block uBlock Origin 1.49.2, and uBO does its job properly. Then, I checked this website in New Moon 28 with uBlock Origin 1.16.4.31 activated. Here is a screenshot with the filtering results: The How-To-Geek website recognises uBlock Origin 1.16.4.31 as an adblocker and prevents the loading of the actual content. That means uBlock Origin 1.16.4.31 works but it is simply blocked. Thus, one has to make some special settings in uBlock Origin 1.16.4.31 to get this website loading but without allowing all ads. Here are my settings I have made to block as many ads as possible: And that's something I can live with.
    1 point
  27. This is always to be expected with old, no longer really further developed extensions for UXP browsers & co. and is generally unavoidable. If it only affects a few pages, it's easy to get over. I will also test the two websites with my upcoming release uBlock Origin 1.16.4.31.
    1 point
  28. Yes, there is. Try HLS Stream Detector 0.4.3! You will find it in the Classic Add-ons Archive via this link: caa:addon/hls-stream-detector. I used it in the past, and it worked great. Whether this extension is still working in these days, you simply have to test it yourself after installation. Please report here!
    1 point
×
×
  • Create New...