Leaderboard
Popular Content
Showing content with the highest reputation on 12/20/2023 in all areas
-
2 points
-
Maybe, you try for example the extension KeePassXC-Browser in version 1.8.5.1 for Firefox 67 and up instead of the more recent ones for Firefox 96 and up. Reducing the minimum Firefox requirements inside webextensions rarely works.2 points
-
This is a unique UA. For quite some time, Chrome defaults to a WIn10 UA only.2 points
-
i recently try make "generic" usb a/v driver, using wdmex and sys files from XP ... i test videocapture with cheap chinese endoscope (de-facto usb cam). its work with Amcap test app. i test sound playing and recording with cheap chinese usb soundcard. its work even in web browser Mypal. anyone want test? password 1 (protection from stupid antiviruses). USBAV9X.7Z1 point
-
Thank you for the confirmation, Jody, very much appreciated.1 point
-
It's actually gone. His XP based page for downloads is still there. But he shut down his forum nearly a year ago.1 point
-
1 point
-
I just created an account over there too. Well, at least we're not stranded without RyanVM's forum.1 point
-
You're very welcome and the only other place I saw status update is https://board.eclipse.cx/viewtopic.php?t=554&sid=b765a2d99c75aae621d1bd3e3e058ff4 But I'm unable to log in over there (I tried several time)1 point
-
HI Jody, how are you managing during this holiday season, I hope well. I was posting over at: https://www.xpforums.com/ https://www.xpforums.com/threads/arcticfoxie-notheretoplaygames-360chrome-v13-5.934711/page-6 I hope that answered your question. Have a merry Christmas and happy new year if we don't hear from you sooner. Sal1 point
-
TBH, I personally am completely satisfied with Kee. And KeePass also works well without Kee if you only retrieve previously saved login data. I never tried the combination of KeePassXC-Browser and KeePassNatMsg. But thanks for the insights when trying to fix the code! BTW, I avoid all webextensions which need an additional exe file in Windows due to their restrictions in Chrome/Firefox/Mypal 68. I don't like that at all.1 point
-
Of course, I have been using KeePass for many years and still do so in these days. In Mypal 68, I use the extension Kee (formerly KeeFox). It does its job as advertised. Here is a link: https://addons.mozilla.org/en-US/firefox/addon/keefox/1 point
-
I also don't use "Real Time" AV (I don't even use DEP on my machines) and I test with Malwarebytes and Rogue Killer, but rarely do I bother much anymore either as I don't do anything sensitive on my age old machines. BTW @dmiranda do you mind if I react and quote your postings here anymore? I appreciated that you were one of a few to welcome me back here. I just want to make sure I'm in intruding or making anyone uncomfortable but my presence here. Have a good one.1 point
-
Yes, its a great suggestion @mina7601 has given us but given my low hardware capabilities I'd likely struggle to run these up to date browsers anyway (but I'll still test them and try), so, I also plan to continue to use ArcticFoxie/NotHereToPlayGames -- 360Chrome v13.5.1030 Redux and Mypal 68 until they really stop working on the many sites I also use.1 point
-
The current selection of standard search engines can only have been made by the developer of Mypal 68 who is of course @feodor2. Compared to his previous versions of Mypal 68, the available search engines have changed from time to time which was also discussed in the issues of Mypal 68. However, the process of restoring these available, default search engines is of course an original Firefox feature.1 point
-
The default search engines are inside the second omni.ja file in the subfolder browser. The exact location in this special archive file is chrome/browser/search-extensions. From there, Mypal 68 can restore its default search engines if necessary.1 point
-
1 point
-
I read your statement again. Now, I think I have understood what you have done. You deleted one or more of the four search engines Brave, Qwant, DuckDuckGo and Mojeek in the file search.json.mozlz4, with which Mypal 68.13.7b is now delivered by @feodor2 as default, by using the extension mozlz4-edit. That doesn't work, of course. The easiest way to get rid of them is removing them in the Options dialogue of Mypal 68. If you do so, they will remain hidden until you restore the default settings one day.1 point
-
Hello everyone! I want to create a community for the development of software and drivers for Windows 2000. Please join us if you're interested! Server link : https://discord.gg/EFGR9BKm3U1 point
-
I can't confirm any crashes or problems after editing the file search.json.mozlz4 using the extension mozlz4-edit. What I have edited remains the same no matter how often I restart Mypal 68. Actually, there is no need to add anything to the profile when launching. If so, your installation or your profile is presumably faulty. But keeping backups is always a good idea.1 point
-
Overall, I agree with you, still with an SSD XP will be even more responsive, if properly configured. Win7 does way too many reads-writes, especially at startup, also agree.1 point
-
Thanks for testing and reporting! Unfortunately, you tested it under Windows Vista. However, this thread is targeting Windows XP exclusively. Under Windows XP, Wise Anti Malware does not work anymore and must be considered abandoned. Although off-topic, I would be interested to know when the last virus definitions were that you loaded under Windows Vista. This cannot be determined from your pictures.1 point
-
1 point
-
@dmiranda The solution to let the custom button aboutbutton recognise by the CSS stylesheet buttons_on_navbar_button_roundness.css is a bit more complicated than I thought. You have indeed to change the code of the script aboutbutton.uc.js. It seems to be a class issue. This is the first part of the original script code from line 1 to 26: (function() { if (location != 'chrome://browser/content/browser.xul') return; try { CustomizableUI.createWidget({ id: 'about-toolbarbutton', type: 'custom', defaultArea: CustomizableUI.AREA_NAVBAR, onBuild: function(aDocument) { var toolbaritem = aDocument.createElementNS('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul', 'toolbarbutton'); var attrs = { id: 'about-toolbarbutton', class: 'chromeclass-toolbar-additional', type: 'menu', removable: true, label: 'about Seiten öffnen', tooltiptext: 'about Seiten öffnen' }; for (var a in attrs) toolbaritem.setAttribute(a, attrs[a]); return toolbaritem; } }); } catch(e) { }; I changed the class of this button in line 15 from 'chromeclass-toolbar-additional' to 'toolbarbutton-1 chromeclass-toolbar-additional': (function() { if (location != 'chrome://browser/content/browser.xul') return; try { CustomizableUI.createWidget({ id: 'about-toolbarbutton', type: 'custom', defaultArea: CustomizableUI.AREA_NAVBAR, onBuild: function(aDocument) { var toolbaritem = aDocument.createElementNS('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul', 'toolbarbutton'); var attrs = { id: 'about-toolbarbutton', class: 'toolbarbutton-1 chromeclass-toolbar-additional', type: 'menu', removable: true, label: 'about Seiten öffnen', tooltiptext: 'about Seiten öffnen' }; for (var a in attrs) toolbaritem.setAttribute(a, attrs[a]); return toolbaritem; } }); } catch(e) { }; This change seems to be enough to let the CSS stylesheet buttons_on_navbar_button_roundness.css recognise the custom button aboutbuttuon as a standard toolbar button. Thus, the button can be rounded by this CSS stylesheet. Here is a screenshot to show the result of my change (I added borders around the buttons via CSS code for better visibility ): The positive side effect of this modification is that the custom button aboutbuttuon behaves as a normal toolbar button from now on, even if it is not rounded off by such a CSS stylesheet. Cheers, AstroSkipper1 point
-
I own GTX 780 Ti, more than enough for me, but 3GB of memory seems on the low end, so better go with at least Titan 6GB.1 point
-
"Looking ahead: Manifest v3" "In 2019 we will introduce the next extensions manifest version. Manifest v3 will entail additional platform changes..." https://blog.chromium.org/2018/10/trustworthy-chrome-extensions-by-default.html1 point
-
I'm 100% certain, 1030 did update my uBlock 1.36 to 1.43 or 1.42 (quite some time ago). I can't say anything about 2044, sorry.1 point
-
Simply add this command line flag. --enable-features=ExtensionManifestV2Availability It will work for now, when they remove it, no one knows.1 point
-
Thank you all, the issue is no more, thanks to @Dixel and his driver 348.12! NVIDIA System Information report created on: 11/16/2023 11:13:14 System name: KARLA-PC [Display] Operating System: Windows Vista (TM) Business, 64-bit (Service Pack 2) DirectX version: 11.0 GPU processor: GeForce GTX 780 Ti Driver version: 348.12 Direct3D API version: 11 Direct3D feature level: 11_0 CUDA Cores: 2880 Core clock: 875 MHz Memory data rate: 7000 MHz Memory interface: 384-bit Memory bandwidth: 336.00 GB/s Total available graphics memory: 6968 MB Dedicated video memory: 3072 MB GDDR5 System video memory: 0 MB Shared system memory: 7695 MB Video BIOS version: 80.80.34.00.2A IRQ: Not Used Bus: PCI Express x16 Gen3 Device ID: 10DE 100A 19DA 1314 Part Number: 2083 0030 [Components] nvui.dll 8.17.13.4812 NVIDIA User Experience Driver Component nvxdsync.exe 8.17.13.4812 NVIDIA User Experience Driver Component nvxdplcy.dll 8.17.13.4812 NVIDIA User Experience Driver Component nvxdbat.dll 8.17.13.4812 NVIDIA User Experience Driver Component nvxdapix.dll 8.17.13.4812 NVIDIA User Experience Driver Component NVCPL.DLL 8.17.13.4812 NVIDIA User Experience Driver Component nvCplUIR.dll 8.1.820.0 NVIDIA Control Panel nvCplUI.exe 8.1.820.0 NVIDIA Control Panel nvViTvSR.dll 6.14.13.4812 NVIDIA Video Server nvViTvS.dll 6.14.13.4812 NVIDIA Video Server nvDispSR.dll 6.14.13.4812 NVIDIA Display Server NVMCTRAY.DLL 8.17.13.4812 NVIDIA Media Center Library nvDispS.dll 6.14.13.4812 NVIDIA Display Server PhysX 09.15.0428 NVIDIA PhysX NVCUDA.DLL 8.17.13.4812 NVIDIA CUDA 7.0.41 driver nvGameSR.dll 6.14.13.4812 NVIDIA 3D Settings Server nvGameS.dll 6.14.13.4812 NVIDIA 3D Settings Server1 point
-
Thank you! The colours look like they simply don't have enough shades, whereas my old cars has rich colours, for example: blue is a simple plain blue. I'd make a screenshot, but all those screen capturing programmes won't show much difference. I'm fond of cosmetics and it's very important for me to see the lipstick shades. I put the old card back, all is fine again. No gradients at all, with the both cards.1 point
-
Congrats and wishes to stay even longer! It's very hard for me to even imagine such a long period of time (((due to my own age))).1 point
-
Thank you very much, but I wouldn't know what to do with it). Maybe some third party entities make builds based on Brave?1 point
-
1 point
-
I found the problematic script which causes this, tagging @win32, since he also might be interested! It's just yet another bug in Chromium 111. "Can confirm the crash at settings." https://github.com/ungoogled-software/ungoogled-chromium/pull/22621 point
-
Yes they did, I predicted about Win 7 (which is the topic here!) and 8, 8.1 (which is the topic's subject in the thread I made my predictions).1 point
-
jaclaz, I'm afraid I have to disagree about the term "generic", some time ago I was asked a specific question, I clearly predicted it about the memory function. Not just , "hey, guys, I know Chrome will soon not work". I think you're confusing me with someone else. Regards, Dixel.1 point
-
They suggest to run chrome exe in Vista compatibility, tick the checkbox for Run this program in compatibility mode for, select Windows Vista from the drop-down menu, and then click OK https://windowsreport.com/chrome-white-screen/1 point
-
@win32, as I don't have a github acc., answering the question "Why does Geforce Now claim this Browser is unsupported?" here. Try to completely disable ClientHints, not to spoof them, as I was able to use Geforce Now on an old Chrome 106, spoofed as 111 via my app. I got no unsupported warnings.1 point
-
115.0.5760.0 R2 Feedback : All of the issues with dark theme - fixed ! Millions of Crashpads in the Crashpad are no more (only one small, like it supposed to be). Sandbox - fixed. The browser is flawless. Though, I'll still be dreaming of the undoodled port. Even though it is a bit older (always).1 point
-
I just tried and it works - only if I use the extended list of my flags + the famous NO sanbox. But works very good, I mean, it starts faster than its counterparts. Other than that, I had no time to fully test. EDIT: But I'm sure it's good because it was made by win32 (c).1 point
-
New build of Serpent/UXP for XP! Test binary: Win32 https://o.rths.ml/basilisk/basilisk52-g4.6.win32-git-20201010-a61cc61-uxp-bda6f1a93-xpmod.7z Win64 https://o.rths.ml/basilisk/basilisk52-g4.6.win64-git-20201010-a61cc61-uxp-bda6f1a93-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.rths.ml/basilisk/basilisk52-g4.6.win32-git-20201010-a61cc61-uxp-bda6f1a93-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.rths.ml/palemoon/palemoon-28.10.2a1.win32-git-20201010-aa3ff776a-uxp-bda6f1a93-xpmod.7z Win64 https://o.rths.ml/palemoon/palemoon-28.10.2a1.win64-git-20201010-aa3ff776a-uxp-bda6f1a93-xpmod.7z Official UXP changes since my last build: - Issue #1665 - Take overflow-wrap into account when calculating min-content intrinsic size. (8e18743ab) - Issue #1666 - Implement overflow-wrap: anywhere (dadef50bd) - [devtools] Teach devtools about overflow-wrap: anywhere (521f2b476) - Issue #1606 - Add support for multi-monitor DPI awareness v2 (W10 1706+) (bda6f1a93) Official Basilisk changes since my last build: - Update back-end branch pointer. (0839087) - Issue #23 - Enable per-monitor DPI v2 in Basilisk (a61cc61) Official Pale-Moon changes since my last build: - Back-end branch pointer update (Unstable 2020-10-04) (f6ae5e03d) - [app update] Move update cert entries to branding (b48aee553) - Issue #1812 - Enable per-monitor DPI v2 in Pale Moon (762408f9b) - [SSUAO] Update Yahoo override, since they now throw a fit when seeing anything "Pale Moon" in the UA. (aa3ff776a) My changes since last build: - partly import changes from tenfourfox: - #627: M1631583 M1631597 M1636771 M1637222 M1649316 M1651520 (2373458b5) - #627: M1631573 (0abd0fc5d) (75e16e512) - import tzdata and DNS from tenfourfox (as of rev 16c85bb3) (c0eddaf73)1 point
-
New regular/weekly KM-Goanna release: https://o.rths.ml/kmeleon/KM76.3.1-Goanna-20201003.7z Changelog: Out-of-tree changes: * update Goanna3 to git a291744c7..e1c4d9e76: - import changes from `dev' branch of rmottola/Arctic-Fox: - Bug 1077318 - call out to C++ for ARMv6 sub-word atomics. r=luke (2810c3f93) - Bug 1142593 - factor atomics into the platform layer. r=waldo (f5088b2af) - Bug 1173642 - Import unimplemented ARM64 Ion components. r=efaust (2567975a1) - Bug 1170107 part 1 - Call GetProperty/CallProperty from the interpreter and Baseline. r=bhackett (fe45a446a) - Bug 1170107 part 2 - Don't allocate a wrapper object for (pure) primitive.foo operations. r=bhackett (8793d7d2d) - Bug 1152079 - Remove Purify support files. r=froydnj (69836c373) - Bug 1152079 - Remove references to deleted Purify files from moz.build. r=bustage (ebd68a5fa) - Bug 1126089 - Assert we don't Destroy nsFrameLoader in destructor (r=smaug) (c0894ed2b) - Bug 1250871 - only send messages to child scripts when the docShell is still around. r=smaug (ac2562f55) - Bug 1168750 - SharedStubs: (part3) Make split between baseline only and shared stubs, r=jandem (21c89cffe) - Bug 1168750 - SharedStubs: (part4) Track for which engine a stub needs to get compiled, r=jandem (a36eb943b) - Bug 1168753 - SharedStubs: Simplification to push BaselineFrame* in stubs, r=jandem (4a26b318d) - pointer style (e20a50c7e) - Bug 1169391 - Use a ReservedRooted class for optimized Rooted use in vm/Interpreter.cpp, r=terrence (1b80a857d) - Bug 1182865 - Relax assertion on the allowed class for home objects, r=efaust (33009a9fe) - Bug 1154391 - Update import declarations to current ES6 spec r=shu (ad7042d54) - Bug 1154391 - Update parsing of export declarations to match current ES6 spec r=shu (4b509d9ec) - Bug 1169171 - Split PNK_DELETE into several different kinds for each of the syntactically distinct modes of |delete| operation, depending upon the syntax of the operand. r=efaust (5667265fc) - Bug 1169511 - Split PNK_TYPEOF into one kind for application to names one kind for application to other expressions. r=efaust (91a1086d8) - pointer style (0546201d8) - Bug 1163851 - Remove the remaining two tests of |pc->parsingForInit|, replacing them with yet another argument provided by the caller. r=efaust (919903e1e) - Bug 1163851 - |pc->parsingForInit| is dead. Long live |InHandling|! r=efaust (bf35fb405) - Bug 1167030 - Suppress MSVC warning C4661 in js/src. r=luke (1d28ed1d2) - Bug 1167845 - Rejigger {in,de}crement/assignment parsing to vet targets primarily through a single Parser::isValidSimpleAssignmentTarget method, so that this method can also be called outside the parser. r=efaust (87484d3fc) - Bug 1166950 - Introduce a new FunctionKind for class-constructors. r=efaust (e9dd197e1) - Bug 1166950 - Make generator methods constructors. r=efaust (e076cacd6) - Bug 1167845 - Rename ParseHandler::isName to ParseHandler::maybeName. r=efaust (1e090741b) - Bug 1141865 - Part 3: Parse new.target, add Reflect support, and tests. (r=jorendorff, r=shu) (9e0282870) - Bug 1139759 - Self-host %TypedArray%.prototype.copyWithin. r=till (8beea5f7c) - pointer style (0da72f30a) - Bug 1139769 - Add TypedArrayBuffer, TypedArrayByteOffset, and TypedArrayElementShift intrinsics to safely get the relevant information for a typed array. r=till (b5847a441) - pointer style (5486dd33d) - Bug 1139769 - Self-host %TypedArray%.prototype.subarray. r=t (b10c55e93) - pointer style (335ab6c87) - Bug 1140752 - Land code to self-host %TypedArray%.prototype.set, but don't enable it yet, pending perf-testing. This shouldn't make any changes to the build, except in terms of adding more code to it and affecting binary layout. r=jandem, also much feedback from till that effectively amounts to a review as well (98050308d) - Bug 1144692: Fix --disable-ion builds; r=h4writer (3be32046c) - Bug 1148970 - Check for possibly incomplete type sets when double checking the correctness of argument type set information, r=jandem. (934130c2e) - bug 1171125 - Fix nsStackWalk to build for iOS. r=froydnj (c076c4d22) - Bug 1119980 - Use 'snprintf' instead of 'sprintf' to avoid a warning on Lollipop-based builds. r=froydnj (a000af66c) - Bug 1146597 - Avoid unnecessary calls to maybeSweep under hasUnanalyzedPreliminaryObjects, r=jandem. (335ba3fc3) - Bug 1162134 - IonMonkey MIPS: Fix build failure on MIPS (js/src/jit/CodeGenerator.cpp:6740:28: error: `obj' was not declared in this scope). r=bhackett (56824379b) - Bug 1160884 followup - Add testcase. r=me (5495ad016) - Bug 1141865 - Part 4: Remove LCallDirectEvalV in anticipation of register pressure with new.target in eval frames. (r=jandem) (cbb706356) - Bug 1162242 - Part 1: Remove instances of #ifdef PR_LOGGING. r=froydnj PR_LOGGING is now always defined, we can remove #ifdefs checking for it. (878131a4a) - revert pointer style for patch (a263375f1) - Bug 1144097. Fix yet another is<ScopeObject>() assert. r=shu (96d516117) - Bug 1145282. Reverse the sense of IsValidTerminatingScope and rename it to IsSyntacticScope. r=luke (3681fc831) - Bug 1149897 - PerformanceStatsService data is not monotonic. r=jandem (927639ac6) - Bug 1142457 - Compute stopwatch durations per thread on MacOS X. r=jandem, r=areinald (a52c388be) (e1c4d9e76) * Notice: the changelog above may not always applicable to XULRunner code which K-Meleon uses. A goanna3 source tree that has kmeleon adaption patch applied is available here: https://github.com/roytam1/palemoon27/tree/kmeleon761 point
-
New build of BOC/UXP for XP! Test binary: MailNews Win32 https://o.rths.ml/boc-uxp/mailnews.win32-20201003-355db4de-uxp-15acac52b-xpmod.7z BNavigator Win32 https://o.rths.ml/boc-uxp/bnavigator.win32-20201003-355db4de-uxp-15acac52b-xpmod.7z source repo (excluding UXP): https://github.com/roytam1/boc-uxp/tree/custom-older * 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.rths.ml/hbl-uxp/icedove.win32-20201003-id-eed0566-uxp-15acac52b-xpmod.7z IceApe-UXP(suite) https://o.rths.ml/hbl-uxp/iceape.win32-20201003-id-eed0566-ia-41157bf-uxp-15acac52b-xpmod.7z source repo (excluding UXP): https://github.com/roytam1/icedove-uxp/tree/winbuild https://github.com/roytam1/iceape-uxp/tree/winbuild for UXP changes please see above.1 point
-
New build of Serpent/UXP for XP! Test binary: Win32 https://o.rths.ml/basilisk/basilisk52-g4.6.win32-git-20201003-ef27fbe-uxp-15acac52b-xpmod.7z Win64 https://o.rths.ml/basilisk/basilisk52-g4.6.win64-git-20201003-ef27fbe-uxp-15acac52b-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.rths.ml/basilisk/basilisk52-g4.6.win32-git-20201003-ef27fbe-uxp-15acac52b-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.rths.ml/palemoon/palemoon-28.10.2a1.win32-git-20201003-8afdaa8c9-uxp-15acac52b-xpmod.7z Win64 https://o.rths.ml/palemoon/palemoon-28.10.2a1.win64-git-20201003-8afdaa8c9-uxp-15acac52b-xpmod.7z Official UXP changes since my last build: - Issue #1656 - Fix broken comment from Part 1 (a2ed139a4) - Merge pull request #1660 from g4jc/1656 (4e72f8ed0) - Issue #1643 - Follow up: Add a null check for mOwner in ResizeObserverNotificationHelper::Unregister (fb086631d) - Issue #1643 - Follow-up: Make sure things aren't changed while iterating. (bc531bfbb) - Issue #1647 - Followup: Remove excessive VARIANT_OPACITY statements. (b8c604196) - Merge pull request #1663 from athenian200/opacity_followup (96736fce7) - Update CONTRIBUTING.md (15acac52b) No official Basilisk changes since my last build. Official Pale-Moon changes since my last build: - [downloads] Correct and simplify host handling. (fd30b23a0) - Issue #1842 - Part 1: Establish Beta Branding for Windows and Linux (48188d196) - Issue #1842 - Part 2: Add Mac icons for beta branding & fix unstable (810ccfe4c) - Issue #1842 - Part 3: Add beta channel to ACCEPTED_MAR_CHANNEL_IDS in confvars.sh (207535416) - Back-end branch pointer update (Unstable 2020-10-01) (8afdaa8c9) My changes since last build: - skipped Issue #1842 related commits1 point
-
New build of BOC/UXP for XP! Test binary: MailNews Win32 https://o.rths.ml/boc-uxp/mailnews.win32-20200926-355db4de-uxp-e0bda2246-xpmod.7z BNavigator Win32 https://o.rths.ml/boc-uxp/bnavigator.win32-20200926-355db4de-uxp-e0bda2246-xpmod.7z source repo (excluding UXP): https://github.com/roytam1/boc-uxp/tree/custom-older * 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.rths.ml/hbl-uxp/icedove.win32-20200926-id-eed0566-uxp-e0bda2246-xpmod.7z IceApe-UXP(suite) https://o.rths.ml/hbl-uxp/iceape.win32-20200926-id-eed0566-ia-41157bf-uxp-e0bda2246-xpmod.7z source repo (excluding UXP): https://github.com/roytam1/icedove-uxp/tree/winbuild https://github.com/roytam1/iceape-uxp/tree/winbuild for UXP changes please see above.1 point
-
New build of Serpent/UXP for XP! Test binary: Win32 https://o.rths.ml/basilisk/basilisk52-g4.6.win32-git-20200926-ef27fbe-uxp-e0bda2246-xpmod.7z Win64 https://o.rths.ml/basilisk/basilisk52-g4.6.win64-git-20200926-ef27fbe-uxp-e0bda2246-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.rths.ml/basilisk/basilisk52-g4.6.win32-git-20200926-ef27fbe-uxp-e0bda2246-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.rths.ml/palemoon/palemoon-28.10.2a1.win32-git-20200926-9f56811e0-uxp-e0bda2246-xpmod.7z Win64 https://o.rths.ml/palemoon/palemoon-28.10.2a1.win64-git-20200926-9f56811e0-uxp-e0bda2246-xpmod.7z Official UXP changes since my last build: - Isse #1224 - revert change to unbust debug builds. (5ad0a15f6) - [no issue] Fix whitespace (no code change) (04ccc4b12) - [SVG] Only fire the SVG onload when scripting is enabled and allowed (4d999e03a) - [dom/media] Use an atomic for mInputDeviceID to avoid potential race (aecdb2830) - [webaudio] Keep track of whether the HRTF database has already been loaded. (f5e5b5c32) - Issue #1655: Update MediaQueryList to the current draft spec. (388b9c802) - Output webidl filenames as they are processed, for real this time. (c14e7d70f) - Issue #1656 - Part 1: Nuke most vim config lines in the tree. (a680bdc63) - Issue #1656 - Part 2: Unmangle some unfortunate UTF-8 victims. (7572f3718) - Issue #1656 - Part 2b: Unmangle one more lost little UTF-8 victim. (5d97621bb) - Issue #1656 - Part 3: Nuke more vim config lines in the tree. (528b88d70) - Issue #1656 - Part 4: Tackle *.idl, *.css, *.ipdlh, *.webidl, *.cc (18ea98f7a) - Issue #1656 - Part 4: Manual cleanup (7523b9ea0) - Issue #1656 - Part 6: Clean up the build files (d5a2c45aa) - Issue #1656 - Part 7: Nuke vim config lines in JS (0c3bd2b10) - Issue #1656 - Part 8: Devtools and misc. (4a42352e6) - Issue #1656 - Part 9: Single-line-comment style. (6b9f2095a) - Issue #1656 - Part 10: Manual cleanup. (e0bda2246) Official Basilisk changes since my last build: - [downloads] Stop using referrers as sources (ef27fbe) Official Pale-Moon changes since my last build: - Back-end branch pointer update (unstable 2020-09-18) (b4943fc3c) - Issue #1744 - Add pref to ask for master password on application start. (04cd94da7) - [no issue] Whitespace fixes. No code change. (19f9cd83c) - [downloads] Stop using referrers as sources. (9f56811e0)1 point
-
New build of Firefox 45ESR: Test binary: SSE https://o.rths.ml/gpc/files1.rt/firefox-45.9.28-20200919-b23ecef1d-win32-sse.7z IA32 https://o.rths.ml/gpc/files1.rt/firefox-45.9.28-20200919-b23ecef1d-win32-ia32.7z repo: https://github.com/roytam1/mozilla45esr Changes since my last build: - update NSS as-of pm27 rev 7606140ee (cc6d80fa1) - bump version to 45.9.28 (b85a291f0) - import change from tenfourfox: - #618: EV now from ESR78, update TLDs, pins, HSTS (cb0f39c2f) (cc99d9023) - import change from tenfourfox: - fix overzealous assertion (M1531906) (af9a8236e) (cb67f8ea7) - import changes from tenfourfox: - #620: initial support for sticky reader (bf39401a5) - #620: add reader mode to context menu (cceb528dd) (4855b847d) - import changes from tenfourfox: - #619: M1258041 M1285428 M1274685 (thanks @OlgaTPark) (c2d494215) - #621: wallpaper and speculative fix (didn't work, but good to have) (cbcbd24be) - #622: M1660537 M1641487(modified) M1645492 (291688840) (82a4aaf95) - import changes from tenfourfox: - #622: update brotli to 1.0.9, woff2 to tip (7c24b77e7) - #622: actually add new brotli files (fc50954e6) (b24bcf45c) - import certdata changes from NSS upstream: - Bug 1651211 - Remove EE Certification Centre Root CA root cert. r=KathleenWilson,jcj - Bug 1653092 - Disable server trust bit for OISTE WISeKey Global Root GA CA root cert. r=KathleenWilson,jcj - Bug 1656077 - Remove Taiwan Government Root Certification Authority root cert. r=KathleenWilson,jcj - Bug 1663049 - Add SecureTrust's Trustwave Global root certificates to NSS. r=KathleenWilson,jcj - Bug 1663049 - September 2020 batch of root changes, NSS_BUILTINS_LIBRARY_VERSION 2.44. r=jcj (b23ecef1d)1 point
-
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 http://o.rthost.win/basilisk/basilisk55-win32-git-20200919-a4291d5cc-xpmod.7z Win64 http://o.rthost.win/basilisk/basilisk55-win64-git-20200919-a4291d5cc-xpmod.7z repo: https://github.com/roytam1/basilisk55 Repo changes: - update NSS as-of pm27 rev 7606140ee (a50340ee1) - import changes from tenfourfox: - #622: update brotli to 1.0.9, woff2 to tip (7c24b77e7) - #622: actually add new brotli files (fc50954e6) (ede090c8c) - partly import changes from tenfourfox: - #622: M1660537 M1641487(modified) M1645492 (291688840) (2e4a9a0ee) - import certdata changes from NSS upstream: - Bug 1651211 - Remove EE Certification Centre Root CA root cert. r=KathleenWilson,jcj - Bug 1653092 - Disable server trust bit for OISTE WISeKey Global Root GA CA root cert. r=KathleenWilson,jcj - Bug 1656077 - Remove Taiwan Government Root Certification Authority root cert. r=KathleenWilson,jcj - Bug 1663049 - Add SecureTrust's Trustwave Global root certificates to NSS. r=KathleenWilson,jcj - Bug 1663049 - September 2020 batch of root changes, NSS_BUILTINS_LIBRARY_VERSION 2.44. r=jcj (9db1f081c) - import change from tenfourfox: - fix overzealous assertion (M1531906) (af9a8236e) (093f38513) - partly import change from tenfourfox: - #618: EV now from ESR78, update TLDs, pins, HSTS (cb0f39c2f) (a4291d5cc)1 point
-
This maybe: It's nice, it gives you Hardware IDs and also lets you uninstall old devices without needing to go in safe mode. It was bundled with some HP printer drivers. You can get it here for example. Other than that and what's in the other thread I also know these: They are both from Microsoft and I don't quite remember where I found them, some free to download hardware development packages from MS for sure but that's all I know. Not sure if it's appropriate uploading them1 point