Jump to content

NotHereToPlayGames

Member
  • Posts

    5,232
  • Joined

  • Last visited

  • Days Won

    83
  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by NotHereToPlayGames

  1. You could try this ( https://github.com/tc39/proposal-change-array-by-copy/blob/main/polyfill.js ) instead if you want a polyfill that you keep "enabled" all the time for all web sites. Disclaimer that I have not tested this yet.
  2. Interesting. I don't enable any of my polyfills by default. I only have them because of issue web sites posted here at MSFN - I've actually never encountered the need for any of them on my frequently visited web sites. If you find the need for any of them on your frequently visited web site(s), just edit the // @match *://*/* line to match your specific web site(s).
  3. Debatable. But opinions are like butts. We all have one, doesn't mean we want to hear them.
  4. I'll be continuing to use "bookmarks" as I have in the past. As Dave-H mentioned, it is much more standard. Edge and IE are the only browsers that still use "favorites" instead of "bookmarks". I could list a hundred browsers that all use the word "bookmarks" instead of "favorites". I'd have to also list versions, of course, but give me time and I bet I can come up with a hundred. That probably sounds like I'm exaggerating, but I kind of don't think it is. I don't have the time to list them at the moment as I do have a career to maintain. edit: kind of does make me curious, what year/version did Mozilla switch from "favorite" to "bookmark"? what year/version did Chrome switch from "favorite" to "bookmark"? what year/version did Opera switch from "favorite" to "bookmark"? i kind of suspect that "all" browsers used "favorite" back in the day, hmmm...
  5. My no-print issue is Win10 and seems to be ONLY in Win10. I can print from 360Chrome in Win10 with build 2044.
  6. The preview feature would slow my computer to a crawl to the point of forcing a hard-shutdown without the ability to close anything that was open at the time. My Win10 won't print even with the preview re-enabled.
  7. Nobody has pointed it out before but printing from 360Chrome build 2036 (and perhaps all previous builds) does work in XP but fails in Win10. May not be true for "all" systems. This has been resolved in the upcoming build 2044.
  8. If anyone wants the "error codes" page restored, please provide a screencap of when any errors were encountered with the errorpage.zip that another member submitted. All I am seeing is a sh!tlo@d of www. so. com, www. dd. browser. 360. cn, and browser. 360. cn chinese telemetry crap and ZERO "value-add". But maybe I just don't know "how" to FIND any of the errors that some want an "error code page" for ???
  9. The first post in that thread will have a download link once I get it all put together. I was originally targeting this weekend but it may end up being next weekend instead. As far as "primary differences", they're all minor and there has been no "significant" advancements with 360Chrome in over two years. It's v86. Nothing more. Still the best there is for XP but users of newer OSs have more "modern" alternatives to choose from. That said, I actually prefer v86 over everything "newer" and it does EVERYTHING that I actually throw at it. It's not going to do "everything" - but nor does its XP competitors.
  10. From what I am finding, uBOs "badge" is cut off on the bottom and right on even the 13.0 look. Also cut off on Ungoogled Chromium latest-and-greatest on Win10. For now, I'm keeping the XP skin "as-is", the badge cut-off issue is being cut off in over a dozen different skins tried from the 360Chrome's skin page and even Official Ungoogled Chromium does this cut off.
  11. Original build 2036 options.zip is identical to original build 2044 options.zip so our already-modified version from build 2036 can be carried over to build 2044 as-is.
  12. The first-launch ONLY after each and every reboot or resume from hibernate "can't" be a browser issue. *EVERY* browser that I use on *ANY* of the seven computers *ALL* do this first-launch delay. I don't really have a good debug method for this issue, but none of the seven computers have the same video cards. Serpent 52, NM27, NM28, 360Chrome, Ungoogled Chromium - they *ALL* have this first-launch delay, each and every one of them. edit - it would be nice to know why **ALL** browsers on **ALL** of my computers have this first-launch only delay, but since **ALL** browsers do this on my computers, it's perhaps "off-topic" for this thread. edit2 - perhaps I should also point out that **ALL** of my browsers are *portable*, none of my computers are set up with a "default" web browser and none of them use "installed" browser versions.
  13. I'm aware that it's not "normal". But even Ungoogled Chromium does that delay on *ALL* of my *SEVEN* computers.
  14. The en-us.pak file can be copied from build 2036 as all indexes remain the same. It can not be copied from build 1030 as over 300 translation files are indexed differently than from build 1030.
  15. If you truly want to edit the "Add to favorite" in this context menu, this is the 5386 file inside en-us.pak. My release will continue to use "Add to bookmarks..." (with three dots versus one ellipsis) as it has in the past.
  16. Because I will continue to use the "loader" .exe/.ini and this is obtained from the Russian Repack set of files. Agreed. I do not use the snapshot tool and have it removed in all of my releases.
  17. Yep. I prefer to avoid cmd files for this and use the Official Pale Moon Portable loader and file structure and replace the "bin" filder with the extracted fork files.
  18. In that case, use a WinPenPack or PortableApps Chrome and *replace* the bin folder with the extracted Ungoogled Chromium v109. I can compile more detailed "how-to" if needed.
  19. Depends on your definition of "portable". Some people want to login from one computer from a browser stored on a thumb drive, carry the thumb drive to another computer, and still be logged in. That isn't easy to do. If by "portable" you are only seeking no registry entries on the host computer, no favorites stored on the computer, favorites travel with the thumb drive, as examples, then *ANY* Chrome-based browser can do that.
  20. I don't even waste my time trying user agents these days, that's "old school" and modern designers basically only rely on UA for "mobile" version versus "real computer" version. This polyfill will fix that web site for you - // ==UserScript== // @name Inject Change Array by Copy .toSorted() Polyfill [110] // @version 0.0.1 // @match *://*/* // @run-at document-start // @grant none // ==/UserScript== if (!Array.prototype.toSorted) { Array.prototype.toSorted = function (compareFn) { return this.slice().sort(compareFn); }; }
×
×
  • Create New...