Leaderboard
Popular Content
Showing content with the highest reputation on 11/30/2023 in all areas
-
Thanks for the information! Then the chances are quite good that after @feodor2's switch to JS Engine 91, some things will work again.2 points
-
@feodor2 The website https://www.camp-firefox.de/ works no longer correctly in Mypal 68 for a few days. Especially the site search function https://www.camp-firefox.de/suche/ is broken. Here is the output of the Web Console: SyntaxError: private fields are not currently supported WebComponent.min.js:58:1408 ReferenceError: WoltLabLanguage is not defined de.preload.js:2:1 SyntaxError: private fields are not currently supported WoltLabSuite.Core.tiny.min.js:1:33256 ReferenceError: requirejs is not defined suche:49:1 ReferenceError: define is not defined WoltLabSuite.Forum.tiny.min.js:1:1 ReferenceError: require is not defined suche:531:2 ReferenceError: define is not defined suche:561:2 ReferenceError: define is not defined suche:566:2 ReferenceError: require is not defined suche:607:3 ReferenceError: require is not defined suche:612:2 jQuery.Deferred exception: SECURITY_TOKEN is not defined init@https://www.camp-firefox.de/js/WCF.Combined.tiny.min.js?v=1701002591:19:8603 i@https://www.camp-firefox.de/js/WCF.Combined.tiny.min.js?v=1701002591:16:191 init@https://www.camp-firefox.de/js/WCF.Combined.tiny.min.js?v=1701002591:43:226 @https://www.camp-firefox.de/suche/:577:38 f@https://www.camp-firefox.de/js/WCF.Combined.tiny.min.js?v=1701002591:4:38929 o/</p<@https://www.camp-firefox.de/js/WCF.Combined.tiny.min.js?v=1701002591:4:39232 undefined WCF.Combined.tiny.min.js:4:40512 jQuery.Deferred exception: require is not defined addObject@https://www.camp-firefox.de/js/WCF.Combined.tiny.min.js?v=1701002591:19:13911 @https://www.camp-firefox.de/suche/:592:17 f@https://www.camp-firefox.de/js/WCF.Combined.tiny.min.js?v=1701002591:4:38929 o/</p<@https://www.camp-firefox.de/js/WCF.Combined.tiny.min.js?v=1701002591:4:39232 undefined WCF.Combined.tiny.min.js:4:40512 ReferenceError: SECURITY_TOKEN is not defined WCF.Combined.tiny.min.js:19:8603 ReferenceError: require is not defined WCF.Combined.tiny.min.js:19:13911 This site appears to use a scroll-linked positioning effect. This may not work well with asynchronous panning; see https://developer.mozilla.org/docs/Mozilla/Performance/ScrollLinkedEffects for further details and to join the discussion on related tools and features! suche There is a lot not defined. Have a look above! The admins of this websites must have recently performed changes. In New Moon 28 and Serpent 52, the site search surprisingly works.2 points
-
@dmiranda The solution to let the custom button aboutbutton recognise by the CSS stylesheet buttons_on_navbar_button_roundness.css is a bit more complicated than I thought. You have indeed to change the code of the script aboutbutton.uc.js. It seems to be a class issue. This is the first part of the original script code from line 1 to 26: (function() { if (location != 'chrome://browser/content/browser.xul') return; try { CustomizableUI.createWidget({ id: 'about-toolbarbutton', type: 'custom', defaultArea: CustomizableUI.AREA_NAVBAR, onBuild: function(aDocument) { var toolbaritem = aDocument.createElementNS('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul', 'toolbarbutton'); var attrs = { id: 'about-toolbarbutton', class: 'chromeclass-toolbar-additional', type: 'menu', removable: true, label: 'about Seiten öffnen', tooltiptext: 'about Seiten öffnen' }; for (var a in attrs) toolbaritem.setAttribute(a, attrs[a]); return toolbaritem; } }); } catch(e) { }; I changed the class of this button in line 15 from 'chromeclass-toolbar-additional' to 'toolbarbutton-1 chromeclass-toolbar-additional': (function() { if (location != 'chrome://browser/content/browser.xul') return; try { CustomizableUI.createWidget({ id: 'about-toolbarbutton', type: 'custom', defaultArea: CustomizableUI.AREA_NAVBAR, onBuild: function(aDocument) { var toolbaritem = aDocument.createElementNS('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul', 'toolbarbutton'); var attrs = { id: 'about-toolbarbutton', class: 'toolbarbutton-1 chromeclass-toolbar-additional', type: 'menu', removable: true, label: 'about Seiten öffnen', tooltiptext: 'about Seiten öffnen' }; for (var a in attrs) toolbaritem.setAttribute(a, attrs[a]); return toolbaritem; } }); } catch(e) { }; This change seems to be enough to let the CSS stylesheet buttons_on_navbar_button_roundness.css recognise the custom button aboutbuttuon as a standard toolbar button. Thus, the button can be rounded by this CSS stylesheet. Here is a screenshot to show the result of my change (I added borders around the buttons via CSS code for better visibility ): The positive side effect of this modification is that the custom button aboutbuttuon behaves as a normal toolbar button from now on, even if it is not rounded off by such a CSS stylesheet. Cheers, AstroSkipper2 points
-
ClearType is easily switched off in Vista, so you will see identical fonts as if you were on XP, this is not the case with Windows 7, the fonts will still be blurry no matter what you do. Windows 7 renders everything blurry and bluish, mp4 videos, any film you watch on windows 7 looks awful. I don't know about Win10, I guess your driver there is different?2 points
-
It's the case with all software. I don't know if you knew, even MKVToollnix changes gamma and brightness! As a rule of thumb, I'd say everything newer is brighter 1030>2044, be it browsers or video codecs, (AV1 is very bright, as the example)1 point
-
1 point
-
I told you many times about 1030 being superior. What can I say, we all learn something, I guess, I spent several years before I found the right driver for me, But hey, no one stops you from those topics getting deleted.1 point
-
I use 13.5.1030, and the fonts look very good, maybe 13.5.2044 isn't for your system after all. The fonts look like here. The settings I use is in the image I already sent (here). Sorry, can't send BMP - the limit is up.1 point
-
The aboutbuttuon is a special custom button coded quite unusually. It is generated in JavaScript by the var variable and is a menu button. When hovering on all buttons, you will notice that this button renders differenly from all the others. I think the code imported by the stylesheet buttons_on_navbar_button_roundness.css can't target this kind of custom button. It is simply not recognised as a standard toolbar button by the stylesheet. To change the appearance of this button in a toolbar (e.g. nav-bar) itself, you have to change the code inside the aboutbutton.uc.js file directly. Cheers, AstroSkipper1 point
-
anti-aliasing gamma korrektur = aus1 point
-
1 point
-
Yes, I know about browser not being 3D, still nVidia driver seems to apply these settings and render it as if it was a 3D app. It even suggests to choose those options for each of my browsers individually.1 point
-
You're not the only one who is not satisfied with chromium/windows7 fonts, look here. ""So the year is 2023 and MS Edge still seems to be the only Chromium-based browser that follows Windows settings for font-rendering..."" https://msfn.org/board/topic/185877-changing-sk_gamma_contrast-without-recompiling-chromium/1 point
-
That confirms what I've been saying about different levels of brightness/contrast in different versions.1 point
-
1 point
-
1 point
-
Honestly, I didn't like both. You may try to play with nVidia settings. For example, try to turn off anti-aliasing gamma correction, not sure if it will make a huge improvement in a browser, but fonts in games look less blurry with this setting off.1 point
-
This one is too bright and contrast, heavy on ones eyes when staring at it for a long time, anti-aliasing is obviously off, direct write is OFF in this case, too. 360Chrome uses this setting by default.1 point
-
This picture is far less bright than the one with 13.5, it's blurry and has less contrast, it is heavily aliased, also looks like the driver applies AA gamma correction.1 point
-
1 point
-
New build of Serpent/UXP for XP! Test binary: Win32 https://o.rthost.win/basilisk/basilisk52-g4.8.win32-git-20231125-3219d2d-uxp-b47d46219f-xpmod.7z Win64 https://o.rthost.win/basilisk/basilisk52-g4.8.win64-git-20231125-3219d2d-uxp-b47d46219f-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-20231125-3219d2d-uxp-b47d46219f-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-20231125-d849524bd-uxp-b47d46219f-xpmod.7z Win32 IA32 https://o.rthost.win/palemoon/palemoon-28.10.7a1.win32-git-20231125-d849524bd-uxp-b47d46219f-xpmod-ia32.7z Win32 SSE https://o.rthost.win/palemoon/palemoon-28.10.7a1.win32-git-20231125-d849524bd-uxp-b47d46219f-xpmod-sse.7z Win64 https://o.rthost.win/palemoon/palemoon-28.10.7a1.win64-git-20231125-d849524bd-uxp-b47d46219f-xpmod.7z Official UXP changes picked since my last build: - Issue #2361 - Base implementation of Navigator.Clipboard (3478c01fc8) - Issue #2361 - Remove clipboard-read code (e0a7c35dcc) - Bug 1332825 - Use move semantics in MozPromise::All() and AllPromiseHolder. (543e41f3ac) - Issue #2361 - Enable Navigator.clipboard by default. (7fce3acfa9) - [WebGL] Turn on more validation/error checking in webgl (when not on Win) (acd204e85e) - [DOM] Check if rootDoc is secure context for web compat (71ce058b03) - [Network] Fix relative URL path starting with multiple slashes (d55111c4fd) - [DOM] Improve MessagePort state machine. (114daae894) - [WebGL] Flip the validation state for gl_KHR_no_validation. (56bcdf7ca0) No official Pale-Moon changes picked since my last build. No official Basilisk changes picked since my last build. Update 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
-
Hello @a8s! Cookie Quick Manager 0.5rc2 (and probably most of the others as well) works in Mypal 68.13.5b. No problems here. Maybe, your profile or your Mypal installation is corrupt or misconfigured. First, you should create a fresh profile and try to install the extensions again. If this doesn't help, you can perform a fresh installation of Mypal 68.13.5b. Here is a proof in the form of a screenshot: Cheers, AstroSkipper1 point
-
Compared to legacy extensions I unfortunately do. Legacy extensions are able to change the browser interface and web pages. The so called "web" extensions are not.1 point
-
And here is an alternative solution without modifying the IP Geolocator xpi file. Just install the extension Classic Theme Restorer and set the navigation toolbar attribute 'iconsize' to large icons! Here is a screenshot: I could imagine that this solution could also help with other toolbar icons (especially provided by webextensions) that are too large. Cheers, AstroSkipper1 point
-
@VistaLover Here is a fixed version of IP Geolocator when using the Photonic theme in Serpent 52. I resized all flag images from 48 x 48 to 24 x 24 and saved them in a new folder img/flags/24/. Then I changed the code inside the file main.js in the folder js/: Original code: function setIcon(country_code) { var showFlags = lp.isSet(KEY_SETTINGS_SHOW_FLAGS) ? lp.get(KEY_SETTINGS_SHOW_FLAGS) : true; if (country_code == "ERR" || !showFlags || !(countriesSupported.includes(country_code))) { chrome.browserAction.setIcon({ path: "img/icon48.png" }); } else { chrome.browserAction.setIcon({ path: "img/flags/48/" + country_code + ".png" }); } } Modified code: function setIcon(country_code) { var showFlags = lp.isSet(KEY_SETTINGS_SHOW_FLAGS) ? lp.get(KEY_SETTINGS_SHOW_FLAGS) : true; if (country_code == "ERR" || !showFlags || !(countriesSupported.includes(country_code))) { chrome.browserAction.setIcon({ path: "img/icon.png" }); } else { chrome.browserAction.setIcon({ path: "img/flags/24/" + country_code + ".png" }); } } Screenshot: Now, the toolbar icon and the flag images are shown in a suitable size. Here is the download link of my mod: https://www.mediafire.com/file/xkha44rjidj5maw/ip_geolocator-2.1.0-Photonic-mod.xpi/file Greetings from Germany, AstroSkipper1 point
-
Inside the xpi file of IP Geolocator, one could restrict the size of the toolbar icon to a certain, desired value. I did that several times in terms of legacy extensions, and I assume it could be similar when it comes to webextensions. My credo: What doesn't fit, is made to fit. @VistaLover I had a look inside the IP Geolocator xpi file. I think I have an idea how the problem with the size of the the toolbar flag might be fixed when using the Photonic theme in Serpent 52. If the standard theme is selected, the flag is sized correctly. So, it seems to be a problem caused by the Photonic theme. Anyway! Interested in fixing it?1 point
-
Inside the xpi file of IP Geolocator, one could restrict the size of the toolbar icon to a certain, desired value. I did that several times in terms of legacy extensions, and I assume it could be similar when it comes to webextensions. My credo: What doesn't fit, is made to fit. PS: And thanks for noticing my "typo"! TBH, it wasn't a typo but German spelling. Suddenly, and for no reason at all, I was of the opinion that the word interval is spelled the same in English as in German. Stuff happens! Dementia?1 point
-
First of all, and as I already said, I appreciate your contributions here very much. You provide facts as objectively as possible. You are really interested in collecting security programmes which still work under Windows XP. And you are very helpful here. Thank you for that! All of this is not a matter of course! According to Spybot - Search & Destroy, I used it in times of Windows ME and some years under Windows XP. Therefore, I know it very well. Great to hear that the database is still updated for the old, abandoned version 1.6.2 which is indeed the last version targeting Windows XP. For a long time, I liked it very much. Unfortunately, I had stability issues and problems with updating the database. That was one reason I stopped using it. But nevertheless, this programme was already on my list. And due to the fact that the database updating still works as you reported, it is an option for Windows XP, of course.1 point
-
Fantastic French Hamster ! Thank you for the pictures ! I also had an article about the beautiful pink French Iguana, need to find it.1 point
-
1 - You're welcome ! 2 - Not sure I understood what you meant, is it some form of weird patronising ? I think I already wrote, I was there voluntarily, no one forced me to. 3 - Not sure I understand, again.1 point
-
1 point
-
7. Kingston KC600 Available Capacities: 256GB – 2TB Interface: SATA 6Gbps1 point
-
with SATA https://www.gamingpcbuilder.com/ssd-ranking-the-fastest-solid-state-drives/1 point
-
Kingston KC3000Fastest SSD, I'd choose it for myself. https://www.tomshardware.com/reviews/best-ssds,3891.html1 point
-
Sorry not sure I understood correctly, your new (?) computer needs to be fixed already ? And it hasn't even arrived ? I'd better save up for a decent GPU than SSD.1 point
-
Perhaps it has something to do with MSFN being a technical forum, no ? And what do you think ?1 point
-
New build of post-deprecated Serpent/moebius for XP! * Notice: This repo will not be built on regular schedule, and changes are experimental as usual. ** Current moebius patch level should be on par with 52.9, but some security patches can not be applied/ported due to source milestone differences between versions. Test binary: Win32 http://o.rths.ml/basilisk/basilisk55-win32-git-20200229-f7cbe248d-xpmod.7z Win64 http://o.rths.ml/basilisk/basilisk55-win64-git-20200229-f7cbe248d-xpmod.7z repo: https://github.com/roytam1/basilisk55 Repo changes: - update NSS to UXP version (3ea8e615b) - import NSS tip revs: bug1608493, bug1610687, bug1611209, bug1582169, bug1614786, bug1538980, bug1614870, bug1431940 (fb15d459d) - import changes from `RFC6367' branch in UXP: - Issue #1462 - Part 1: Implement HMAC-based Camellia suites in NSS. (099a1ea88) - Issue #1462 Part 2: Implement security manager changes for RFC 6367 §2.1 (813dd6369) (b27a58271) - import changes from tenfourfox: - #578: M1322864 M1585106 M1597043 (7758ebb12) - #578: M1579060 M1586176 (f3f295615) - #581: M1047098 M1355576 (ec8e68102) (remove-tele part only) - closes #582: M1358018 modified for 45ESR (74fd7b6d0) - #584: update certs, pins, TLDs (690b9bbce) - #587: M1513855 M1596668 M1602944 M1599420 M1595399 (35a4358b3) - #587: update TLDs, certs, pins, etc. (35584e5e6) - #587: M1598543 M1607902 disable remote jars (cfb4b1e08) - #587: update TLDs (c15b86c49) - #591: M1467722 (cfb43390a) (with libeditor fix) - #591: bustage fix (bbc9a12a5) - #593: M1607742 M1684490 + updated TLDs, pins, HSTS (67706e1f6) (f7cbe248d)1 point
-
New build of BOC/UXP for XP! Test binary: MailNews Win32 https://o.rths.ml/boc-uxp/mailnews.win32-20200229-6cf2e411-uxp-ae8eb4d4c-xpmod.7z Browser-only Suite Win32 https://o.rths.ml/boc-uxp/bnavigator.win32-20200229-6cf2e411-uxp-ae8eb4d4c-xpmod.7z source patch (excluding UXP): https://o.rths.ml/boc-uxp/boc-uxp-src-xpmod-20191123.7z No official repo changes since my last build. -- New build of IceApe-UXP for XP! Test binary: https://o.rths.ml/gpc/files1.rt/iceape.win32-20200229-id-088353e-ia-041bf6a-uxp-ae8eb4d4c-xpmod.7z For UXP changes please see above.1 point
-
New build of Serpent/UXP for XP! Test binary: Win32 https://o.rths.ml/basilisk/basilisk52-g4.5.win32-git-20200229-6e6ffb8-uxp-ae8eb4d4c-xpmod.7z Win64 https://o.rths.ml/basilisk/basilisk52-g4.5.win64-git-20200229-6e6ffb8-uxp-ae8eb4d4c-xpmod.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/custom IA32 Win32 https://o.rths.ml/basilisk/basilisk52-g4.5.win32-git-20200229-6e6ffb8-uxp-ae8eb4d4c-xpmod-ia32.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/ia32 NM28XP build: Win32 https://o.rths.ml/palemoon/palemoon-28.9.0a1.win32-git-20200229-384ae7977-uxp-ae8eb4d4c-xpmod.7z Win64 https://o.rths.ml/palemoon/palemoon-28.9.0a1.win64-git-20200229-384ae7977-uxp-ae8eb4d4c-xpmod.7z Official UXP changes since my last build: - Revert 1320408 part 15: Make addDataProperty static (b1cd96989) - Revert #1142 - Remove unboxed objects (5ee844f71) - Reclassify heapsnapshot and nsJSInspector as not part of devtools (4e2e9be6a) - Remove redundant moz.build from db/ (7c8262e8c) - Issue #1053 - Remove android support from XPCOM (69ed4e4b4) - Issue #1053 - Remove android support from xpcom/threads/nsThread.cpp (c895d35a7) - Issue #1053 - Remove android support from uriloader (ce21c398d) - Issue #1053 - Remove android support from storage/mozStorageConnection.cpp (881c1e5f1) - Issue #1053 - Remove android support from netwerk (bdad2357a) - Issue #1053 - Remove android support from netwerk/protocol/http/nsHttpHandler.cpp (13a8e7888) - Issue #1053 - Remove android support from mozglue (5496e4f39) - Issue #1053 - Remove android support from ipc except for ipc/chromium (dada39db2) - Issue #1053 - Remove android support from mfbt (2896724ea) - Issue #1053 - Remove android support from memory (e9360fae1) - Revert "Issue #1382 - Remove invalid assertion." (be16123dd) - Revert #1137 - Remove unboxed arrays (dd57b9273) - Follow-up to 4e2e9be6a - Move HeapSnapshot DevTools-only Modules back to DevTools (e9ee12c98) - Issue #1053 - Remove android support from intl/locale/nsLocaleService.cpp (33ec695ac) - Issue #1053 - Remove android support from image (30e4959bd) - Issue #1053 - Remove android support from hal (81089ff09) - Revert #1091 Remove unboxed object code phase 1 + extras. (ecdeefc4d) - Issue #1355 - Better way to create display items for column backgrounds (44c47c503) - Issue #1053 - Remove android support from docshell (8e09aff18) - Issue #1053 - Remove android support from db (20f0905b3) - Issue #439 - Remove tests from toolkit/ (0ddd00f19) - Layout\reftests\table-background\reftest.list should have only additions to the end of it. (efdc2af8a) - Bug 1339444 - Remove unused resource://gre/modules/sqlite/sqlite_internal.js (8f35c37a9) - Issue #1053 - Remove android support from toolkit (35c26c6c1) - Merge pull request #1461 from MoonchildProductions/ubbo (cce2bc967) - Issue #1053 - Remove android preprocessor directive from toolkit/locales/jar.mn (4ff7606b6) - Merge pull request #1463 from win7-7/column-backgrounds-pr (d585e25e2) - No Issue - Always build marionette until it can be tracked down and killed (11d14ae59) - Merge branch 'master' of https://github.com/MoonchildProductions/UXP (de35c43f1) - [DOM] Add a null check (cdc2a22c7) - Revert "Layout\reftests\table-background\reftest.list should have only additions to the end of it." (16abf27e6) - Revert "Issue #1355 - Better way to create display items for column backgrounds" (793da7dd6) - Issue #1465 - Implement optional catch binding. (ae8eb4d4c) Official Basilisk changes since my last build: - [Docs] Minor update and correction of some LICENSE files. (6e6ffb8) Official Pale-Moon changes since my last build: - Update platform branch pointer (unstable 2020-02-26) (236feae24) - Update platform branch pointer (unstable 2020-02-26 v2) (a71fb4d2a) - Update platform branch pointer (unstable 2020-02-27) (384ae7977)1 point
-
New build of BOC/UXP for XP! Test binary: MailNews Win32 https://o.rths.ml/boc-uxp/mailnews.win32-20200222-6cf2e411-uxp-a7888b8cf-xpmod.7z Browser-only Suite Win32 https://o.rths.ml/boc-uxp/bnavigator.win32-20200222-6cf2e411-uxp-a7888b8cf-xpmod.7z source patch (excluding UXP): https://o.rths.ml/boc-uxp/boc-uxp-src-xpmod-20191123.7z Official repo changes since my last build: - Change toolbar mode default for navigational toolbar and re-add custom toolbars support (ee7466f3) - Update platform commit pointer (8717218a) - Update platform commit pointer (31e042c0) - Issue MoonchildProductions/UXP#1457 - Update package-manifest (6cf2e411) -- New build of IceApe-UXP for XP! Test binary: https://o.rths.ml/gpc/files1.rt/iceape.win32-20200222-id-088353e-ia-041bf6a-uxp-a7888b8cf-xpmod.7z For UXP changes please see above.1 point
-
New build of Serpent/UXP for XP! Test binary: Win32 https://o.rths.ml/basilisk/basilisk52-g4.5.win32-git-20200222-9e90ea2-uxp-a7888b8cf-xpmod.7z Win64 https://o.rths.ml/basilisk/basilisk52-g4.5.win64-git-20200222-9e90ea2-uxp-a7888b8cf-xpmod.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/custom IA32 Win32 https://o.rths.ml/basilisk/basilisk52-g4.5.win32-git-20200222-9e90ea2-uxp-a7888b8cf-xpmod-ia32.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/ia32 NM28XP build: Win32 https://o.rths.ml/palemoon/palemoon-28.9.0a1.win32-git-20200222-ad08f7edc-uxp-a7888b8cf-xpmod.7z Win64 https://o.rths.ml/palemoon/palemoon-28.9.0a1.win64-git-20200222-ad08f7edc-uxp-a7888b8cf-xpmod.7z Official UXP changes since my last build: - Issue #1445 - Clarify the status of extensions in the Add-On manager (f107de8a9) - Issue #1355 - Make nsTableCellFrame::GetColIndex/GetRowIndex faster (d4098037a) - Issue #1446 - Only allow extension add-on types for Firefox compat mode. (e8417acbf) - Merge pull request #1447 from win7-7/optimization-4-pr (a4ab3fc59) - Issue #1446 - Only match extension add-on types for target applications. (4889e6dbb) - Issue #1445 - Use the detailed string also in the list entries. (ac68f8cf6) - Issue #1320 - Stop appending cpu arch to the end of %BUILD_TARGET% on Windows in UpdateUtils.jsm (66b9ddfd3) - Issue #1445 - remove redundant nativeIndicator (2073a7f1c) - Issue #1445 - strings cleanup (461a9e86b) - Merge pull request #1452 from JustOff/Issue1445_cleanup (8dc04fc24) - Issue #1445 - Add a link to details on using Firefox extensions in Pale Moon (c220c30bb) - Issue #1454 - Add MOZ_PKG_SPECIAL to UpdateUtils (e6b48cb64) - Merge pull request #1455 from JustOff/issue1445_details_url (0a8530b91) - Issue #1383 - Remove "Copy raw data to clipboard" button (e3d81b698) - Issue #316 - Make the memory GC performance object conditional (WIP) (59f7a2cdb) - Issue #316 - Pre-process Performance.webidl (28f67bddc) - Issue #1457 - Unfold sqlite3 from nss (0e9957c41) - Issue #316 - Be more gentle with the CC and nursery. (d53b11c9d) - Merge pull request #1458 from MoonchildProductions/316 (7832dded3) - Issue #439 - Remove tests from widget/ (178382e4c) - Issue #1053 - Remove Android Widget Toolkit specific files (18e74277b) - Issue #1053 - Remove conditional android code from widget/ (b36e60615) - Issue #1053 - Remove android support from NPAPI (04fb9eaa6) - Issue #316 - Make sure MOZ_DEVTOOLS_SERVER is passed down to js. (5e21bf1d5) - Merge branch '316' (1e88448dd) - [gfx] Put Skia-specific CTOR init behind Skia-conditional. (623c44226) - Remove gtest reference to non-existing path of removed component (944cf0dda) - Set module default identification properly. (a7888b8cf) Official Basilisk changes since my last build: - Issue MoonchildProductions/UXP#1454 - Update app.update.url to include MOZ_PKG_SPECIAL (d2a450f) - Issue MoonchildProductions/UXP#1457 - Update package-manifest (f5afaa2) - Update platform branch pointer. (5b6c056) - Merge branch 'master' of https://github.com/MoonchildProductions/Basilisk (9e90ea2) Official Pale-Moon changes since my last build: - Update platform branch pointer. (0face352f) - Update platform branch pointer. (801c39008) - Issue MoonchildProductions/UXP#1445 - Add a link to details on using Firefox extensions in Pale Moon (5ab002dea) - Issue MoonchildProductions/UXP#1454 - Update app.update.url to include MOZ_PKG_SPECIAL (96d6179bd) - Merge pull request #1727 from JustOff/issue1445_details_url (663942c7b) - Update platform branch pointer. (638ceccd9) - Issue MoonchildProductions/UXP#1457 - Update package-manifest (d35f03895) - Issue MoonchildProductions/UXP#1457 - Remove redundant MOZ_FOLD_LIBS from confvars (a8ea2bbf0) - Update platform branch pointer. (0fa55d9fb) - Update platform branch pointer (e43f2cee8) - Minor corrections in module info and manifest (ad08f7edc) My changes since my last build: * Reverted following commits: - Issue #1445 - Clarify the status of extensions in the Add-On manager (f107de8a9) - Issue #1446 - Only allow extension add-on types for Firefox compat mode. (e8417acbf) - Issue #1446 - Only match extension add-on types for target applications. (4889e6dbb) - Issue #1445 - Use the detailed string also in the list entries. (ac68f8cf6) - Issue #1445 - remove redundant nativeIndicator (2073a7f1c) - Issue #1445 - strings cleanup (461a9e86b) - Issue #1445 - Add a link to details on using Firefox extensions in Pale Moon (c220c30bb) * followup of MoonchildProductions/UXP#1457, fix `mach package' (1b26a48e8) * manifest part was reverted in "[Pale-Moon] Minor corrections in module info and manifest (ad08f7edc)"1 point
-
New build of BOC/UXP for XP! Test binary: MailNews Win32 https://o.rths.ml/boc-uxp/mailnews.win32-20200215-48fee875-uxp-d3067ffdd-xpmod.7z Browser-only Suite Win32 https://o.rths.ml/boc-uxp/bnavigator.win32-20200215-48fee875-uxp-d3067ffdd-xpmod.7z source patch (excluding UXP): https://o.rths.ml/boc-uxp/boc-uxp-src-xpmod-20191123.7z Official repo changes since my last build: - Re-add TLS 1.3 to the SSL prefpane in Navigator (4918c9cc) - Remove crazy prefs that enable warnings regarding leaving and entering normal http (6ab85c3b) - Part 2: Clean up l10n (7478165a) - Update commit pointer (48fee875) For UXP changes please see above.1 point
-
New build of Serpent/UXP for XP! Test binary: Win32 https://o.rths.ml/basilisk/basilisk52-g4.5.win32-git-20200215-7ab9bf7-uxp-d3067ffdd-xpmod.7z Win64 https://o.rths.ml/basilisk/basilisk52-g4.5.win64-git-20200215-7ab9bf7-uxp-d3067ffdd-xpmod.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/custom IA32 Win32 https://o.rths.ml/basilisk/basilisk52-g4.5.win32-git-20200215-7ab9bf7-uxp-d3067ffdd-xpmod-ia32.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/ia32 NM28XP build: Win32 https://o.rths.ml/palemoon/palemoon-28.9.0a1.win32-git-20200215-ce6119c47-uxp-d3067ffdd-xpmod.7z Win64 https://o.rths.ml/palemoon/palemoon-28.9.0a1.win64-git-20200215-ce6119c47-uxp-d3067ffdd-xpmod.7z Official UXP changes since my last build: - Issue #1355 - Do less work for columns not in the desired set in PaintRowGroupBackgroundByColIdx (074f23467) - Merge branch 'master' into optimization-3-pr (6376eceae) - Merge pull request #1393 from win7-7/optimization-3-pr (4234b3a36) - Directly assign PrimitiveConversions.h to the generated binding of KeyframeAnimationOptions. (07fe89e26) - Issue #80 - Stop building non-generated dom/binding files as UNIFIED_SOURCES (5007e7c49) - Issue #65 - Correct nsHelperAppDlg.js for bad preprocessing conversion (31d8779a2) - [CSP] Allow not having a Port for RessourceURI if the Scheme has no Default Port (6184ed755) - [CSS] Add stub for font-variation-settings (a399acd57) - Fix a whitespace issue in nsComputedDOMStyle.cpp (7dc9aa058) - [Network] Bump http channel default Firefox CompatMode init value. (0a5784d3c) - [Layers] Clear WrappingTextureSourceYCbCrBasic::mTexture correctly (8ec761863) - Issue #1441 - Guard appomni/greomni with UXP_CUSTOM_OMNI env var. (2bdbca39b) - [Parser] Move setting context to null to the correct location. (3bf1b8359) - [IndexedDB] Ensure that strong references to newly created cursors are kept until the DOM Binding is created. (16fce4341) - Revert "Issue #1441 - Guard appomni/greomni with UXP_CUSTOM_OMNI env var." (786417cf0) - Issue #1441 - Guard appomni/greomni with UXP_CUSTOM_OMNI env var. (4ce361d9b) - [CSS] Only emit non-GC chrome wrapped XUL box warnings in debug builds. (d3067ffdd) No official Basilisk changes since my last build. Official Pale-Moon changes since my last build: - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/base. (53ec35918) - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/modules. (7925e0d73) - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components. (ee279e507) - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/downloads. (4ee9ee6eb) - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/feeds. (6c4bc8c69) - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/fuel. (c80b42eeb) - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/newtab. (1c696ee5f) - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/pageinfo. (8bbbcbbd7) - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/places. (7f5415cbd) - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/preferences. (8c8c0083f) - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/search. (edac1b2a9) - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/sessionstore. (82b670a28) - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/shell. (7e8104012) - Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/sync. (c32b67c7b) - Remove excess whitespace. (e48dabc8b) - Merge branch 'master' of http://github.com/MoonchildProductions/Pale-Moon into function-syntax (bfdf9295f) - Issue MoonchildProductions/UXP#516 - Fix obsolete self-reference in palemoon/components/places/PlacesUIUtils.jsm. (ca2cd4c51) - Merge pull request #1726 from athenian200/function-syntax (adc8aa724) - [Autocomplete] Make getCellProperties a bit more robust. (ce6119c47) My changes since my last build: - [MyUXP] [Pale-Moon] remove duplicated code hunk, fix js error (4f18ae9e6)1 point
-
New build of BOC/UXP for XP! Test binary: MailNews Win32 https://o.rths.ml/boc-uxp/mailnews.win32-20200208-f249ecbf-uxp-6c82d043a-xpmod.7z Browser-only Suite Win32 https://o.rths.ml/boc-uxp/bnavigator.win32-20200208-f249ecbf-uxp-6c82d043a-xpmod.7z source patch (excluding UXP): https://o.rths.ml/boc-uxp/boc-uxp-src-xpmod-20191123.7z Official repo changes since my last build: - Make version2k aware of .1 build numbers (c31428dd) - Update commit pointer (15ce868b) - Fix mach stub some more (4a0503b5) - Update commit pointer (6236c0ba) - Remove soon to be busted ScratchPad (204adc40) - Establish shared communicator-devtools and include scratchpad (c13a01cb) - If the (non-existent) Web Console isn't there then fall back to error console for content script errors (35181186) - Add a git reset hard command to machstub (b3ff1d28) - Add webpatching to machstub (046d2c53) - Use the platform's copy of config.guess (d43218f2) - Update commit pointer (b599cb99) - Fix navigator official branding moz.build (f249ecbf) My changes since my last build: - fixed theme moz.build syntax error For UXP changes please see above.1 point
-
New build of Serpent/UXP for XP! Test binary: Win32 https://o.rths.ml/basilisk/basilisk52-g4.5.win32-git-20200208-7ab9bf7-uxp-6c82d043a-xpmod.7z Win64 https://o.rths.ml/basilisk/basilisk52-g4.5.win64-git-20200208-7ab9bf7-uxp-6c82d043a-xpmod.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/custom IA32 Win32 https://o.rths.ml/basilisk/basilisk52-g4.5.win32-git-20200208-7ab9bf7-uxp-6c82d043a-xpmod-ia32.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/ia32 NM28XP build: Win32 https://o.rths.ml/palemoon/palemoon-28.9.0a1.win32-git-20200208-5b28a93fa-uxp-6c82d043a-xpmod.7z Win64 https://o.rths.ml/palemoon/palemoon-28.9.0a1.win64-git-20200208-5b28a93fa-uxp-6c82d043a-xpmod.7z Official UXP changes since my last build: - Issue #1342 - Remove support for system linbpng (e0103f3d5) - Issue #1342 - Update old.configure for removed build options (8f89965f5) - Issue #1342 - Remove support for system sqlite (d41ba28f5) - Issue #1342 - Remove support for system libvpx (229f84129) - Issue #447 - Update HSTS preload list & reduce debug spew (33ad27614) - Issue #1377 - Fix porting typo in mailnews/base/search/content/searchWidgets.xml (6bb671bcd) - Issue #1378 - Align the drawing of table cell backgrounds with the spec. (28208f1d3) - Issue #65 - Remove AppConstants from dom/ (406fc463e) - Issue #65 - Remove AppConstants from mailnews/ (f9ddbe364) - Issue #65 - Remove AppConstants from netwerk/ (a18c27ddd) - Issue #65 - Remove AppConstants from toolkit/content (7d21d02d5) - Issue #65 - Remove AppConstants from toolkit/modules (6a3907dae) - Issue #1378 - Follow-up: make sure background items remain table-aligned. (dd68cb9b3) - Issue #1355 - Hit testing in large tables has become extremely slow (f7b2f0a66) - Fix preprocessor directive in UserAgentUpdates.jsm (54e3d7400) - Merge pull request #1380 from win7-7/optimization-2-pr (0db3f512e) - Revert "Issue #1355 - Hit testing in large tables has become extremely slow" (d216db11e) - Issue #1355 - Hit testing in large tables has become extremely slow (e6c346c36) - Merge pull request #1381 from win7-7/optimization2-pr (bbbfd00f9) - Issue #1382 - Remove invalid assertion. (9c6a8450b) - Issue #1384 - Match standard for colSpan/rowSpan (52940bc44) - Merge pull request #1385 from win7-7/standard-pr (c4e1022f5) - Issue #1386 - Devirtualize GetRowSpan/GetColSpan (597a6996f) - [Installer] Updated the 7-zip stub binary to make sure it doesn't hang on older versions of Windows but instead provides a usable error message (a59545110) - Issue #26 Part 2a: make more EME code conditional. (99118e38e) - Issue #26 - Part 2b: Stub out GMPDecryptorProxy functions. (d44c61bf6) - fix whitespace (3a7d5d01c) - Issue #65 - Remove AppConstants from toolkit/profile (840ecb526) - Issue #65 - Remove AppConstants from toolkit/mozapps/update (43f91872b) - Issue #26 - Part 2c: Remove dependence on gmp/widevine-adapter/* (4c9689f68) - Merge pull request #1389 from MoonchildProductions/EME_conditional (58cfb9acc) - Issue #65 - Remove AppConstants from toolkit/mozapps/extensions (758618b60) - Issue #65 - Remove AppConstants from toolkit/mozapps/downloads (2e6782afb) - Issue #65 - Remove AppConstants from toolkit/components/jsdownloads (180543f6c) - Update UXP Coding Style.md (bf914e997) - Update UXP Coding Style.md (04c770c8c) - Issue #65 - Remove AppConstants from toolkit/components/satchel (c09eca89e) - Issue #65 - Remove AppConstants from toolkit/components/printing (7a0b23aab) - Issue #65 - Remove AppConstants from toolkit/components/thumbnails (0ab5c6474) - Issue #65 - Remove AppConstants from toolkit/components/apppicker (cd8767779) - Issue #65 - Remove AppConstants from toolkit/components/places (0749a35be) - Issue #65 - Remove AppConstants from toolkit/components/alerts (741abd440) - Issue #65 - Remove AppConstants from toolkit/components/passwordmgr (cf4ad4e96) - Issue #1392 - Change --enable-eme to MOZ_ARG_ENABLE_BOOL and remove MOZ_EME_MODULES (832d84d2c) - [AM] Remove shared theme leftovers for webextensions (551c41893) - Issue #1390 - Remove secondscreen modules from toolkit (e80e4595b) - Issue #1390 - Get rid of the Presentation API (5483f807c) - Issue #1395 - Remove FlyWeb Service (6da9e3c6b) - Issue #1395 - Part 2: Remove the /rest/ of FlyWeb (99aa809cb) - Merge pull request #1388 from win7-7/devirtualize-pr (a6ef90b18) - Issue #65 - Correct fallthough case in profileSelection.js (b4ac6a7dc) - Issue #65 - Don't split in the middle of assignment statements in createProfileWizard.js (fa52fa60b) - Merge pull request #1394 from MoonchildProductions/appconst-work (6c82d043a) Official Basilisk changes since my last build: - Use the platform's copy of config.guess (bb7147e) - Issue MoonchildProductions/UXP#1392 - Remove usage of MOZ_EME_MODULES (3a165cd) - Issue MoonchildProductions/UXP#1390 - Remove application support for the Presentation API (7ab9bf7) Official Pale-Moon changes since my last build: - Follow up to 8a67d2608 - Remove unused import of AppConstants.jsm from setDesktopBackground.js (ce1061c55) - Issue #1722 - Part 1: Allow hiding pinned tabs for the Ctrl-Tab graphical pane (6ef65f4ef) - Issue #1722 - Part 2: Allow hiding pinned tabs for the All Tabs graphical pane (93937dd3c) - Merge pull request #1723 from FranklinDM/issue-1722-work (c9546b6df) - [Installer] Update the 7-zip stub binary. (c3ce438e6) - Merge branch 'master' of https://github.com/MoonchildProductions/Pale-Moon (adde7f836) - Use the platform's copy of config.guess (e2e0aeaf9) - Issue #1721 - Add pref to control smart bookmarks size. (4dcd54c87) - Merge branch 'master' of https://github.com/MoonchildProductions/Pale-Moon (5b28a93fa) My changes since my last build: - Revert "[WebRequest] Remove AddonManagerPermissions leftovers" (65ca6d803) - Reverted "[Installer] Updated the 7-zip stub binary to make sure it doesn't hang on older versions of Windows but instead provides a usable error message (a59545110)", keep using old 7zstub for long time - Reverted "[AM] Remove shared theme leftovers for webextensions (551c41893)" - [Basilisk] installer: remove Presentation API file entry leftovers, fixes packaging (4ec02a71a)1 point
-
New build of Firefox 45ESR: Test binary: SSE https://o.rths.ml/gpc/files1.rt/firefox-45.9.20-20200201-a118552a7-win32-sse.7z IA32 https://o.rths.ml/gpc/files1.rt/firefox-45.9.20-20200201-a118552a7-win32-ia32.7z repo: https://github.com/roytam1/mozilla45esr Changes since my last build: - update NSS to UXP version of 3.48.1 (75ce59f19) - import changes from tenfourfox: - #584: update certs, pins, TLDs (690b9bbce) (974ab8560) - bump version to 45.9.20 (21d7ea68f) - remove more telemetries from tabbrowser binding (5d0217568) - import changes from tenfourfox: - fix M1607443 as a precaution (b8657e696) - #369: add back build system changes [partly] (a7ee0d3a4) - revert #489 (#576): enable CHACHA20/POLY1305, remove TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 as it is no longer needed [partly] (581cb94a7) - closes #585: check parse-on-load is enabled first (0d448f2ba) - #587: M1513855 M1596668 M1602944 M1599420 M1595399 (35a4358b3) - #585: derp (71110bf96) - #587: update TLDs, certs, pins, etc. (35584e5e6) - #369: bustage fix for opt builds (cc2e336b2) (a118552a7)1 point
-
Update: Version 2.0.3.32 added more GUI tooltips fixed FolderBrowse not working in default WinPE 3.x fixed possible duplicates in boot menu fixed drive letter assignment cause error message on empty cardreader drives avoid possible installation on same drive as currently running Windows avoid possible installation of WinPE avoid NativeVHDBoot of not supported Windows Editions added VHDHelper (diskpart wrapper) to create, attach and detach VHD's (reserved for Windows 7 users only ) new commandline options -DisableVHDChecks, -VHDHelper (Hotkey: Ctrl + Shift + V) know issue: - Under WinPE 3.x diskpart may fail to detach a vdisk (blame Microsoft, not me.)1 point