Leaderboard
Popular Content
Showing content with the highest reputation on 08/01/2022 in Posts
-
Mypal 68 in Windows XP – Custom Buttons and Extensions @feodor2 created a great new browser called Mypal 68, a browser for Windows XP based on Firefox 68. It is still in development. Here is the link: https://github.com/Feodor2/Mypal68. Mypal 68 is the first one which bases on Firefox Quantum targeting Windows XP. We already have a thread about Mypal 68 generally. It is here, started by @Jody Thornton: https://msfn.org/board/topic/183495-mypal-68/. Logically, we will stick with this browser in Windows XP for a long time. The goal of this thread is to make this browser as comfortable as possible and to enhance its functionality. Purpose and structure of this thread All Pale Moon, New Moon and abandoned Mypal browser editions support old legacy UXP-based extensions. In contrast to them, the new Mypal 68 is a browser which actually only supports webextensions, like Firefox editions 57+. Therefore, all our beloved legacy extensions can't be used anymore except those ported to webextensions by their developers. Especially all custom buttons extensions don't work anymore and there are no replacements among the webextensions. In the past I created some custom buttons by using JavaScript, but none of them can be loaded in Mypal 68. Starting from Firefox 57, we have to notice following rule: the higher version, the more restricted in customization of the browser's UI and its functions. And if you think, all of these new webextensions will work in Mypal 68, then you will be disappointed once again. And exactly that is the reason I created this thread. The purpose of it is on the one hand to collect and provide information about useful, fully working extensions and on the other hand to show alternatives for implementing custom buttons, all in Mypal 68. The idea is one useful, fully working custom button or extension, one post. Custom buttons in Mypal 68 The implementation of a custom button into Mypal 68 is much more complicated than it was in the case of UXP-based browsers. As already stated, all old custom button extensions don't work anymore. The same applies to created custom buttons targeting these CB extensions. There are no replacements among the webextensions. So what can we do? The answer is using scripts. In the profile folder of Mypal 68 a new subfolder "chrome" has to be created if not already existent. These scripts can be copied to this chrome folder and loaded at next browser start. They contain new functions or buttons to enhance functionality or usability of Mypal 68. Unfortunately, the compatibility of these userscripts *.uc.js depends on the targeted version of Firefox. Therefore, only a few of them will work natively in Mypal 68 unless you are able to modify them or write your own scripts. And there are some requirements to be fulfilled to get them working in Mypal 68. Requirements for loading UC.JS scripts and CSS stylesheets in Mypal 68 1. In the profile folder of Mypal 68 a new folder "chrome" and a subfolder "css" of folder chrome have to be created if not already existent. Now you should have the following structure in your profile folder: mypal_profile_folder\ mypal_profile_folder\chrome\ mypal_profile_folder\chrome\css\ 2. Five files have to be added to Mypal 68. Copy config.js to Mypal's installation folder, next to mypal.exe. Copy config-prefs.js to \defaults\pref inside Mypal installation folder, next to channel-prefs.js. Finally, save userChrome.js, userChrome.css and userChrome.xml into Mypal chrome folder. 3. The variable general.config.sandbox_enabled has to be set to false in about:config which should be done automatically by file config-prefs.js after restarting the browser. Two further variables will be set by this file: general.config.filename to string config.js and general.config.obscure_value to value 0. Another variable toolkit.legacyUserProfileCustomizations.stylesheets has to be set to true which should be done automatically by config.js. 4. Now, new custom button UC.JS scripts can be added to the profile's chrome folder. They all end with the extension .uc.js, for example RestartFirefoxButton_Movable.uc.js. In some cases, the userChrome.css file has to be edited to load additional CSS files needed by the already added UC.JS script files. In any case, all CSS stylesheets files have to be copied to the css subfolder from where they have to be always imported by the userChrome.css file via the import command or alternatively by a CSS loader script. This is the download link of the package MYPAL_68_CB_requirements.7z I created which contains all required files for the custom buttons and CSS implementations posted by me: https://www.mediafire.com/file/m84enyyuz7up01y/Mypal_68_CB_requirements.7z/file Update 14.01.2025 Custom Buttons requirements, i.e. the Nuchi-Sporif UC.JS script loader for Mypal 68 and compatible browsers. Modified and provided by AstroSkipper. 1. In the profile folder of Mypal 68 a new folder "chrome" and a subfolder "css" of folder chrome have to be created if not already existent. Now you should have the following structure in your profile folder: mypal_profile_folder\ mypal_profile_folder\chrome\ mypal_profile_folder\chrome\css\ 2. Five files have to be added to Mypal 68. Copy the config.js file into Mypal's installation folder, next to the main executable mypal.exe. Copy the config-prefs.js file to the defaults\pref subfolder inside the Mypal installation folder, next to the already existing channel-prefs.js file. Finally, copy the files userChrome.js, userChrome.css and userChrome.xml into the Mypal chrome folder. 3. For the Nuchi-Sporif script loading method, the preference general.config.filename will be automatically set to the string value of config.js by the config-prefs.js file after starting the browser. The preference general.config.sandbox_enabled can be left at Mypal's default for this method. Only for other script loading methods, it has to be set to the Boolean value of false in about:config, which means, it then should be enabled in the config-prefs.js file (since I have commented it out for the use of the Nuchi-Sporif script loading method at the moment) and automatically set by this file after starting the browser. The preference general.config.obscure_value doesn't seem to be absolutely necessary for the Nuchi-Sporif script loading method either, but for the legacy Custom Buttons extension and has to be set to the value of 0. This will be automatically done by the config-prefs.js file after starting the browser. Last but not least, another important preference toolkit.legacyUserProfileCustomizations.stylesheets has to be set to the Boolean value of true which will be automatically done by the config.js file. 4. Now, new custom button UC.JS scripts can be added to the profile's chrome folder. They all end with the extension .uc.js, for example RestartFirefoxButton_Movable.uc.js. In some cases, the userChrome.css file has to be edited to load additional CSS files needed by the already added UC.JS script files. In any case, all CSS stylesheets files have to be copied to the css subfolder from where they have to be always imported by the userChrome.css file via the import command or alternatively by a CSS loader script. Here is a short changelog of my new package Mypal 68 CB requirements - Updated 12.01.2025.7z: In the config-prefs.js file, comments added and the pref general.config.sandbox_enabled deactivated. In the config.js file, unnecessary code removed. In the userChrome.css file, information added how to import CSS stylesheets. In the userChrome.js file, the error "ReferenceError: XPCOMUtils is not defined" fixed in two different ways: either unnecessary code completely removed, or the corrected file userChrome.js.FixedJustForFunByAstroSkipper can be used (the extension .FixedJustForFunByAstroSkipper has to be removed, of course ). Instructions in the Instructions - Please read me first!.txt file updated. This is the download link of the package Mypal 68 CB requirements - Updated 12.01.2025.7z I created which contains all required files for the Nuchi-Sporif script loading method to load UC.JS scripts and CSS stylesheets in Mypal 68: https://www.mediafire.com/file/08g7r4brr5mukkh/Mypal_68_CB_requirements_-_Updated_12.01.2025.7z/file News about the Nuchi-Sporif script loading method - 23.04.2025 The Nuchi-Sporif script loading method I have made available in this post is only working up to Mypal 68.14.7b. With @feodor2's release Mypal 68.14.8b, this method completely stopped working. From now on, I recommend the Alice0775 script loading method from 4th place in my ranking list of all script loading methods which I had tested some months ago: Extensions in Mypal 68 As already mentioned, Mypal 68 supports only web extensions. We can try to use all web extensions which are provided on official Firefox Extensions homepage: https://addons.mozilla.org/en-US/firefox/extensions/. But do not think each of them will work in Mypal 68! First we have to take account of the minimum version number less or equal to 68, of course, but that's not all. A lot of supposedly compatible extensions don't work in Mypal 68. For example, many "Clear Cache" extensions don't do their job properly. You think the cache has been deleted by clicking, but that's a fallacy. Either you have to install some so-called "native applications" which have to be installed in your system to grant access to restricted functions in Mypal 68, unfortunately not being Windows XP compatible like, for example, node.js, a JavaScript runtime built, or they simply don't work as expected. The same applies to the so-called browser restart extensions. They are not able to perform a complete, real restart of Mypal 68. I found a lot of them, and they are all crap. Anyway, beware of these useless, crappy extensions! Update notification: 10/06/2022: The file MYPAL_68_CB_requirements.7z has been updated and corrected. Download link above. 11/06/2022: New beta version released: Mypal 68.12.4b. Download link: https://github.com/Feodor2/Mypal68/releases/download/68.12.4b/mypal-68.12.4.en-US.win32.zip 10/08/2022: New beta version released: Mypal 68.12.5b. Download link: https://github.com/Feodor2/Mypal68/releases/download/68.12.5b/mypal-68.12.5.en-US.win32.zip 14/05/2023: New beta version released: Mypal 68.13.0b. Download link: https://mega.nz/file/QaY1zLLY#PhGLpVBfu51To4sjqSgfjaLX6nyebwye82FliTf41yA 28/06/2023: New beta version released: Mypal 68.13.1b. Download link: https://github.com/Feodor2/Mypal68/releases/download/68.13.1b/mypal-68.13.1.en-US.win32.zip 15/07/2023: New beta version released: Mypal 68.13.2b. Download link: https://github.com/Feodor2/Mypal68/releases/download/68.13.2b/mypal-68.13.2.en-US.win32.zip 07/10/2023: New beta version released: Mypal 68.13.3b. Download link: https://github.com/Feodor2/Mypal68/releases/download/68.13.3b/mypal-68.13.3.en-US.win32.zip 17/10/2023: New beta version released: Mypal 68.13.4b. Download link: https://github.com/Feodor2/Mypal68/releases/download/68.13.4b/mypal-68.13.4.en-US.win32.zip 30/10/2023: New beta version released: Mypal 68.13.5b. Download link: https://github.com/Feodor2/Mypal68/releases/download/68.13.5b/mypal-68.13.5.en-US.win32.zip 11/11/2023: New beta version released: Mypal 68.13.6b. Download link: https://github.com/Feodor2/Mypal68/releases/tag/68.13.6b 18/11/2023: New beta version released: Mypal 68.13.7b. Download link: https://github.com/Feodor2/Mypal68/releases/tag/68.13.7b 07/01/2024: New beta SSE version released: Mypal 68.13.8b. Download link: https://github.com/Feodor2/Mypal68/releases/tag/68.13.8b 17/02/2024: New beta version released: Mypal 68.13.9b. Download link: https://codeberg.org/Theodor2/Mypal68/releases/tag/68.13.9b 24/04/2024: New beta version released: Mypal 68.14.0b. Download link: https://codeberg.org/Theodor2/Mypal68/releases/tag/68.14.0b 04/05/2024: New beta version released: Mypal 68.14.1b. Download link: https://codeberg.org/Theodor2/Mypal68/releases/tag/68.14.1b 01/06/2024: New beta version released: Mypal 68.14.2b. Download link: https://codeberg.org/Theodor2/Mypal68/releases/tag/68.14.2b 21/07/2024: New beta version + beta SSE version released: Mypal 68.14.3b. Download link: https://codeberg.org/Theodor2/Mypal68/releases/tag/68.14.3b 03/08/2024: New beta version + beta SSE version released: Mypal 68.14.4b. Download link: https://codeberg.org/Theodor2/Mypal68/releases/tag/68.14.4b 25/11/2024: New beta version version released: Mypal 68.14.5b. Download link: https://github.com/Feodor2/Mypal68/releases/tag/68.14.5b 14/01/2025: The file MYPAL_68_CB_requirements.7z has been updated and corrected and is now named Mypal 68 CB requirements - Updated 12.01.2025.7z. Download link above. 25/01/2025: New beta version + beta SSE version released: Mypal 68.14.6b. Download link: https://github.com/Feodor2/Mypal68/releases/tag/68.14.6b 01/02/2025: New beta version + beta SSE version released: Mypal 68.14.7b. Download link: https://github.com/Feodor2/Mypal68/releases/tag/68.14.7b 02/05/2025: New beta version + beta SSE version released: Mypal 68.14.8b. Download link: https://github.com/Feodor2/Mypal68/releases/tag/68.14.8b 14/07/2025: New beta version + beta SSE version released: Mypal 74.1.0. Download link: https://github.com/Feodor2/Mypal68/releases/tag/74.1.0 02/08/2025: New beta version + beta SSE version released: Mypal 74.1.1. Download link: https://github.com/Feodor2/Mypal68/releases/tag/74.1.1 In this thread, please post only useful custom buttons or extensions, tested and fully working in the most recent version of Mypal 68! If not, a note is necessary which version of Mypal is targeted. "Useful" means this custom button or extension should have a meaningful and real benefit for its user, contrary to just only working or looking nice. The post should include a headline with the name of the custom button or extension in bold and font size 18, a short description (one sentence including purpose and version number), some important remarks regarding to installation or usage, if necessary, and a download link, of course. All posted custom buttons, script-generated objects, CSS code implementations, extensions or special articles that meet these conditions will be listed alphabetically in the second or third post, with a link to the member's original comment for better overview. Due to the modular character of this thread, each posted custom button or extension can be upvoted or liked separately with credits to their poster. Any opinions, experiences, discussions, or questions about these custom buttons or extensions are explicitly welcome. But one thing must be totally clear, everything should relate to this topic. That means please stay on-topic! If you enjoyed this thread, or maybe you found it interesting and helpful, we would be pleased about any reaction by liking or upvoting and of course commenting. Kind regards, AstroSkipper1 point
-
I understand, not doing very well either, tomorrow's another day. Ugh :(1 point
-
1 point
-
1 point
-
1 point
-
If your hard drive is defective or has bad sectors, you should back it up completely and then test it for errors using the manufacturer's checking or formatting software. Sometimes, there are just pending sectors and can be fixed by hard drive electronics, triggered by executing the manufacturer's checking or formatting software. I did that successfully several times in the past. Check your hard drive first by using Hard Disk Sentinel or CrystalDiskInfo to know exactly what's wrong with your hard drive! Both programs are available as portables, too. Cheers, AstroSkipper1 point
-
At every boot, so keep up on that too and see if you can bring that down, as well, could help. Also keep in mind, I'm dealing with failing hard drive and bad sectors. Looking in PCHunter32.exe v1.51, Kernel Module tab, I've Drivers: 146, Hidden drivers: 0, Suspicious DriverObject: 0, Suspicious PE Image: 0. So nothing is suspicious in my drivers. I've this same Windows processes that you (but I do NOT run spoolsv.exe), all is good here, so why you think having svchost issues? I've this same results after chkdsk, all is OK here, no falling drive. PS. Thanks for techgenix.com news link. I've reading "AI Sentience Not Yet Achieved But Useful for Cybersecurity" article very interesting.1 point
-
So, I'll draw a short interim conclusion. As far as I can see, my program package works exactly as described in the documentation. It runs under Windows XP 32 Bit as well as 64 Bit. This was confirmed by @Dave-H, @mina7601, and @NotHereToPlayGames. All further considerations refer to future features. Very good! Then we've already done quite a bit. Let's see what else @George King has to report! And, of course, you can keep testing until the box smokes!1 point
-
Absolutely, I can see exactly why you've done what you've done. For the majority of people, it's absolutely the right way to go. They would have no problem with Min2Tray either, I've just got so used to being able to call up the proxy window with one click on its icon in the tray, and then hiding it with another click on the same icon, that anything different, even one extra click, seems disadvantageous. Oh, and thanks for thinking of me!1 point
-
As a creator of such a program package, you have to think of all users. Clicking to start the proxy has to activate its settings automatically, and closing it, has to deactivate and to clean up its settings automatically, too. Maybe, the user uses other proxies, too. PS: But I thought of you, too. I knew from the previous beta test that you need to run the proxy at Windows startup. That was the reason I wrote in the documentation about the autostart of ProxHTTPSProxy and its delay! Frankly, I do not use or need this feature, but on the other hand, a working and meaningful feature is worth to implement. I will do that in the next release.1 point
-
That's good to know! Automatic deactivation doesn't actually matter for me anyway as I always have the proxy running all the time.1 point
-
Correct! My starter program StartProxy.exe calls the file ProxHTTPSProxy.exe in the main folder, which then calls ProxHTTPSProxy.bat, which in turn calls python37.exe. No mystery! You can see the process tree in your task manager.1 point
-
Yes of course, I wasn't putting that forward as a solution! It was just to demonstrate that the proxy itself can run immediately on boot, it's just ProxHTTPSProxy.exe which seems to have the problem. In fact I've now put StartProxy.exe in the registry run key instead of the batch file, and that works fine too, probably a better thing to do than directly running the batch file. I assume it's the same as invoking 'StartProxHTTPSProxy' in PopMenu. In fact if I run it that way, both ProxHTTPSProxy.exe and python37.exe are running in the Task Manager. That surprised me a bit, as I had assumed that ProxHTTPSProxy.exe would not run in that configuration.1 point
-
Cool. In my tongue the names ending with "a" are rather feminine...hence my confusion.1 point
-
1 point
-
1 point
-
Unfortunately, that's no solution! The starter program ProxHTTPSProxy.bat was created by @cmalex and does not have the feature of ProxHTTPSProxy's automatic activation and deactivation in IE's proxy settings. Check the LAN settings, and you will see! I already tried it and modified it without any success, so far. That's the reason I created my own starter program.1 point
-
XP SP2 x64 NO POSReady! (I am unsure if POSReady is x86-only or not, I do NOT install POSReady on ANY of my computers.)1 point
-
What "flavor" of XP are you running, I wonder if that's the cause of your issue? VANILLA XP SP2 x86? VANILLA XP SP3 x86? VANILLA XP SP2 x86 plus all hotfixes prior to SP3? VANILLA XP SP3 x86 plus all hotfixes prior to POSReady? VANILLA XP SP3 x86 plus all hotfixes prior to POSReady plus POSReady?1 point
-
.NET Core is still supporting Windows 7 for now. But it is hanging on by a thread. But some Qt 6 applications have gone straight to Windows 10 only. And the big thing on Windows 10 seems to be winuser (user32) functions, mostly related to DPI scaling. I should work around those once .NET Core is settled (only thing is that Vista's support for neutral locales is almost non-existent, so I am implementing a neutral locale table). That will take me a few days as I want to ensure that the revised locale support is up-to-snuff and as good as Windows 8/10 (noting that most improvements were done in 7).1 point
-
<OT> Sort of: Acronis was the very best investment I even purchased back in 2011. I just used it today in fact. I partition my hard drive and always back up to that partition so when my C: installation becomes unstable (usually due to the operator error ... :)) I sometimes can't even restart, so, today (I promise this is fact) I went to shutdown after Rogue Killer decided (for me) that my system was corrupt, I knew things were sour when it took forever to even attempt to restart and would not. Luckily I didn't have hold the power button (that is so bad for the equipment) I was able to get to the task manager with control alt delete and there at the top was restart and I was relieved as I just pressed F12 to boot to DVD ( I have the Acronis 2012 DVD ) and booted up and restored my backup from the E Partition (D is the cd) and it takes no more than 15 minuets (give or take) and YAY ... I'm back up. I keep my backups on Flash drives and have several points when I consider worth restoring back to, but I don't even backup new unless I make significant changes. Watch out with Rogue Killer, folks, as it deleted system files. Gosh, I'd hope everyone would consider imaging and cloning their hard drive, because even system restore has left me 'high and dry' when things go wrong. <OT>1 point
-
1 point
-
1 point
-
............... So happy you are here @mina7601 and @msfntor, and hopefully others will pop in and say hello. All folks that posted gave us insight and humility. For me, once somebody enters my thread, I consider they stopped by for a chat and I usually will put on pot of Early Grey Tea, and I don't usually forget when somebody crossed my path as I feel we are did so not by chance, but destiny. I'd like to say I don't get attached easily, but that would be false. We have not always been easy on the eyes here, but we were/are real, and they can't even take that away. Sometimes honesty can't be a brutal realization, but nonetheless, important experiences and lessons come from the honestly of others. At times, we've headed down a dark road, but we cam back around and living proof of being human and alive. Hopefully, others will return and say hello, but if not, I do wish the very best to all and I hold no regret and am glad we've reopened the MSFN café. Come as you are1 point
-
1 point
-
I've attached the updated .CFG for the July 2022 extended kernel below but I haven't tested it so it may or may not work. setup_07252022_not_tested.cfg1 point
-
It works well. I haven't tested properly (forensics of where the browser is connecting to), yet. But it looks promising. I can run it on a custom sp52, and besides browsing without sending data to my isp, I can visit onion services using the new tor protocol -which allows me to get rid of the russian torbrowser repack thingy, which has no source available, so who knows. Thanks!. Your build can be used to replace the tor items in ProxAllium (and for those who want to do so, also the russian repack). With ProxAllium and your build I got rid (bah, I stopped using) AdvOR (closed source, seriously outdated, but still working -I wish I could figure out where/how it launches tor to replace it with your build. Optimally, I would like to see a minimal gui to modify the torrc. Nothing fancy. Also, or alternatively, a hide to tray tweak for the command box (trayit won't do the trick) would be neat too. Thanks again!1 point
-
1 point
-
Wargaming.net Game Center (x64) v22.02.00.9193 confirmed to be working with the Extended Kernel released on July 27, 2022. World of Tanks 1.17.1 is still not working due to lack of DirectX 11.1 interface, while enCore RT v0.2 is working flawlessly, yet crash at medium preset. UPD (March 8, 2023): v23 and newer are failing to start updating or installing the game.1 point
-
Likely won't help much, but sometimes this helps a little as well. https://techgenix.com/aquicktiptoprocesssystemidletasksforcefully/ Also: I do enjoy reading that site for news. https://techgenix.com/top-tech-news/ ~Off Topic~ This is about as good as I can get it for 360 V13 and I am running videos and they are a little choppy but leave the mouse alone and don't touch anything, and don't move at all ... hahahaha! Oh, and.. I DO admit I'm having svchost issues and I'm loading some invalid drivers or something. At chkdsk c: /f/x At every boot, so keep up on that too and see if you can bring that down, as well, could help. Also keep in mind, I'm dealing with failing hard drive and bad sectors.1 point
-
I think .NET Core 6.0.6 is working good now. dotnet --help no longer fails. I will have to test further and work on a couple of minor issues. In the process, I have determined how MS will likely disable .NET Core on Windows 7. Calls to BCryptCreateHash are first done with a flag only supported on Windows 8 and up, then again without the flag if the call fails. They will remove that second fallback call right away in a cleanup of legacy code.1 point
-
New build of BOC/UXP for XP! Test binary: MailNews Win32 https://o.rthost.win/boc-uxp/mailnews.win32-20220730-0abce9fa-uxp-a8454ac78-xpmod.7z BNavigator Win32 https://o.rthost.win/boc-uxp/bnavigator.win32-20220730-0abce9fa-uxp-a8454ac78-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-20220730-id-828aab8-uxp-a8454ac78-xpmod.7z IceApe-UXP(suite) https://o.rthost.win/hbl-uxp/iceape.win32-20220730-id-828aab8-ia-93af9a0-uxp-a8454ac78-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.rthost.win/basilisk/basilisk52-g4.8.win32-git-20220730-3219d2d-uxp-a8454ac78-xpmod.7z Win64 https://o.rthost.win/basilisk/basilisk52-g4.8.win64-git-20220730-3219d2d-uxp-a8454ac78-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-20220730-3219d2d-uxp-a8454ac78-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.6a1.win32-git-20220730-d849524bd-uxp-a8454ac78-xpmod.7z Win32 SSE https://o.rthost.win/palemoon/palemoon-28.10.6a1.win32-git-20220730-d849524bd-uxp-a8454ac78-xpmod-sse.7z Win64 https://o.rthost.win/palemoon/palemoon-28.10.6a1.win64-git-20220730-d849524bd-uxp-a8454ac78-xpmod.7z Official UXP changes picked since my last build: - Issue #1805 - Improve stack size limits for all targets. (5ed7e7d56) - Issue #1805 - Follow-up: provide for Linux builds using rlimit and min/max. (3571cc8de) - Issue #1805 - Follow-up: Include the same headers for Solaris as well to future-proof gcc versions. (065e8bc77) - Issue #1964 - Update libtremor. (34d0e86b6) - Issue #1967 - Remove mozprotocol handler (moz://a easter egg). (584cfbd80) - Issue #1967 - Remove moz://a from mochitest (1694b1b76) - Issue #1962 - Update libtheora. (be2516a09) - Issue #1962 - Follow-up: Fix build issues on Windows. (2a1f9e3ef) - Issue #1962 - Follow-up: Fix 32-bit build and remove unused clang-cl codepath. (dca7d2ff6) - Issue #1971 - Part 1: Update build system for ICU 63.2 upgrade. (8df84683b) - Issue #1971 - Part 2: Update ICU source to 63.2. (1e6921438) - Issue #1971 - Part 3: Update unicharutil perl scripts for Unicode 11 upgrade. (9a4a62c8c) - Issue #1971 - Part 4: Generated files for Unicode 11.0. (196f95dbf) - Issue #1971 - Part 5: Update Spidermonkey for Unicode 11. (c090dd7ce) - Issue #1969 - Implement Intl.RelativeTimeFormat. (3e6cbc6af) - Issue #1975 - Implement Origin header CSRF mitigation. (faa778ec9) - bump version for ICU update (5212cbebd) - [DOM] Add extra check for performance API Next Hop protocol (bf5894586) - [NSS] protect SFTKSlot needLogin with slotLock. (b9084ea29) - [NSS] Avoid potential data race on primary password change. (a77cf423c) - [NSS] Fix uninitialized value in cert_ComputeCertType. (10fdf0e1c) - Issue #1312 - Fix potential crashes in MailNews. (e3aa3c296) No official Pale-Moon changes picked since my last build. No official Basilisk changes picked since my last build. My changes since my last build: - ICU: replace windows related source files with those from mypal68 (ICU 64.2) (3a65ef9ca) - [Basilisk] remove mozProtocolHandler from package (a8454ac78) - skipped `Issue #1966 - Remove support for Firefox Marketplace "apps"' for now as upstream doesn't clean-up remnants completely Update Notice: - You may delete file named icudt58l.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.1 point
-
I have found a new method for those who have a Windows server but I need to test it more often.1 point
-
I don't know how "good" I am but I'm real. I'm a take em or leave em type and people usually leave. Ha! Hope you're well, Draker. Anyways ... we're back open with a new jukebox, but the same classic vinyl records, of course Enjoy you're day/evening and we're open 24/7. Sometimes that coffee was from what was made early in the morning to expect bitter taste. David Hasselhoff walks into a bar and says to the barman, "I want you to call me David Hoff." The barman replies "sure thing, Dave... no hassle."1 point
-
I have pushed the new extended kernel to the usual sites. Now I am working on the next thing and making progress: It is almost done, there are just some issues with BCrypt now, PowerShell 6.0.1 works completely now but that is .NET Core 2.0:1 point
-
Well, it definitely DOESN'T work under Vista SP2 (32-bit); in the main "bin" folder, Sanbrowser.exe chrome_proxy.exe both call functions not present in Vista's kernel32.dll ; things are much worse inside the "92.0.4482.0" subdir: chrome_pwa_launcher.exe notification_helper.exe chrome.dll chrome_elf.dll mojo_core.dll vk_swiftshader.dll ... ALL call (from 1 to as many as 30) missing kernel functions under Vista SP2... E.g. below are DW results for chrome.dll: (14 missing functions in total in kernel32, 5 in user32.dll, 1 in advapi32.dll, 5 in mfplat.dll, 1 in shell32.dll, 1 in cfgmgr32.dll, 1 in powrprof.dll and 2 in mf.dll), and chrome_elf.dll:1 point
-
I think it's unlikely. My understanding was that versions after 13.x would not be XP compatible, and in fact would be 64 bit only. Be very careful if you do run that installer and it works, I tried one installer (13.6 I think) and it installed a lot of unwanted crap on my machine!1 point
-
Support for installing Chromium extensions, saving their settings, as well as keeping cookies and other settings has been implemented: The original objective was to fix the "CultureNotSupported"-related exceptions that prevented .NET Core 5 from working, but under the belief that the .NET and Chromium issues were connected, I worked on solving the issue using Chromium. It turns out that .NET's issues are unrelated.1 point
-
You're very welcome!1 point
-
Many thanks ; totally unaware of that, yet another "file-animal" named , archiving site...1 point
-
You can find it on fileeagle. Link: https://www.fileeagle.com/software/470/Process-Explorer/16.26/1 point
-
... Same story in FileHippo: https://filehippo.com/download_process-explorer/history/ May I ask where exactly did you locate a copy of v16.26 (same question extended to @mina7601 ) ? My search skills produced as a result a Korean blog, where v16.26 is being offered as an attachment ... The 32-bit binary has both sha1+sha256 file signatures of 2019-06-29 ...1 point
-
Thanks for your reply and your find! You're absolutely right, Process Explorer v16.26 is fully functional on Windows XP. I checked the versions on filehorse, and there was no version 16.26. Only 16.22 and then 16.30. Therefore, I couldn't check version 16.26. I thought the list there was complete. Anyway, good find and thanks again! Cheers, AstroSkipper1 point
-
Correction: Process Explorer v16.26 is the last version that works completely on XP, not v16.22.1 point
-
Hhmm i see...but im curious...is this "chrome 360" the same as the original chrome but a higher version ? if so, then i worry it will give me the same BSOD issue i briefly mentioned above with the regular chrome 49 (last version for windows xp) I only use windows xp pro 32 bit. I dont ever want to use 7 or higher for my own personal reasons even though im aware of the negative consequences. I'm still on my Dell Latitude D620 laptop by the way since 2010 to this very day still. - Core 2 Duo T7600 2.33 GHZ, intel graphics, SSD -- The other laptop in that M6400 thread i talked about i officially quit and gave up on that worthless thing cause of it's stupid Sound issue. And i meant about the "Twitch" chats (the popout version i showed) not working anymore in firefox 52.9.1 (not twitter since thats fine thankfully) - does that work in that chrome 360 or the mypal ?? I'm sorry if i de-railed your thread.1 point
-
I know, I saw that. I remain optimistic towards Mypal 68. I am at the point where I acknowledge that my own optimism was perhaps overly optimistic and I am no longer seeing Mypay 68 as the fix-all that I originally perceived it to be. Still early in development so too early to know for sure.1 point
-
Hi @kuja killer, I can confirm that twitter.com and www.deepl.com only works using 360Chrome v13 and higher in Windows XP. All these sites are crap and cumbersome. If you need to access them, use Windows 7 and most recent browsers. I try to avoid these sites. They are badly constructed and sluggish while loading. The good thing is my computer is very old and low on hardware resources, therfore I can identify bad sites very well. Cheers, AstroSkipper1 point
-
I've never owned a tablet nor do I own a smart phone and don't want neither. I prefer a desktop.1 point
-
Of course you'll lose your update history. My suggestion was to make an image of your OS partition to revert back at any time you want. I can restore my whole system in less than a half hour (very old computer, very slow). Your Windows Update history is located in "DataStore.edb". So you can backup this file at first. In your Windows Update Log you can see clearly: 2022-01-27 12:28:48:824 1860 1560 Agent *********** Agent: Initializing Windows Update Agent *********** 2022-01-27 12:28:48:824 1860 1504 Report WARNING: Reporter failed to upload events with hr = 80240004. I guess there is a problem with your Windows Update Agent. I have added a link of "winUpdRestore!v28" right down at the bottom, a more recent version of "winUpdRestore!v23". I used it first. Then you have to reinstall Windows Update Agent. Resetting of SoftwareDistribution folder is not the same. I suggested you: After this procedure you have to reinstall "Restore_WU_XP_2003". Here you have to check if "install.cmd" did its job properly i.e. all commands in "install.cmd" have to be performed properly. Check the correct version of "wuaueng.dll" in both folder system32 and system32\dllcache. Check if all registry entries have been added. If not do it manually by creating a reg file for importing necessary entries from "install.cmd" and copying wuaueng.dll first in folder system32\dllcache and then in folder system32. And what about some posts before where So a lot to do! https://www.mediafire.com/file/xn2a1rlriapkhym/winUpdRestore%21v28.zip/file1 point