Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/22/2023 in all areas

  1. Yes, it is still working, the problem isn't IrfanView per se but rather the plugins. Unfortunately, while the program still supports XP, some of its plugins were either made to leverage on native Windows API to decode some formats that simply don't exist in XP or they were compiled in a non XP compatible way. Luckily, I've encountered only a few isolated cases so far, but still... Same here, but only since early 2000 with Windows98SE. I didn't even know it existed before.
    3 points
  2. The installer for KeePass is compiled with a recent version of Inno Setup, which only runs on Windows 7 AFAIK. Also, update checking may not work on XP, presumably due to outdated cryptographic components. 2.49 version at least launches even on Windows 98, although it exhausted all GDI resources and crashed after opening and scrolling a bit in the Password Quality window. About 1,5 years ago, I experimented with old version of Inno Setup and put together the installer that launches on Windows 9x, offers to install multiple languages, detects .NET Framework and warns the user if suitable version is missing. Back then at least, the installer used the external executable to launch native image compilation process (optimization step on the components selection screen), I figured that was unnecessary as it can be scripted directly with Inno Setup.
    3 points
  3. KB4499184 is a preview (read: beta) of the May 2019 update. I assume that comdlg32 is the source of the problem since that's where the dialogs are located. I'll see if I can reproduce this.
    2 points
  4. The installer calls ngen.exe to generate native image, it's an optimization to improve performance of managed applications. Though I'm not sure if you can tell the difference since KeePass doesn't do much work, but when it's done, you have KeePass.ni.exe on its modules list in Process Hacker. The command is: C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\ngen.exe install "C:\Program Files\KeePass Password Safe 2\KeePass.exe" Reverse process is run with uninstall argument instead of install. The path above assumes 32-bit Windows and .NET Framework 4, for 64-bit, the path to ngen.exe is C:\WINDOWS\Microsoft.NET\Framework64\v4.0.30319\ngen.exe. While 32-bit .NET is there, KeePass will run in 64-bit mode on 64-bit OS. Obviously also use the correct path to KeePass.exe.
    2 points
  5. I use Boot-US for many years to boot different OSs from different partitions. I don't know if it is what you are looking for. This boot manager can be installed on a floppy disk what I did on my old computers. It has so much features I can't describe here. Maybe, you first have a look here: https://www.boot-us.de/eng/ And here is the full documenatation: https://www.boot-us.de/eng/manual_eng.pdf You can manage booting of other OSs such as Linux besides Windows partitions, too. Partitions can be simply or truly hidden. It is possible to set exactly which other logical partitions may be seen when booting from a primary partition.
    2 points
  6. Login as local admin (edit: and set the default applications as desired), then in a admin command prompt run: dism /online /Export-DefaultAppAssociations:"C:\DefaultAppAssociations.xml" This will save the file DefaultAppAssociations.xml to C:\ Then run: dism /online /Import-DefaultAppAssociations:"C:\DefaultAppAssociations.xml" This will set the defaults on all new users who sign into that system but if won't work for users with existing profiles on the system. To check this run: dism /Online /get-DefaultAppAssociations >C:\TEMP\DefaultApps.txt Got this from here. https://community.spiceworks.com/topic/2147839-how-to-set-windows-10-default-programs-for-every-user-with-powershell-script
    2 points
  7. UPDATE: I uninstalled KB4499184 (that caused the issue), rebooted, but the issue is still there. Very strange.
    2 points
  8. Yes, I tried all kernels, including March, all is fine, except this smal issue, I have only a handful of 32 bit apps, and MKVToolNix 32 bit works fine. So I can't say for sure, but it seems it's something wrong with shell32.dll. Maybe it doesn't match the newer versions, but it's strange, because that update is from May 2019.
    2 points
  9. Hi@win32, for the first time a small issue with the kernel, short story, I had to install an update KB4499184, to be able to run a game, now open/save dialog doesn't work in most apps, chrome for example. This is with all kernels, but currently I'm on v06102022. I also have the platform and DX11 update, that's all. Thanks for looking into this.
    2 points
  10. Has anyone here also noticed a sudden freeze of the New Moon 28 browser from time to time? It happens rarely and started with one of the latter releases. I can't say exactly with which one, nor under which conditions this problem occurs. I am interested first of all in whether it is only me who is affected or others as well.
    2 points
  11. New NewMoon 27 Build! 32bit https://o.rthost.win/palemoon/palemoon-27.10.0.win32-git-20230722-159d7b9c2f-xpmod.7z 32bit SSE https://o.rthost.win/palemoon/palemoon-27.10.0.win32-git-20230722-159d7b9c2f-xpmod-sse.7z 32bit noSSE https://o.rthost.win/palemoon/palemoon-27.10.0.win32-git-20230722-159d7b9c2f-xpmod-ia32.7z 64bit https://o.rthost.win/palemoon/palemoon-27.10.0.win64-git-20230722-159d7b9c2f-xpmod.7z source repo: https://github.com/roytam1/palemoon27 repo changes since my last build: - import changes from `dev' branch of rmottola/Arctic-Fox: - Bug 1217835 - Rewrite some code in CanvasRenderingContext2D::GetImageDataArray to avoid build warnings; r=gw280 (cedba0b14a) - Bug 1232864 - Cauterize and release WebGL 2 to Nightly. - r=jrmuizel (5a16387f1d) - Bug 1229585 - Add helpful error text for fb incompleteness. - r=kamidphish (1a3d7505e2) - Bug 1231303 - Moz2Dify nsFilterInstance. r=roc. (44ec4c5df6) - Bug 1229235 - Make RedirectChannelRegistrar thread-safe. r=jduell (5acca6a770) - Bug 1211090 - Use Buffered IO for PrefixSet load/store. r=froydnj (00720fe291) - Bug 1211090 - Add fallocate support to nsIOutputFileStream and use it. r=froydnj (6a49aa4a5f) - Bug 1211090 - Don't fail to open databases if we can't do buffered IO. r=froydnj (70ab38e03b) - Bug 1223808 - part 3 - replace nsAutoArrayPtr<T> with UniquePtr<T[]> in netwerk/; r=mcmanus (4a1d880135) - Bug 1223808 - part 1 - optimize creating a WebSocketFrame with a payload; r=mcmanus (9a046a6f0a) - Bug 1223808 - part 2 - use UniquePtr<uint8_t[]> instead of nsAutoArrayPtr<SHA1Sum::Hash> in HandleHashKey; r=michal (c6a0f6d5d3) - Bug 1167053 - Convert NetUtil.newChannel2 callsites to use new API - remove newChannel2,asyncFetch2 (r=sicking,paolo) (875b9c78f0) - Bug 1185982 - Remove the unused NotifyNetworkActivity::mObs member; r=bagder (f09d2676f7) - bits of Bug 1152597 - Icons are shown for some apps. (9a289ab9ec) - Bug 1223231 - Use channel.asyncOpen2 in devtools/client/shared/AppCacheUtils.jsm (r=sicking) (5c635d797c) - Bug 1208905 - Fix a condition in PresentationResponderLoadingCallback::Init; r=baku (ff84b8a595) - Bug 1231677 - verify the return of mDiscoveryTimer->Init, if it faild exit function with error code. r=jst (04b8be172c) - Bug 1199564 - start/stop mDNS on demand - v3. r=mcmanus (66d7ef06e6) - Bug 1225726 - enable nsDNSServiceDiscovery on OS X. r=mcmanus. (01ea13e4a6) - Bug 1172383 - Stop mDNS properly during destruction. r=mcmanus (c041817b7e) - Bug 1198058 - Fix crashes inspecting loadGroups in browser toolbox. r=mcmanus (462b5aa8bd) - Bug 1220607 - Expand on the nsILoadGroup interface's comment to indicate how it is used. r=bz IGNORE IDL (49a95cc217) - use response for response (348055fc69) - Remove some old clobber-workarounds. No bug. (db7e7c4773) - Bug 280280 - Make "no proxy for" do domain comparison. r=bagder (4804e39fd6) - backout f600f0cd7bb3 (Bug 1170646) because of Thunderbird regressions with OSX, r=michal (d43ba00896) - Bug 1220215 - Add '#' between client id and suffix in appcache groud id, r=jduell (240fcec72a) - Bug 1198792 - Clear Application Cache internal hashtables on Clear Recent History, r=jduell (1313393dc5) - Bug 1222782 - TSan: data race netwerk/cache2/CacheIOThread.cpp:148 Target (race on mXPCOMThread), r=jseward (d56470a300) - Bug 1190951 - TSan: data race netwerk/cache2/CacheIndex.cpp:1397 CacheIndex::IsUpToDate, r=valentin.gosu (24934e1885) (18ad48cb0e) - import changes from `dev' branch of rmottola/Arctic-Fox: - Bug 967693 - Temporarily turn on HTTP cache v2 on for Desktop Firefox Nightly users, r=jduell+ehsan (0fb43bca09) - Bug 1230939 - check the return of sGlobalEntryTables->Get(aContextKey, &diskEntries). r=mayhemer (da62f5bd04) - fix header include (52d6efa786) - Bug 1193605 - Part 3: do not stop non-started service; r=mcmanus (dfe2187f22) - Bug 1193605 - Part 4: add UUID for listeners; r=mcmanus (fee78fd19d) - Bug 1214176 - fix typo in _onOffer. r=junior. (b388d1f2a6) - align test to 1216398 (74d505d1d6) - Bug 1228457 create pref to allow blocking .onion at dns level rfc 7687 r=valentin.gosu (521aab1e58) - Bug 1216370 - For safety and searchability, define the nsHostResolver::RES_* enum in terms of the nsIDNSService::RESOLVE_* enum. r=mayhemer (84c22f815f) - Bug 1194763 - Ensure non-cluster-start flag is set properly for a run-initial supplementary-plane combining mark when shaping text. r=jdaggett (17c3ad163d) - Bug 1168176 - Mark gfxFontShaper::mFont as MOZ_NON_OWNING_REF. r=jtd (0f3ca78c16) - Bug 1167403 - Mark gfxFont::GlyphChangeObserver::mFont as MOZ_NON_OWNING_REF. r=jtd (ec77538943) - align gfxContext to pre-1232822 (part 6) (bb7fa256c9) - Bug 1231889 - Moz2Dify gfxWindowsNativeDrawing::PaintToContext(). r=mattwoodrow. (69b1d62395) - Bug 1231864 (part 1) - Remove useless GetCairo() call in gfxWindowsNativeDrawing::BeginNativeDrawing(). r=mattwoodrow. (aa3017c392) - Bug 1231864 (part 2) - Clean up gfxWindowsNativeDrawing::BeginNativeDrawing(). r=mattwoodrow. (860a81ba59) - Bug 1225682 - Don't use nsAuto{,C}String as class member variables in gfx/. r=jrmuizel (a1cc11b749) - Bug 1230611 - Make gfxWindowsPlatform::SupportsApzTouchInput use a pref cache to speed it up. r=dvander (4026e5dfe8) - Bug 1193842 - Delete touch resampling preference and non resampling paths. r=kats (ff58c7753c) - Bug 1177335 - Skip resampling if the time difference of touches is less than 2ms. (b98e40343d) - Bug 1204518 - Fix warnings in widget/gonk/. r=mwu. (ddc13a4c24) - Bug 1231832. Make IsActive work on Querys that have not begun. r=jgilbert (4b70a8fb0b) - Bug 1218881. Enforce queries' new availability semantics. r=jgilbert (503bf80f8b) - Bug 1233858 - Part 1 - ensure Skia's SkGraphics::Init is called from gfxPlatform::Init. r=jmuizelaar (db5fde96b1) - Bug 1233858 -Part 2 - implement runtime-detected SSE2 optimizations for Skia. r=jmuizelaar (3c9ebaa64d) - Bug 1233858 - work around Skia __vectorcall bugs on Win32. r=jmuizelaar (b5b5e2bbcf) - Bug 1222569 - remove unused function from gfxPlatformFontList.cpp; r=Bas (68e1615eb2) - Bug 1234566: Use LoadLibraryA instead of LoadLibrary in some skia Windows code to allow UNICODE to be defined. r=lsalzman (e45bf51ef7) - Bug 1156742 Part 1: Change Moz2D recording, so that it can be used in isolation. r=bas (f02fd4992b) - Bug 1156742 Part 2: Make gfx thebes/gl/2d work with UNICODE defined. r=bas, r=glandium (8fca45d9a3) - Bug 1156742 Part 3: Add support for FontType::CAIRO to CreateScaledFontForTrueTypeData on Windows. r=bas (863ea539c4) - Bug 1156742 Part 4: Add an in memory DrawEventRecorder. r=bas (c9196512a1) - Bug 1156742 Part 5: Add a skeleton RemotePrintJob. r=mconley (aa48df9f32) - Bug 1156742 Part 6: Add RemotePrintJob to PrintSession and PrintData. r=roc, r=mconley (607a3e6b9b) - Bug 1233444 - add override declarations for widget/windows/; r=roc (edab847cb0) - Bug 1156742 Part 7: Refactor nsDeviceContext.cpp to use printing surface for size and nsIDeviceContextSpec for DPI and scale. r=roc (ec6ff3d592) - Bug 1156742 Part 8: Change gfxWindowsSurface, so that a non-printing surface can be used when recording a print. r=roc (1ab167635e) - Bug 1156742 Part 9: Add a new nsIDeviceContextSpec for proxied printing. r=roc (11c3909a8f) - Bug 1156742 Part 10: Allow RemotePrintJob to influence nsPagePrintTimer. r=roc (c658e96338) - Bug 1156742 Part 11: Allow RemotePrintJobChild to abort the print. r=roc (30f3e9bce4) - Bug 1156742 Part 12: Record CreateSimilarDrawTarget separately for Moz2D. r=bas (a978b691c3) - Bug 1156742 Part 13: Create a Moz2D PrintTranslator. r=bas (1eca4e9b33) - Bug 1156742 Part 14: Complete RemotePrintJob using PrintTranslator. r=mconley (7db80f0ba7) - Bug 1156742 Part 15: Add pref for turning on printing via the parent process. r=mconley (e3dbf281ea) - Bug 1156742 Part 16: Add recording and forwarding of Matrix attribute set for Moz2D recording. r=bas (cd5da598ea) - Bug 1156742 Part 17: Add virtual destructor to RecorededEvent and fix subsequent crash with DWrite playback fonts. r=bas (c20a0b84fc) - Bug 1156742 Part 18: Fix the way we hold custom font data so that they can be recorded with Moz2D. r=bas (54b4630927) - Bug 1156742 Part 19: Implement GetFontFileData for ScaledFontWin. r=bas (f1df40b31b) - Bug 1156742 Part 20: Move Moz2D PreferenceAccess into its own header. r=bas (0afdff8e14) - Bug 1156742 Part 21: Use GetDirect3D11Device instead of DrawTargetD2D::GetDWriteFactory to determine if DWrite fonts should be used. r=Bas (0c87a5866d) - Bug 1156742 Part 22: Change ScaledFontDWrite to support creation from TrueType Collection data. r=bas (5f2c607e64) - Bug 1156742 Part 23: Assert in PrintTranslator when a lookup fails. r=bas (72e24c789f) - Bug 1156742 Part 24: Add new Recorded event to record font data. r=bas (a0c6f951aa) - Bug 1156742 Part 25: Flip the big switch and wait for the lightning. r=mconley (082a1a3ede) - Bug 1203232 - Fix -Wshadow warnings in some ipc/chromium headers. r=njn (018499b8a1) - Bug 1089837 - Make IPC::Message use MOZ_COUNT_CTOR/DTOR. r=jld (124e011902) - Bug 1235234 - Fix unintentional switch fallthrough in ipc/chromium/ found by -Wimplicit-fallthrough warning. r=gcp (af37d85c1c) - Bug 1207498 - Part 2: Remove use of expression closure from tests in toolkit/components/. r=Gijs (98915956bd) - Bug 1157282 - Add test coverage for telemetry histogram recording. r=gfritzsche (f403b07c7f) - Bug 1228147: part 1: Add telemetry RecordingEnabled support. r=gfritzsche f=froydnj (610c92394f) - Bug 1228147: part 2: Add telemetry probe for synchronous scroll. r=kats (6816099c37) - Bug 1201492 - Remove extended_statistics_ok from Telemetry histograms. r=dexter (f7f991249f) - Bug 842894 - Support DirectWrite using the Skia backend. r=bas (f2487cf863) (159d7b9c2f)
    2 points
  12. I am, but I haven't been able to respond because there was no home Internet access for a few days here.
    1 point
  13. You should to try. But i think no problem if 3.5 installed after 4.0 .
    1 point
  14. Sounds like you just need a theme. Any SeaMonkey theme should work, although you'll probably need to modify the install.rdf file in the .xpi archive. I think instructions on modifying install.rdf are available in one of the earlier "parts" of this thread. Or you could try IceApe, whose default theme resembles the original one.
    1 point
  15. There are also these: https://github.com/DanysysTeam/SFTA https://github.com/DanysysTeam/PS-SFTA the secret hash seems to be not that much secret if it can be generated by a Powershell or Powerbasic script. jaclaz
    1 point
  16. this is reason why i request it to fix title bar, it happen to me but with classic theme, and feodor2 did fix it, here what it looks like in new release, starting with 68.13.1b, and now 68.13.2b
    1 point
  17. My sudden freezes last as long as I have killed the process palemoon.exe. The browser does not regenerate by itself. Restarting New Moon 28 then is no problem, though. But I can't really say under which circumstances this happens. Months ago, I didn't have that problem. Anyway! I'll try to observe that more attentively next time it freezes again.
    1 point
  18. Please calm down, I only wrote that I liked that colour. Would it a bother if ask, I read you tried chinese catsxp browser, could you tell me, if there's a similar extension for 360, where it would show a similar open/save dialog, like in catsxp (when you save a jpeg file, for example). I just thought it might be, cause they're similar, thanks.
    1 point
  19. That's because that is the INACTIVE WINDOW title bar and icons. When ACTIVE, Mypal's title bar and icons are EXACTLY IDENTICAL to the title bar and icons of my 360Chrome skin !!! My INACTIVE WINDOW 360Chrome skin is also IDENTICAL to Mypal's INACTIVE window. And the Mypaly title bar being TALLER than a STANDARD title bar in XP is one more reason I will not be using it! The min/max/restore/exit icons are TOO TALL and DO NOT MATCH the other 99.9% of applications on my computer. XP icons and title bar should look like everything else on my XP. One program should not look different than another! THAT is the purpose of my XP skin. Nothing more, nothing less. Will not be discussing futher.
    1 point
  20. I do have a feeling official Pale Moon has gotten choppier with recent updates, but I only notice it at home on a 32-bit build. At work, I have a beefier computer and use AVX2 build of Pale Moon. There it doesn't happen as frequently, even though I have over 40 tabs open, most of them (about 2/3) in the unloaded state, but still, I put more strain on the browser at work than I do at home. Maybe it's time for a new computer.
    1 point
  21. On this screenshot XP skin looks like it needs to be, soft pastel colours. Neutral. not distracting. Is this the skin you're going to port?
    1 point
  22. Now I noticed "Ask where to save each file before downloading" doesn't work anymore. Apps like the German MKVToolNix 74.0.0 work fine though. It's mostly a browser and book readers based on chrome issue.
    1 point
  23. This "XP" skin is very bright and has acid colours, otherwise I have nothing against XP and its themes. It's just distracting, I prefer to look at websites. not browser skins. My opinion, skins must be more neutral.
    1 point
  24. Yep! You bet your butt! It's not that uncommon. Look at the reaction by non-XP users (at dozens of sites, not just here at MSFN) that will not use a 360Chrome browser because of it having an XP skin. That is not really any different, is it? We all have out "likes" and "dislikes" and we should not expect them to "make sense" to others. Basically akin to "the heart wants what the heart wants" when you see people in an ABUSIVE relationship but STAY because "the heart wants what the heart wants".
    1 point
  25. The problem of add printer has resolved in the latest version of extended kernel 3.1j5.
    1 point
  26. Quite possible. But I do NOT use nor "support" single-process browsers in 2023! Unlike 360Chrome, everyone can decide for themselves whether they want to use Mypal 68 in single-process or multiprocess mode. I only said that I prefer the very stable single-process mode because of my low-power Windows XP computer. But this does not mean that multiprocess mode is unstable. On the contrary! It is supposed to be quite stable by now. With Mypal 68, the code, especially with regard to the JavaScript engine, which is now at level 78, is constantly being developed and corrected by @feodor2. Maybe, your observations in terms of stability are not up-to-date. Here is a link to the most recent release of Mypal 68 in the version 68.13.2b: https://github.com/Feodor2/Mypal68/releases/download/68.13.2b/mypal-68.13.2.en-US.win32.zip :OT I see you like my self-created smiley I allowed you to grab. Enjoy it! :End of OT
    1 point
  27. Having never used the others, I can't really comment. I just found OrangeMonkey very easy to use, with a very good user interface.
    1 point
  28. It would be strange if you didn't. That is simply not true. Mypal 68 is very stable in single-process mode. Moreover, @feodor2 has made a special effort in the last two releases to ensure stability even in multi-process mode, apparently successfully. And the best of all, this browser is actively being developed further . I personally do not use this browser in multiprocess mode at all. But all I can say is that Mypal 68 in single-process mode runs super stable and is the only browser in my Windows XP system that has not crashed once. I can't say that about any other browser. @roytam1's browsers are absolutely great, but Google service are always problematic on these browsers. Google stuff works without any problems on Android tablets and smartphones. I am additionally an Android user, and I am writing this comment from my Android tablet as most of my posts. But, I personally never used Google Voice. No trust, no need! I talk to others either personally or call them by (smart)phone.
    1 point
  29. You can simply disable that shitt Chat using registry: HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Chat Create dword key : ChatIcon Value : 3 It will remove the chat icon from both settings and from taskbar. Just remove the icon first and use the key. Otherwise it will remain on taskbar and you can't even remove it (If Windows chat won't exit, create it)
    1 point
  30. BTW there is a PR ( https://repo.palemoon.org/MoonchildProductions/UXP/pulls/2276 ) for some JS BigInt support, but it is too late to get in my tree so there will be no UXP based build tomorrow.
    1 point
  31. I am the developer of Basilisk as of about a year ago. Moonchild is no longer involved with Basilisk directly. I think you should focus on MyPal 68 for now until you think it is stable enough to divide time between two browsers. Until then people can always use Serpent if they need a Firefox 52 type browser for Windows XP. I use Serpent on my Windows 2000 gaming PC with the BWC extended kernel. I'm obviously biased since I am the developer of Basilisk, but it would be cool to see Centaury continue or restart development at some point in the future if you ever have the time.
    1 point
  32. Hello @feodor2! I would be very happy if Mypal 68 was completely finished first. There are still a few things missing, such as automatic updating of extensions, Internationalisation & Localisation, and so on. But I would be very pleased about further development on Centaury and Waterfox, too. The more different choices in Windows XP, the better. Especially if the coder is such talented as you.
    1 point
  33. New build of Serpent/UXP for XP! Test binary: Win32 https://o.rthost.win/basilisk/basilisk52-g4.8.win32-git-20230715-3219d2d-uxp-787a64cf9-xpmod.7z Win64 https://o.rthost.win/basilisk/basilisk52-g4.8.win64-git-20230715-3219d2d-uxp-787a64cf9-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-20230715-3219d2d-uxp-787a64cf9-xpmod-ia32.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/ia32 NM28XP build: Win32 https://o.rthost.win/palemoon/palemoon-28.10.7a1.win32-git-20230715-d849524bd-uxp-787a64cf9-xpmod.7z Win32 IA32 https://o.rthost.win/palemoon/palemoon-28.10.7a1.win32-git-20230715-d849524bd-uxp-787a64cf9-xpmod-ia32.7z Win32 SSE https://o.rthost.win/palemoon/palemoon-28.10.7a1.win32-git-20230715-d849524bd-uxp-787a64cf9-xpmod-sse.7z Win64 https://o.rthost.win/palemoon/palemoon-28.10.7a1.win64-git-20230715-d849524bd-uxp-787a64cf9-xpmod.7z Official UXP changes picked since my last build: - No Issue - Fix debug builds on ARM Mac. mach_override used by the IO Poisoner used in debug mode is not support on ARM. https://bugzilla.mozilla.org/show_bug.cgi?id=1658385 (ffa0c4d86) - Issue #2268 - Fix Mac packaging by making the individual parts configurable. Add --with-macbundle-entitlement= to specify alternate entitlements or "none" Add --with-macbundle-type=hybrid to use the old DMG format. (eb2cca724) - Issue #2255 - Add support for Maybe<T&> https://bugzilla.mozilla.org/show_bug.cgi?id=1620568 Make Maybe<T>::emplace() work when T is const https://bugzilla.mozilla.org/show_bug.cgi?id=1335780 (efde4d468) - Issue #2255 - Use Maybe<> in the Performance API. (1f5eaee10) - Issue #2255 - Fix build bustage on Linux. Need #include <utility> to ensure std::forward is available. (323007ec3) - Issue #2271 - Separate cloning of native and interpreted functions (3eb7729d0) - Issue #2271 - Use declared names of self-hosted functions for cloning (76052fcda) No official Pale-Moon changes picked since my last build. Official Basilisk changes picked since my last build: - [Basilisk] Add pref to control history menu length. (11d652975) - [Basilisk] Follow-up: Don't show link items when pref is less than 1. (ab1a1e893) - [Basilisk] Follow-up: Throw errors on invalid values. (803bde238) - [Basilisk] Front-end fixes (748cac6e8) My changes picked since my last build: - [Basilisk] fix missing closing brace in function HistoryMenu from previous commits (cf35c4742) pdate Notice: - You may delete file named icudt*.dat inside program folder when updating from old releases. * Notice: From now on, UXP rev will point to `custom` branch of my UXP repo instead of MCP UXP repo, while "official UXP changes" shows only `tracking` branch changes.
    1 point
  34. Personally I recommend NOT using GPT on XP at all. Either learn to live with internal hard disks smaller than 2.2 TB or find an external USB that exposes 4kb sized sectors and compatible with MBR up to 17 TB or so. Now, finding these external USB enclosures might be unfortunately really tricky as producers/sellers are unlikely to highlight how their controller works. On this thread where the matter is discussed on superuser there are a couple hints, but nothing "exact" on the make/models: https://superuser.com/questions/1271871/4k-emulation-sata-usb-controllers There is yet another option, use (if you can find one) a native 4K drive (that does not do "512e" emulation), I believe they exist only in largish sizes (8 TB and more) but really cannot say. Remember that 4kb drives won't normally be bootable with MBR. jaclaz
    1 point
  35. New NewMoon 27 Build! 32bit https://o.rthost.win/palemoon/palemoon-27.10.0.win32-git-20230708-7e7ba08548-xpmod.7z 32bit SSE https://o.rthost.win/palemoon/palemoon-27.10.0.win32-git-20230708-7e7ba08548-xpmod-sse.7z 32bit noSSE https://o.rthost.win/palemoon/palemoon-27.10.0.win32-git-20230708-7e7ba08548-xpmod-ia32.7z 64bit https://o.rthost.win/palemoon/palemoon-27.10.0.win64-git-20230708-7e7ba08548-xpmod.7z source repo: https://github.com/roytam1/palemoon27 repo changes since my last build: - import changes from `dev' branch of rmottola/Arctic-Fox: - Bug 1219868: Don't warn for CreateAnonymousContent failure (due to e.g. detecting & breaking <use> reference loops). r=jwatt (8edb175af4) - Bug 1165750 - metadata tag should be allowed in clipPath. r=jwatt (74792cbad7) - Bug 1212986 - Background ChildImpl should delete its Transport. r=mrbkap (57c74ee5bc) - Bug 1197306 - remove PR_snprintf calls in ipc/; r=froydnj (3ebc46dd12) - some crashreporter stuff (1687708511) - Bug 1198450 - GCC (mingw) fixup. (1e49f06d45) - more missing parts of Bug 1132072 - Tab switch refactoring (r=mconley) (8a8fd8e42a) - Bug 1231224 part 3 - Fix some append() calls in Odin to handle OOM. r=bbouvier (b545158fa2) - Bug 1231624 - properly gate SAB+atomics in asm.js. r=luke (0dd4bf9c3f) - Bug 1233863 - ARM64: Don't advertise asm.js availability. r=luke (650ed7514a) - Bug 1215360 - Render canvas anonymous content on top of the top layer. r=roc (4a898b09da) - Bug 1156104 - Mark nsROCSSPrimitiveValue::m{Color,Value,URI} as MOZ_OWNING_REF; r=dbaron (a054bd5ffd) - Bug 1156104 follow-up: forgot to actually include mURI (12e04ea513) - style (9244bffe45) - Bug 1144501 - Take account of orthogonal writing modes when adjusting available size to reflow a child frame. r=smontagu (173ae07788) - Bug 994418 - Renumber list items when computing intrinsic isize. r=roc (99d61845ba) - Bug 1158549 - Properly apply min/max constraints to block-size in vertical writing modes. r=smontagu (7e2d4f30b9) - Bug 790260 - Make CollectFloats remove the IS_PUSHED_FLOAT bit in case the float was collected from the PushedFloats list. r=roc (37053c8302) - Bug 1153695 - Wrap nsAutoOOFFrameList in a scope to ensure its dtor runs before the VerifyOverflowSituation() call (to avoid frames appearing to be on two child lists). r=roc (d1638a1e12) - Bug 1145768 - Use the right begin() iterator to compare with. r=roc (8fe6131557) - Bug 1167145 - Check result of PrevInFlow() before trying to call a method on it. r=dbaron (e8c6922517) (ba09d77f1c) - import changes from `dev' branch of rmottola/Arctic-Fox: - Bug 1119049 - Keyboard shortcuts should work in MediaDocuments without explicitly focusing the media element. r=bz (46be3d5343) - fix (3ade1708af) - Bug 967982 - Show findbar after unsuccessful Find Again [r=mikedeboer] (8f228f14a1) - Bug 1071631 - fix findbar re-filling in last character, r=mikedeboer (1dcea48088) - Bug 1214249 - Set MOZ_FLOAT_ABI in armv6 case r=glandium (8c53df59f6) - Bug 1223093 - Bump required rustc version to 1.4. r=mshal (2e116f0dc6) - Bug 1208566 - require Rust 1.5 for --enable-rust builds; r=mshal (091c824772) - bump gcc version to 4.4 and use e.g. MacPorts gcc for safety (1af814d7bd) - reorder and fix (c74b24dfbf) - Bug 1043112 - Allow b2g to core dump when signal permits. r=jld (f5afeb0051) - Bug 1190965 - Restrict syscalls in nsProfileLock to Linux. r=jld (9ac892b4eb) - Bug 1227569 - Remove unsupported OpenVMS code. r=mccr8 (ea080668c9) - Bug 1227248 - Part 1: Allow extending StrictOrderingOnAppendListWithFlags. r=gps (52260fd46d) - Bug 1163358 - Add "psm" tag to PSM xpcshell and mochitest manifests. r=dkeeler (aa31fa4e2f) - Bug 1167254 - Convert test_bug234856.html mochitest to an xpcshell test. r=keeler (1f20c9f997) - Bug 1169195 - Convert test_bug644006.html mochitest to an xpcshell test. r=keeler (f391df2ed5) - bug 1181376 - convert test_bug480619.html to an xpcshell test r=mgoodwin (3bb1a3b762) - Bug 1167866 - Add result strings to PSM test_cert* xpcshell tests. r=keeler (74743ab236) - Bug 1171819 - Convert test_cert_eku-*.js to generate certificates at build time. r=keeler (9aea62b0dc) - bug 1203312 - split tlsserver certificates into ocsp_certs and bad_certs r=mgoodwin (599437ece7) - bug 1209695 - fold mochitest test_bug413909.html into xpcshell test_cert_overrides.js r=mgoodwin (cd5769201b) - bug 1187029 - convert test_bug480509.html to an xpcshell test r=jcj (966cb02692) - bug 1174292 - convert test_cert_version.js to generate certificates at build time r=Cykesiopka (7acb99f5ee) - bug 1173565 - convert test_pinning_dynamic.js to generate certificates at build time r=Cykesiopka (cf5844376a) - bug 1178988 - convert test_ocsp_url to generate certificates at build time r=Cykesiopka (de5554cb7b) - bug 1189427 - convert test_ocsp_fetch_method.js to generate certificates at build time r=mgoodwin (9955a340fa) - bug 1194013 - convert test_name_constraints.js to generate certificates at build time r=Cykesiopka,mgoodwin (0060e4232f) - bug 1196853 - convert test_cert_signatures.js to generate certificat s at build time r=jcj (ce0ab9e63a) - bug 1190603 - convert test_keysize.js to generate certificates at build time r=Cykesiopka (3dd9972c8f) - Bug 1228794 - Convert test_getchain.js to generate certificates at build time. r=keeler (cf6b4d3c47) - Bug 901698 - Some tests for OCSP-must-staple; r=keeler (4f51b34bee) - Bug 1179678 - Add result strings to misc PSM xpcshell tests. r=keeler (a2142e0ca1) - Bug 1205962 - Address some pylint complaints about pycert.py and pykey.py, r=keeler (190cdb0e4a) - Bug 1218999 - Back out changeset 5f32b2bcfa43 (bug 1188468) in favor of a more efficient solution. r=glandium (195e060c30) - Bug 1222903 - Reject EV status for EV EE certs that are valid for longer than 27 months as well. r=keeler (811b0bcc46) - Bug 1231315 - Build CONFIGURE_DEFINE_FILES at build time instead of during configure. r=gps (5242734649) - gradle remove (b745c7b2e4) - Bug 1232421 - force matching the start of the line for comments, r=glandium (de93f61f91) - Bug 1232421 - followup: fix test to not use 'inline comments' which are not supported elsewhere, rs=bustage on a CLOSED TREE (9e34a9d721) - Bug 1172645 - Make mozbuild's setup.py work; r=glandium (b73b656574) - bug 1166976 - add pyasn1-modules python library r=ted,gerv (24c7f3253f) - bug 1166976 - add Python-RSA python library r=ted,gerv (9628d1583f) - bug 1166976 - generate some PSM xpcshell test certificates at build time r=Cykesiopka,mgoodwin,froydnj (af4744b19d) - Bug 1224478 - Replace do_check_* calls with their Assert.jsm equivalents in PSM xpcshell tests. r=keeler (6846617e65) - bug 975763 - move test_certificate_overrides.html to test_cert_override_bits_mismatches.js r=mgoodwin (4ba930e064) - Bug 1171820 - Convert test_bug483440.html mochitest to an xpcshell test. r=keeler (d41a63cd13) - Bug 1147726: Disable test_keysize_ev.js on slow B2G Emulator debug builds. r=dkeeler (df54c1bbc8) - Bug 1147725 - Disable test_ocsp_fetch_method.js and test_ocsp_url.js on slow B2G Emulator debug builds. r=keeler (56e71d8d7f) - bug 1081128 - test_pinning.js takes ~300 seconds on b2g debug emulator - request a longer timeout for it r=Cykesiopka (20ecf7ca8b) - Bug 1145679 - Part 2 - Tests. r=keeler (046b88cd37) - Bug 1227248 - Part 2: Add GeneratedTest{Certificate,Key} mozbuild templates. r=gps (810848b3bc) - Bug 1227248 - Part 3: Make GeneratedTest{Certificate,Key} no-op when --disable-compile-environment. r=gps (563c26d64b) - Bug 1130413 - Remove unused nsITokenPasswordDialogs::GetPassword() function. r=jjones (0cff903788) - Bug 1157515 - CipherSuiteChangeObserver should clean itself up. r=keeler (e9175e8f89) - Bug 1215779 - Remove broken (non-EC) DSA keygen code. r=keeler (98a09304c1) - bug 1215270 - remove some unused functions from nsNSSShutDown.h r=Cykesiopka (ea0e9566f2) - bug 1215690 - remove nsPSMUITracker r=Cykesiopka r=mgoodwin (98ea9b8481) - bug 1205767 - prevent memory leak when generating an EC key with <keygen> r=ttaubert (3be4b5f545) - Bug 488480 - Correct documentation about the function hasMatchingOverride() in nsICertOverrideService.idl. Original patch by Johnathan Nightingale. r=keeler (bf2b16f2c0) - Bug 629558 - Pref to make Intermediate Cert Store memory-only. r=keeler (19632e2fd6) - typo (86093804e3) - Bug 278689 - Multiple Certificates with the same subject are not shown in the digital signature select cert combo (only one is shown) r=dkeeler (c5984b6857) (7e7ba08548)
    1 point
  36. It's not a bickering fest, wake up. Because it's not related to this topic. What are you all talking about for the last two pages, at least, it's just spam and has zero relation to this topic. Absolutely true!
    1 point
  37. ... You need the zip CLI of the Info-ZIP utility; Windows binaries courtesy of the German developer Dirk Paehl: https://www.paehld.de/open_source/?Old_programs___ZIP_UNZIP I myself use the 3.1d26+beta version ... 1. Place zip.exe adjacent to extracted directory "omni" 2. CD in the Windows Command Prompt to inside the "omni" DIR; then: "..\zip" -qr9XD "..\omni.ja" * Archive omni.ja created besides the zip.exe binary; NB: this archive is still "un-optimised", so it then needs to be additionally "optimised"... 3. Place the py2.7 script "optimizejars.py" next to zipped archive "omni.ja" 4. With py2.7 installed, execute: python "optimizejars.py" --optimize ./ ./ ./ A copy of that script has been uploaded here ...
    1 point
  38. @Dave-H I know and that for a long time. And therefore I asked you if I were allowed to upload HTTPSProxy due to the fact that @Thomas S. hadn't been here for a long time and he is the author. What do you think? You are a Super Moderator and I think you'll know if I am allowed to or not.
    1 point
  39. For revoked Certificate Update "rvkroots.exe" Microsoft download (http://www.microsoft.com/download/details.aspx?id=41542), unzip to a folder (e.g. with WinRAR). In "rvkroots.inf" the entry in the string VERSION should be changed to "5,0,2195,0" and the VER entry changed to "005". The next step is download the "http://www.download.windowsupdate.com/msdownload/update/v3/static/trustedr/en/disallowedcert.sst" and paste the unzipped folder and replace older file. Then with e.g. (Create Self-Extracting Archive) WinRAR all files in the folder to an archive option SFX with the following comment: TempMode Silent=1 Overwrite=1 Setup=Rundll32.exe advpack.dll,LaunchINFSection rvkroots.inf,DefaultInstall pack and you have a current update for blocking unsafe Certificates! The link above works for me.
    1 point
  40. @Dave-H Here are the most recent Root Certificates and Revoked Certificates Updater I made yesterday. Download link: https://www.mediafire.com/file/kegkco6y6cbybdx/Roots_Certificate_Updater_18.10.21.7z/file
    1 point
  41. @maile3241 If there is no such file then it doesn't matter. Copy patched file in both folders and well done! Restart computer and check whether both files are still there. And then
    1 point
  42. Oh really !? Are you sure ? https://msfn.org/board/topic/178377-on-decommissioning-of-update-servers-for-2000-xp-and-vista-as-of-july-2019/?do=findComment&comment=1212052
    1 point
  43. 1 point
  44. Hi greenhillmaniac, A few years ago (February of 2011, so a few months before the windows v4 site shutdown) I retrieved Windows ME updates in order to install them on a machine that had no internet connection. On the other day I stumbled across these while looking for a file, so if any tuga is interested in this, here they are in their PT-PT glory: http://www.mediafire.com/folder/n4cqwuen0b68b/winmillennium-updates Cheers
    1 point
×
×
  • Create New...