The Official Win32 20160107 builds are out

Discussion about official Mozilla Firefox builds
User avatar
greenknight
Posts: 6187
Joined: December 13th, 2004, 2:28 am
Location: In the shadow of Mount St. Helens

Re: The Official Win32 20160107 builds are not yet out

Post by greenknight »

ashleylai87 wrote:
GHM113 wrote:20160107 Nightly shows this message on startup:
Image
Also, NoScript 2.9 (latest stable) broke and doesn't block scripts. Could anyone else confirm, please?
Confirmed here, I am using 2.9.0.1rc1.
Likewise. I tried uninstalling/reinstalling it, still not working.
Win 10 Pro x64, AMD Ryzen 5 5600G 6 core, 3900 MHz (4450 Turbo), AMD Radeon Vega (integrated graphics). 16GB DDR4-3200, Firefox 125.0.2, Developer Edition 126.0b5, Nightly 127.0a1.
User avatar
Pizzapops
Posts: 46
Joined: December 22nd, 2013, 6:56 pm
Location: Lake of the Ozarks, MO

Re: The Official Win32 20160107 builds are not yet out

Post by Pizzapops »

20160107 Nightly 46-64 broke the FVD Speeddial extension. The startup screen "chrome://fvd.speeddial/content/fvd_about_blank.html" show no graphics, only a little random text.
Windows 10 Pro I7/16mb - work laptop, Windows 10 I7/32mb 6TB - home desktop
Cyberfox 52-64, Waterfox 56, Firefox Nightly 62, Opera 12.18, Opera Dev, Vivaldi 1.16
About 46 extensions in the Fx branches. All are portable and run from a USB 3.0 SSD drive.
Josa
Posts: 7418
Joined: July 28th, 2009, 4:52 pm

Re: The Official Win32 20160107 builds are out

Post by Josa »

User avatar
WildcatRay
Posts: 7486
Joined: October 18th, 2007, 7:03 pm
Location: Columbus, OH

Re: The Official Win32 20160107 builds are not yet out

Post by WildcatRay »

Alice0775 wrote:
streetwolf wrote:FYI... On inbound this cset breaks Stylish: https://hg.mozilla.org/integration/mozi ... d26e7477b8

07:11:18.796 SyntaxError: missing ] after element list1 stylishStyle.js:441:42
07:11:18.796 NS_ERROR_XPC_GS_RETURNED_FAILURE: Component returned failure code: 0x80570016 (NS_ERROR_XPC_GS_RETURNED_FAILURE) [nsIJSCID.getService]1 stylishStartup.js:20:0
07:11:19.246 NS_ERROR_XPC_GS_RETURNED_FAILURE: Component returned failure code: 0x80570016 (NS_ERROR_XPC_GS_RETURNED_FAILURE) [nsIJSCID.getService]1 overlay.js:4:0

Here's the line of code with the syntax error:

return [toHexString(hash.charCodeAt(i)) for (i in hash)].join("");

Possibly the syntax error is causing the problem? If so, how do we fix that line?

**** UPDATE **** I deleted the line to see what happens and Stylish now works. Better to fix the line if needed however.
See Bug 1220564,
I modified from

Code: Select all

return [toHexString(hash.charCodeAt(i)) for (i in hash)].join("");
to

Code: Select all

return Array.from(hash, (c, i) => toHexChar(hash.charCodeAt(i))).join("");
Which file has this line?
Ray

OS'es: 4 computers with Win10 Pro 64-bit; Current Firefox, Beta, Nightly, Chrome, Vivaldi
User avatar
Alice0775
Posts: 2818
Joined: October 26th, 2007, 11:25 pm
Location: OSAKA

Re: The Official Win32 20160107 builds are not yet out

Post by Alice0775 »

GHM113 wrote:20160107 Nightly shows this message on startup:
Image
Also, NoScript 2.9 (latest stable) broke and doesn't block scripts. Could anyone else confirm, please?
It seems woking again if I modyycomponents\noscriptService.js,
from

Code: Select all

    let [to, from] = [ AddressMatcher.create(this.getPref("allowLocalLinks." + n, ""))
                        for each (n in ["to", "from"]) ];
to

Code: Select all

    let [to, from] = Array.from(["to", "from"], (n) => AddressMatcher.create(this.getPref("allowLocalLinks." + n, ""))).join("");
mattcoz
Posts: 1021
Joined: November 7th, 2002, 11:15 pm

Re: The Official Win32 20160107 builds are out

Post by mattcoz »

Stylish seems to be broken too, doesn't load any user styles. The stylish.sqlite file is still there and is unmodified, it just isn't being loaded.

Code: Select all

TypeError: stylishOverlay is undefined
onclick()
TypeError: stylishOverlay is undefined
onpopuphiding()
Locked