Leaderboard
Popular Content
Showing content with the highest reputation on 02/13/2024 in Posts
-
Thanks for pointing to the last XP-compatible version 7.52.2806! Unfortunately, Windows XP support has been dropped in version 7.54.2808. Here is a quotation from its changelog on Softpedia:4 points
-
Interesting, never heard of such browser before, but it doesn't work with XP, does it? Also, it doesn't allow to install extensions from other than Indian sources. In the name of "security".4 points
-
117 in the lead, sad it doesn't work with XP, I agree with @NotHereToPlayGames, earlier versions needed to be polished first.4 points
-
... Not being a JS coder and not involved at all in IT during the time of the "big browser wars", I was unaware of such coding subtleties - was it Microsoft (and their IE) then the "true first" ? FWIW, I tried the sample download page in my IE9 copy and it didn't work there ; nor did it work in FxESR 52 (which is understandable now, given the linked "Browser compatibility" table above) ... As for UXP, MC first declared an interest in implementing this feature in Pale Moon some 5 1/2 years ago, but good ol' M.A.T. was adamant against it ; with the latter "out of the picture", it was not until April of last year that it finally got implemented but, due to MC "being on the fence about it", only behind a disabled about:config pref ; it's all inside: https://repo.palemoon.org/MoonchildProductions/UXP/issues/5953 points
-
Toggling the pref "dom.window.event.enabled" from false to true did the trick. Thanks for the tip! So this pref enables the Event interface representing an event which takes place in the DOM. I had a look at Mozilla. This pref unfortunately seems to be deprecated. Here is a link: https://developer.mozilla.org/en-US/docs/Web/API/Window/event?3 points
-
I had a deeper look inside the JavaScript file download.js. Here is the code of the performDownload function: (function(){function performDownload(num){event.preventDefault();var xmlHttp=new XMLHttpRequest();xmlHttp.onreadystatechange=function(){if(xmlHttp.readyState==4&&xmlHttp.status==200){var response_text=xmlHttp.responseText;if(response_text.includes("sooftware.com/apps/")) location.assign(response_text);else window.open(response_text,'_blank');}} xmlHttp.open("post",tmp_folder+"performDownload.php?softId="+download_files_hash+"&linkNumber="+num);xmlHttp.send();return false} The window property event is not defined (download.js:1:43). I think the variable num should actually have been there instead of event to get the preventDefault function working. In New Moon 28, the script therefore doesn't seem to be executed in contrast to Mypal 68. IMHO, event is obviously not defined in the download.js file when looking into it. Just my thoughts.3 points
-
The download from the website https://thesage-english-dictionary-and-thesaurus.sooftware.com/windows/download/395678 doesn't work in the most recent and the previous version of New Moon 28. Here is a screenshot: Besides a CSP warning, the issue is mainly related to a function in the JavaScript file download.js of this website. The culprit is the performDownload function. In Mypal68, the download of both files is working. Cheers, AstroSkipper3 points
-
How "long time membership" is relevant if a member writes a gross over-exaggeration in terms of hardware requirements? You were "attacked" with the fact of Core Quad/DDR2 being enough for that Firefox task? LOL. Well, frankly, it's not my problem. Jody, this attraction is not mutual, sorry to disappoint, please stop chasing me, also don't involve me into the affairs with other members. If you want to talk, we can talk, but only if you try to prove me wrong with the similar results on your hardware. I'm not interested in your usual derailing activities. I don't see "admin" on your account.3 points
-
Hi! Mp4 is just a container. Which codec do you mean, exactly? DX50? H264? Divx?3 points
-
BTW, is it not rather the case that the legacy version of Adblock Plus is much older than the legacy version of uBlock Origin? I had a look at GitHub. The last version there is 2.9.1 from June 2017. Same version in the CAA. And its repository has been archived by the owner on Jan 26, 2024 https://github.com/adblockplus/adblockplus-legacy/tags. It is now read-only. I can't find any more recent version right away. And Adblock Latitude in version 5.0.9 is from May 2022 which I tried a very short time in the past. Very resource-hungry and not recommendable. So far as New Moon or other UXP browsers are concerned, Adblock Plus and its forks are not really an interesting alternative to uBlock Origin. And even the last webextension of Adblock Plus for Serpent in version 3.12 is from May 2022. Same problem with the webextension Adblocker Ultimate. The version 3.7.12, which is the last compatible version with Serpent, is from Oktober 2021.2 points
-
That's indeed very funny. If something from 2021/2022 is old, then it's better not to use Windows XP or Windows Vista. They are much, much older.2 points
-
... He's mentioned that publicly in a previous post, the gist of it being: "it's difficult to familiarise with and old, as it hasn't been updated since 2021" (speaking about the XUL variant, of course) ...2 points
-
I totally agree. And to tame and purify bloated websites, which are unbearable, for example, in New Moon 28, the extension uBlock Origin with good filter lists selected is the ultimate tool. Therefore, your recommendation here is not off-topic at all. A wonderful example is the website https://www.pcwelt.de/. If you surf this website with New Moon 28, you'll puke if you access it without the content blocker uBlock Origin. Especially on weaker hardware. However, with uBlock Origin enabled, it blocks nearly 1000 requests in my installation. Now, this site can be accessed easily again and seems to be suddenly a light one.2 points
-
<Offtopic> I would say, try in a fresh test profile. But I think it doesn't support that syntax. Copilot: The URL for the "AdGuard URL Tracking Protection" list is: https://filters.adtidy.org/extension/ublock/filters/17.txt That said, why don't you try uBO? It's far superior to Adblock Plus. </Offtopic>2 points
-
I had a deeper look inside the JavaScript file download.js. Here is the code of the performDownload function: (function(){function performDownload(num){event.preventDefault();var xmlHttp=new XMLHttpRequest();xmlHttp.onreadystatechange=function(){if(xmlHttp.readyState==4&&xmlHttp.status==200){var response_text=xmlHttp.responseText;if(response_text.includes("sooftware.com/apps/")) location.assign(response_text);else window.open(response_text,'_blank');}} xmlHttp.open("post",tmp_folder+"performDownload.php?softId="+download_files_hash+"&linkNumber="+num);xmlHttp.send();return false} The window property event is not defined (download.js:1:43). I think the variable num should actually have been there instead of event to get the preventDefault function working. In New Moon 28, the script therefore doesn't seem to be executed in contrast to Mypal 68. IMHO, event is obviously not defined in the download.js file when looking into it. Just my thoughts. Ok! I injected a userscript in this website where I completely removed the event.preventDefault() function. The download is working then. Or, the pref dom.window.event.enabled has to be set to true as suggested by @VistaLover. I personally tend to do the latter. Cheers, AstroSkipper2 points
-
... And this is a 100% pure Googl-ism , as the Browser compatibility table there indicates that feature as present in Google Chrome 1.0 (!), released 2008-12-11, but only implemented in Mozilla Firefox starting with v66.0, released more than 11 years (!) later ...2 points
-
Please check your inbox, I found the right driver for you.2 points
-
You mean this one? Found it for you. The downloads below are archives provided by the Internet Archive Wayback Machine from the Microsoft Download Center prior to August 2020. https://legacyupdate.net/download-center/download/542/security-fix-for-directx-media-6.0-on-windows-nt-4.0-kb8196962 points
-
DISCLAIMER: I am not completely sure if a link to the modded drivers are allowed by the forum rules to be posted publicly, but I guess sending them in a PM should be fine.2 points
-
System level signing is REQUIRED, like explained in this topic... Install the driver I gave you, don't reboot! Sign before reboot! https://msfn.org/board/topic/185975-got-vista-to-run-on-nvme-with-one-of-george-kings-drivers-but-its-unsigned-any-way-to-permanently-bypass-driver-signature-verification-at-boot/2 points
-
Yes, exactly! By all, I even remember there was a comparison of fonts in Brave vs Supermium, with photos.2 points
-
Oh, and I was talking about the current Adblock Plus from its homepage https://adblockplus.org/en/download for my browser Chrome on my Windows 11, not the legacy Adblock Plus for roytam1's browsers, hence the <Offtopic> tag added by @nicolaasjan.1 point
-
No, no, no, I never said that, and don't even plan to do that at all. In fact, I actually find using old OSes like XP or Vista (and even 2000, if we are to go to the mimimum of Older NT-Family OSes) very fun. Please, don't assume stuff I don't plan to say. Also, I don't disrespect your own reasons for not wanting to use something, so please, kindly respect my own reasons for not wanting to use something. Thanks.1 point
-
1 point
-
Hi @VistaLover, apologies for the delay. Life call. I have never used palemon (except @roytam1's builds), so I'm not concerned with their approach and inherent limitations. As per https://webextension.org/listing/tab-reloader.html, I use it countersensically to effectively limit the rampant refresh behavior of scrip bloated sites. Specifically, I ask the extension to reload only every 30 minutes (which it does effectively), to not reload active tab (only those in the background at set time, using cache), to bypass form submission (which works only when pressed to do so), and to not reload offline tabs (which I do put them so, when I want to prevent their being awoken or discarded without permission). If you take a look at the code, you will see the addon uses scripts and workers that mostly prevent updating/refresh operations, preventing trash buildup. You can also set up custom scripts and policies (which I have not used so far), but may be of use for more specific tasks. ALLWAYS REMEMBER TO SAVE OPTIONS (bottom of addon's settings page). I also attached by settings for export, if anyone is interested. In my set up, with those settings I seem to effectively reduce undue garbage collection and overload. Not 100%, I guess, but noticeably so. Cheers! Tabloader.json1 point
-
I have made a new binary build of LOKI the indicator of compromise scanner, and have downgraded yara-python from version 4.3 to version 4.2.3 to eliminate the error message: "TypeError: 'yara.StringMatch' object is not subscriptable" The explanation in the release notes for version 4.3 is as follows: File: Loki-0.46.2-xp.zip (Google Drive) File: Loki-0.46.2-xp.zip (4Shared) MD5: 8D646734522303FCCD1058DFA126C11D SHA-1: E8F32E0F03AA55E5F3A419AFDBD47ED42E12F8EA Size: 24.5 MB Build date: 11/02/2024 Once unzipped the package does no need to be installed, except that an XP compatible build of bcrypt.dll must be in your path, and the IPV6 protocol must be installed from your Local Area Connection. The relevant Python modules to build LOKI under Windows XP are: colorama 0.4.6 future 0.18.3 netaddr 0.8.0 psutil 5.6.1 pyinstaller 4.10 rfc5424-logging-handler 1.4.3 python 3.8.13 pywin32 300 WMI 1.5 yara-python 4.2.3 Note: 4Shared is blocked in the UK. Use a VPN sever located in the United States or the Netherlands.1 point
-
I reorganized the contents of cmalex's distribution of Python 3.8.13 and made a simple batch file to install it along with shortcuts, file associations and environment variables. You can download it here: File: Python 3.8.1350 For XP.7z (4Shared) File: Python 3.8.1350 For XP.7z (Google Drive) MD5: F7F1C486DDAEB417B0D46431947D3E18 SHA-1: CD5876AFD726029F713451E9F15AACB230CCB3EE SHA-256: C05D4F6F092565DEB8C7E89F9DB763605841FA865767936B945B9374F3E98AB6 Build Date: 14/07/2022 Size: 42.8 MB I intend to make a proper installer one day, but at least in this form you can see what is included and make modifications to suit your needs. Enclosed are batch files to temporarily set environment variables if you want to run more than one version of Python on a drive. Note: 4Shared is blocked in the UK. Use a VPN server located in the United States or the Netherlands. CP28_Env.bat CP34_Env.bat CP35_Env.bat1 point
-
Apparently @D.Draker doesn't understand the concept of hyperbole. Of course it was an extreme exaggeration; I had hoped that was obvious to everyone, but apparently not. But he did leave me wondering: what exactly is an "over-exaggeration?" Is there such a thing as an "under-exaggeration?" If I had said 16 MB and an 8-core processor, would he have accused me of under-exaggerating because I only exaggerated a little? And what level of exaggeration is "just right?" Is 32 MB the "Goldilocks" level of exaggeration in D.Draker's opinion? (BTW, even 8GB and a quad-core processor is rather beyond the hardware used by the typical XP user.)1 point
-
I'm not chasing you, so stop flattering yourself. But when I see crap behaviour, I'll make it my business to point it out as a good citizen. But I get it now. Your mantra if, "If I disagree with you, I'll treat you poorly." Thanks I got it loud and clear. I wish the admins of this board would do something about your behaviour (by that I mean collectively you, Dixel, and Saxon). Many of us other have been pulled aside and given warnings for WAY LESS.1 point
-
Not only is this solution very old as said above, I didn't have so much luck with it. It only made a few Discourse-based forums work, and others still remained broken as they are. I, however, had so much luck with this solution > Link (the userscript manager method) It was much easier for me to apply, and it made ALL Discourse-based forums work.1 point
-
What's wrong with you D.Draker? You and Dixel (starting to think you're one and the same) are acting horribly and unreasonably to people - some who are very long time members here. Keep it over in your own threads if you must. You've could have easily said, "I didn't experience the same symptoms as you did." or something of the like, but you just attack first without thinking or considering who you might be talking to.1 point
-
Do you have K-lite Codec Pack 2.73 installed? https://filehippo.com/download_klite-codec-pack/2.73/1 point
-
Over-exaggeration, it runs just fine with only 8GB of 20 years old DDR2 RAM and a 16 years old core quad processor q9650 with only 4 cores! What - you don't throw out and replace your PC every couple of decades? What's wrong with you?"1 point
-
Restart & Purge - A custom button for restarting the browser and, if necessary, purging the startup cache, created by AstroSkipper As I have already reported in @roytam1's browser thread, I have been investigating the restart behaviour of New Moon 28 and Serpent 52 (and also Mypal 68, but this is off-topic here) for some time with a focus on the startup cache. Unfortunately, I have not been able to find much useful information or documentation on this topic on the internet. Even my request in @roytam1's browser thread also went unanswered (addendum: in the meanwhile, @VistaLover has replied here. Thanks again for that! ). It seems that detailed information or knowledge about the startup cache and how the browser restart affects this cache is practically non-existent. The startup cache seems to be a replacement for the former Fastload. It resides in the profile directory to store continuous chunks of data in it. In my New Moon 28 installation, without using the custom folder chrome for scripts and CSS stylesheets, only one file resides there with the name startupCache.4.little. As both, the folder and file name, contain the string startupcache, one can conclude that data is stored inside this file to accelerate the startup of the browser. Which data exactly I really don't know. I didn't find any meaningful documentation. I noticed that very often or in most cases the startup cache was cleared or reorganised automatically without any additional commands when restarting the browser. Sometimes, however, it remained unchanged after a restart. At least, I could find the code responsible for purging the startup cache. Anyway! One thing is clear. If the data in the startup cache is corrupted, then starting problems can occur which only can be solved by deleting its content. This can be done, for example, manually or by the commandline option -purgecaches. But there is no button or item to start this purge of the startup cache in a convenient way from within the UXP browsers. That's why I created a custom button for this purpose in JavaScript (rather a variant of JavaSript), the programming language used for creating new custom buttons by the extension Custom Buttons. I branded this custom button Restart & Purge. It performes a normal restart when left-clicked and additionally purges the startup cache when middle-clicked. After creation I have tested this custom button over a longer period of time, and it works for me as it should. Here is a small screenshot of my custom button Restart & Purge and its tooltip taken from New Moon 28: As the code of Restart & Purge has to be initialised, you won't find it in the tab "Code" but in the tab "Initialization code" of this custom button. Here is a screenshot of its code: The former download links unfortunately contained an XML backup file of the Restart & Purge custom button which either couldn't be installed without additional editing or some characters were not transferred correctly. The problem has to do with the conversion of custom buttons into XML format, where the tool I had used did not work correctly. This time I therefore provide a custom button link for direct install (when the extension Custom Buttons is already installed, of course ). Copy the quoted link below and open it in a new browser tab: I can't insert the code of the link in this post! The MSFN forum editor is totally broken and hasn't been working properly for months especially when it comes to inserting of links. This has already reported multiple times! Well done, who is responsible for it! Due to the shortcomings of the MSFN forum editor, I uploaded the custom button link of Restart & Purge as an HTML file. Here is the download link: https://www.mediafire.com/file/nrqim7ek9s6gp07/CB_button_Restart_%26_Purge.html/file Simply open this HTML file in a browser tab and click the embedded custom button link for Restart & Purge! For the installation of this button, the extension Custom Buttons is required which you can get from this post: https://msfn.org/board/topic/183923-extensions-and-custom-buttons-for-uxp-browsers-corrections-modifications-adjustments-and-special-recommendations/?do=findComment&comment=1226328 And since the legacy Custom Buttons extension runs in the UXP browsers, my custom button Restart & Purge can be used in New Moon 28, Serpent 52, Pale Moon and some other browsers. Greetings, AstroSkipper1 point
-
I dunno - doesn't sound consistent to me. I think you are trying to dictate terms here, and I don't see "Admin" by your name. The difference in versions of Chromium (360 vs Supermium) is neither here nor there. You and your pack are the only ones making a huge deal of this. No one that has been here for any significant amount of time has any problems with the "issues" you have with our comparisons. I think we'll all just go on and post how we want. Anyway, it was noted that Dibya started this thread any way, not Win32. So let's agree to co-exist cordially, shall we?1 point
-
Ported one could probably work. Intel UHD Video. I've just sent you a modded driver via PM.1 point
-
No, I swear, I don't use any VPN extension or program, it's very strange.1 point
-
1 point
-
I can't tell about Brave 121, but I compared Brave 110 vs this one, and Brave at least has no leaks, no crashes. But it's on Vista. I'm sorry, I didn't document comparison charts, but Brave was faster, and the UI in Brave is much better to my personal taste.1 point
-
I think I was one of the first ones to discover it, I had hopes for this browser. The heavy leak was there some versions ago already, probably from the beginning. That said, I have enough RAM, but it won't just stop. https://msfn.org/board/topic/175262-last-versions-of-software-for-windows-vista-and-windows-server-2008/?do=findComment&comment=12581821 point
-
Huge memory leaks, check if you have VC, uninstall it. https://github.com/win32ss/supermium/issues/204#issue-21044700311 point
-
1 point
-
And check this thread where we talked a lot about supported protocols: https://msfn.org/board/topic/184410-xpvista-compatible-clients-for-modern-email-services/ MailNews actually supports OAuth2. I set up an old hotmail email address months ago which is of course a Microsoft Outlook address today, and it still works. Just tested. And all my Gmail accounts were set up by OAuth2, and they also work in MailNews.1 point
-
1 point
-
When I am later at my desktop computer, I will provide the version, which is stiil working, including suitable settings. @dmiranda At the moment, I have replaced the version MPlayer Redxii-SVN-r37871-4.9.3 (i686), which comes with the installation package of SMPlayer 23.12.0, by the version MPlayer Redxii-SVN-r37940-6.2.0 (i686), you see a bit more recent one. This version works great with relative seeking selected and precise unselected. Another version is MPlayer Redxii-SVN-r37802-4.9.3 (i686) which even works with absolute and/or precise seeking selected. Versions higher than 37802 do not work with absolute seeking. And I have unselected the options "Remember time position" with "Remember for streams". I should still mention that version 37940 is the last XP-compatible one. Cheers, AstroSkipper1 point
-
@roytam1 Personally, if I were you, I would remove all references in your packages and compilations to Matt A Tobin and his work. He's not worth your aggravation!!!1 point
-
New regular/weekly KM-Goanna release: https://o.rths.cf/kmeleon/KM76.1.1-Goanna-20190223.7z Changelog: In-tree changes: - bump version to 76.1.1 due to Goanna ABI changes (2290fdd6) Out-of-tree changes: * update Goanna3 to git 7450defff..6d775ae14: - import changes from rmottola/Arctic-Fox: - Bug 1133760 part 1. The ownPropNames hook can't be called via Xrays, so stop trying to handle that case. (c8ada5454) - Bug 1133760 part 2. Get rid of unforgeable holders; just store unforgeable properties for DOM proxies directly on the expando object. (ce850b54e) - Bug 1134730. DOM proxy finalizers should not assume that the JS object has an actual reference to the DOM object (and in particular that the slot it's stored in is a private slot). (bd4f51b99) - Bug 1084439. Remove ResolveWorkerClasses in favor of [Exposed=System] annotations. (cdf896e5a) (5a5c13b72) - import changes from rmottola/Arctic-Fox: - Bug 1188462 - Rename gfx/skia/trunk directory to gfx/skia/skia. (26e6a37fd) - Bug 1188462 - Fix inclusion of skia headers to use correct directory prefixes. (cb8a82d14) - Bug 1188462 - Add SKIA_INCLUDES list for adding Skia to header search path. (0f95f6f77) - Bug 1157065 - GFX: 2D: Implement skia::Convolve in LS3 MMI. * skia::ConvolveVertically * skia:ConvolveHorizontally * skia:ConvolveHorizontally4 (445c1a64e) (6dd0dba0a) - import changes from rmottola/Arctic-Fox: - Bug 945584: Part 1 - Style support for scroll snapping attributes, - Implemented style support for new attributes: - scroll-snap-type - scroll-snap-type-x - scroll-snap-type-y - scroll-snap-points-x - scroll-snap-points-y - scroll-snap-destination - scroll-snap-coordinate (02fe3bb49) - Bug 945584: Part 2 - Add CSS scroll snapping attributes to ScrollbarStyles (v10 Patch) (7ffff307b) - Bug 945584: Part 3 - Enable cancellation of OSX synthesized mousewheel scrolling events (v2 Patch), (124e19201) - Bug 945584: Part 4 - Add scroll snapping preferences (v3 Patch), - Added preferences to allow trackpad and mousewheel flinging between snap points to be tuned: - layout.css.scroll-snap.prediction-max-velocity - layout.css.scroll-snap.prediction-sensitivity (64d44c6ca) - Bug 945584: Part 5 - Implement ScrollVelocityQueue (v4 Patch), - Implemented ScrollVelocityQueue class to calculate the velocity of a scroll when given periodic samples of scroll position. - Added BasePoint::Clamp to simplify code. (bca79b509) - Inactive subframes-in-subframes add event regions to the wrong layer. (bug 1139213, r=tn) (c5ad5ede0) - Bug 1075702 - Fixed implementation of Element.setAttributeNode(). (8e5cdb94d) - Bug 1134968. If JS_NewObjectWithGivenProto is passed a null parent and null proto, use the context's current global as the parent. (82810e810) - Bug 990907 - Add a flag on nsIScrollableFrame to indicate if it is actively being scrolled by APZ. (3eb29e60b) (a9868b918) - libwebp: update to 1.0.1 (2acd78ac8) - import changes from rmottola/Arctic-Fox: - Bug 1136925 part 1. Stop passing a parent to JS_CloneObject (02806f3cb) - Bug 1136925 part 2. Stop passing a parent to Wrapper::New. (1d51cbd34) - Bug 1136925 part 3. Stop passing parents to js::NewProxyObject. (dc13db8da) - Bug 1136925 part 4. Stop passing parents to ProxyObject::New. (e2d30e340) - Bug 1136980 part 1. Get rid of JS_SetParent uses in DOM/XPConnect. (5cad9c256) - Bug 1136980 part 2. Remove JS_SetParent, even though we have a CLOSED TREE (96cf58c85) - Bug 1113369, part 1 - Introduce JS::ObjectOpResult and use it in js::StandardDefineProperty. (15663c476) - Bug 1113369, part 1½ - Avoid regressing error messages by adding obj to the ObjectOpResult methods that could throw a TypeError. (e063faf08) - Bug 1113369, part 2 - js::SetArrayLength ObjectOpResult support. (cf8326017) - Bug 1113369, part 3 - [[DefineOwnProperty]] ObjectOpResult support. (e16605a90) - Bug 1113369, part 4 - [[Set]] ObjectOpResult support. (6f94604d4) - Bug 1113369, part 5 - [[Delete]] ObjectOpResult support. (6feef9887) - const override -> const MOZ_OVERRIDE (fa0ff1802) - adapt pointer style writing to better accept patch (1a6627036) - Bug 1113369, part 6 - [[PreventExtensions]] ObjectOpResult support. (5fa15660e) - pointer style before applying patches (06380aade) - const override -> const MOZ_OVERRIDE (fe5f9f3c0) - Bug 1113369, part 7 - [[SetPrototypeOf]] ObjectOpResult support. (67e8d1987) and some follow-up patches: bug1140737, bug1141154, bug1141329 (8423980b0) - import changes from rmottola/Arctic-Fox: - Bug 940273 - Part 1 - Fetch changes from maple twig to support Service Worker Cache. (5f8e82dd7) - Bug 940273 - Part 1b - Expose nsFileProtocolHandler.h in mozilla/net. (71a3ebcf4) - Bug 940273 - Part 2 - Add a pref to enable Service Worker Cache. (2e7b478d3) - patch header include (3b90a9b8d) - override -> MOZ_OVERRIDE (8f51321bc) - override -> MOZ_OVERRIDE (5f4ab5143) - Bug 1136563 - ARIA 1.1: Support role 'switch' (2484c9c27) - Bug 1121518 - ARIA 1.1: Add support for role 'searchbox' (8d3ee1204) - override -> MOZ_OVERRIDE (3db7a0cb4) - Bug 1137714 - Make roleDescription nicer/correct/faster (da6beb861) - Bug 1134280 - Get rid of Tag() - patch 1 - Is{HTML,XUL,MathML,SVG}Element and IsAnyOf{HTML,XUL,MathML,SVG}Elements (133801ca1) - Bug 1134280 - Get rid of Tag() - patch 2.1 - /accessible - Fix all the occurrences (fbef71d88) - Bug 1134280 - Get rid of Tag() - patch 2.2 - /editor - Fix all the occurrences (e54a21dcc) - Bug 1134280 - Get rid of Tag() - patch 2.3 - dom/base and docshell - Fix all the occurrences (8bf192106) - Bug 1134280 - Get rid of Tag() - patch 2.4 - layout/mathml - Fix all the occurrences (7914f351d) - Bug 1134280 - Get rid of Tag() - patch 2.5 - dom/xul - Fix all the occurrences (6611b95ef) - Bug 1134280 - Get rid of Tag() - patch 2.6 - layout/base and layout/form - Fix all the occurrences (61e06ff31) - Bug 1134280 - Get rid of Tag() - patch 2.7 - layout/generic - Fix all the occurrences (bbe5865c2) - Bug 1134280 - Get rid of Tag() - patch 2.8 - dom/html - Fix all the occurrences (7af471da5) - Bug 1134280 - Get rid of Tag() - patch 2.9 - dom/svg, dom/xml, dom/xslt and dom/xbl - Fix all the occurrences (ab9769748) - Bug 1134280 - Get rid of Tag() - patch 2.10 - dom/events, dom/mathml, dom/plugins, dom/smil - Fix all the occurrences (421ba62f4) - Bug 1134280 - Get rid of Tag() - patch 2.11 - layout/xul - Fix all the occurrences (e19e64b2c) - Bug 1134280 - Get rid of Tag() - patch 2.12 - layout/style, layout/svg - Fix all the occurrences (7ec90f520) - Bug 1134280 - Get rid of Tag() - patch 2.13 - Fix all the occurrences (a887a4341) - Bug 1134280 - Get rid of Tag() - patch 3 - nsContentUtils::IsHTMLBlock should work with nsIContent inste nsIAtom (28fa04521) - Bug 1134280 - Get rid of Tag() - patch 4 - Get rid of nsDocumentEncoder::IsTag (ed4bf4d48) - Bug 1134280 - Get rid of Tag() - patch 5 - nsGenericHTMLElement::IsHTMLElement (70a2822c7) - Bug 1134280 - Get rid of Tag() - patch 6 - Remove nsINode::Tag() (85885131f) - Bug 1134280 - Get rid of Tag() - patch 7 - Followup to fix bustage. (actuall, backport, it was missing) (cfcfa3e74) - Bug 1134280 - Get rid of Tag() - patch 8 - Fixed a debug-only compilation issue (502319995) - Bug 1356843 - Fix -Wcomma warnings in dom/base/ and dom/xml/. clang's -Wcomma warning warns about suspicious use of the comma operator such as between two statements or to call a function for side effects within an expression. (0f1ad0554) (4573c3bc0) - import changes from rmottola/Arctic-Fox: - Bug 1125750 - Check the overflow region direction to avoid unnecesary reflow for scrollable frame. (6b5067631) - Bug 1125750 - Add auto test to detect error when using mOuter to check overflow area of a scrollable frame. (4e9c43e31) - override -> MOZ_OVERRIDE (ed1ecc151) - Bug 990907 - Don't add text-overflow markers while being actively scrolled by APZ. (523bc5a3e) - Bug 945584: Part 6 - Implementation of scroll snapping (v10 Patch) (bf64eb0f3) - Bug 945584: Part 7 - Implement Scroll Snapping for Autoscroll, - Triggering scroll snapping at the end of an autoscroll. - This enables text selection to be unencumbered by scroll snapping, while restoring the scroll position to a valid snapping position when the drag operation is completed. (db9ce9811) - Bug 945584: Part 8 - Implement Scroll Snapping for Middle Mouse Button Scrolls (v2 Patch) (06d1b733d) - some MacOS 10.5 Leopard support (6a37f6745) - Bug 945584: Part 9 - Tests for scroll snapping (v4 Patch) (f67175387) - Bug 1102427 - Ensure scroll parents of an active scrollframe are layerized. (910d43ec5) - Bug 1142731 followup. Check isInterpreted() before we call environment(), because of the asmjs lambdas. (29b2acdc7) - Bug 1161627 - part 1 - add move constructor and assignment operator for already_AddRefed&& to RefPtr; This change is prep work for future mass rewriting. (98416d45c) - Bug 1161627 - part 2 - machine-convert TemporaryRef<T> to already_AddRefed<T>; (336e96af7) - Bug 1161627 - part 3 - remove TemporaryRef<T> from RefPtr.h (6c3acdaed) - Bug 940273 - Part 3 - Service Worker Cache webidl. (4b6803d0a) - Bug 940273 - Part 4 - Initial implementation of Service Worker Cache. (74498c108) - Bug 1133861 - Bustage fix. (4a81437c2) (18a7a6885) - import changes from rmottola/Arctic-Fox: - Bug 940273 - Part 5 - Expose Service Worker Cache as window.caches when pref is enabled. (ed05e2028) - Bug 940273 - Part 6 - Expose Service Worker Cache on workers as self.caches (ffbc3dd0f) - Bug 940273 - Part 7 - Initial tests for Service Worker Cache. (828405e48) - Bug 1139603: Add MOZ_OVERRIDE annotations in CacheParent.h and QuotaClient.cpp to fix clang -Winconsistent-missing-override. (dcd9139c3) - Bug 1139153 - Rip out the unneeded layout.async-containerless-scrolling.enabled pref. (6bbaaa5c6) (b93691415) - finally bump versions (6d775ae14) Note: for unknown reason, this code becoming broken after my 8 Feb merge: (follow code found in Easy Drag2Go extension) var tPrefs = Cc['@mozilla.org/preferences-service;1'].getService(Ci.nsIPrefService); var lang = tPrefs.getComplexValue('general.useragent.locale', Ci.nsISupportsString).data; 07:20:40.283 TypeError: tPrefs.getComplexValue is not a function and you will need changing nsIPrefService to nsIPrefBranch in order to make code working again. * Notice: the changelog above may not always applicable to XULRunner code which K-Meleon uses.1 point
-
New build of BOC/UXP for XP! Test binary: MailNews Win32 https://o.rths.cf/boc-uxp/mailnews.win32-20190223-71a6038-uxp-f89a809df-xpmod.7z Browser-only Suite Win32 (removed due to request) source patch (excluding UXP): https://o.rths.cf/boc-uxp/boc-uxp-src-xpmod-20190223.7z Official repo changes since my last build: - No message (f0e2261) - [ABPRIME] Account for Navigator's labelalign="end" (323d08b) - [PLATFORM] Update commit pointer (f124b4b) - [NAVIGATOR] Fix component/add-on bar styling in Modern (96ba0e2) - [NAVIGATOR] Remove Link Toolbar (c5a8bd8) - [NAVIGATOR] More main menu fun (8de118d) - [PLATFORM] Update commit pointer (5c6bbde) - [INSPECTOR] Revise content manifest (47c2c68) - [NAVIGATOR] Don't clear the default status on ling hover (fb8a18e) - [Navigator] Fix package manifest so that icons are packed on all platforms (1efbd55) - no message (2828fdb) - [NAVIGATOR] Even more menu stuffs (e194016) - [NAVIGATOR] Move communicator chrome into a seperate directory until it can be re-deposited in base or components (2a66832) - [NAVIGATOR] Abolish the centralized l10n (dede887) - [NAVIGATOR] Put navigator chrome in navigator.jar (ba768eb) - [NAVIGATOR] Move more communicator components to.. components/ (cc270f6) - [NAVIGATOR] Move pageinfo to components/ (e3d279e) - no message (881f82c) - [NAVIGATOR] Make sure navigator.jar is actually packaged... (d97e8a6) - [PLATFORM] Update commit pointer (2cf3edf) - [NAVIGATOR] Put pageinfo in the correct jar (d87d84b) - [PLATFORM] Update commit pointer (33ead50) - [MAIL] Complete the Search Engine management work (55656d2) - [MAIL] Add an argument to bypass the phishing check in contentAreaClick (ce3ebf1) - [MAIL] Attach contentAreaClick to the discover pane browser element onlick event (6dec1f6) - [MAIL] Hook the Add-ons Manager up to the MailNews Add-ons Site (dbf2b6c) - [MAIL] Move the Work Offline statusbarpanel (b160989) - [MAIL] Update dictionary url pref as well (f56cfa0) - [MAIL] Restore the Help Menu Update Checker (91727e9) - [NAVIGATOR] Update homepage and bookmarks (29d1868) - [NAVIGATOR] Hack in a places enabled history menu (b55b424) - [NAVIGATOR] Bookmarks Menu work (a9c05d0) - [CENTRAL] Update version2k.py to give an eDate with -e (9cca03e) - [PLATFORM] Update commit pointer (cc9ed23) - [CENTRAL] Import scratchpad (34e0c7e) - Move extensions to projects/ (3e94e63) - Revert "Move extensions to projects/" (eab19c8) - [CENTRAL] Update gitignore (7e9ed9f) - [CENTRAL] Move most projects to projects (1721b28) - {SCRATCHPAD] Make it build properly (d3230be) - [PSWITCH] Update how it builds (90585d7) - [CENTRAL] Establish a communicator "toolkit" directory (bef8b33) - [MAIL] Enable MOZ_MAILNEWS (7556d52) - [CENTRAL] Remove junk left over from comm-central (a6b413d) - [NAVIGATOR] Move to projects/ (b830349) - [MAIL] Move to projects/ (71a6038) For UXP changes please see above.1 point
-
New build of basilisk/UXP for XP! Test binary: Win32 https://o.rths.cf/basilisk/basilisk52-g4.1.win32-git-20190223-f89a809df-xpmod.7z Win64 https://o.rths.cf/basilisk/basilisk52-g4.1.win64-git-20190223-f89a809df-xpmod.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/custom PM28XP build: Win32 https://o.rths.cf/palemoon/palemoon-28.5.0a1.win32-git-20190223-f89a809df-xpmod.7z Win64 https://o.rths.cf/palemoon/palemoon-28.5.0a1.win64-git-20190223-f89a809df-xpmod.7z Official repo changes since my last build: - Pale Moon: Add loop context menu to HTML5 media elements. (8906ccd05) - Clean up localization. (b9d51d4e3) - Rename mediaPlaybackRate to mediaPlaybackRate2. (4a89b18b3) - Treat aContext as a bitfield in openURI. (cb959aec3) - [PALEMOON] Link dictionaries to addons.palemoon.org (8b0531b4a) - Merge pull request #975 from JustOff/PR_dictionaries_url (ca662e978) - Merge pull request #972 from MoonchildProductions/issue-971 (f475489b6) - Merge pull request #967 from Ascrod/master (364262894) - Update Basilisk Search Engines URL preference (3b553d5cf) - Conform Pale Moon AM preferences to actual locations (66bfad276) - New cycle version bump. (2625ea442) - Stop using hard-coded URL for "get more devtools" (54f9a14d0) - [Basilisk] Add get more devtools URL pref. (529067c0a) - BMPs from the clipboard may include extra padding. (c66d87e6c) - Revert "Port several Skia upstream fixes." (c13bd1bba) - Skia: Be consistent about int for incReserve. (91903016b) - Skia: Validate allocation size in GrBufferAllocPool using SkSafeMath. (ca3861669) - Don't trust convexity when applying transforms. (27f45bc24) - Add nullcheck for frames in FindNearestCommonAncestorFrame (3029dee77) - Preserve newlines in textarea placeholders (b1e78d1db) - Merge pull request #979 from JustOff/PR_textarea_placeholders (c7585afb9) - Update webplatform tests for multiline placeholder. (833be88a6) - Remove conditional MOZ_MAINTENANCE_SERVICE code (fc0a0f13a) - Remove maintenance service code from nsUpdateService and related. (e3c88dc64) - Remove Non ifdef'd service code from toolkit/mozapps/updater/updater.cpp (cdc483892) - Remove toolkit/components/maintenanceservice/ (664f6385a) - Remove maintenance service bits from nsUpdateDriver (234648ca8) - Clobber for maintenance service removal (303e4314f) - Remove reference to standalone component. (26d7c44f1) - Restore building of common-standalone lib for updater. (73551520d) - Remove error table with unspecified errors. (6f78cfb3a) - Stop building /docshell unified and fix deprot. (f89a809df)1 point
-
They can do whatever they want, and so do I. It is a smorgasbord and I'll pick whatever I want to my dish.1 point