Christoph Thiede
Christoph Thiede
Good question. Afaik there is no other information than whether the image is calling the primitive - but since there is no guarantee that it will use the result, this...
This does not sound uninteresting to implement, but I won't be able before August :-) Hm ... Wouldn't it be more convenient to generate full-featured MouseWheelEvents rather than fake keyboard...
The best documentation for this feature I now is "A MouseWheelEvent is xxxxxxxxx." ;-) Seriously, I've only been following these changes with half an eye, but afaik, @nicolas-cellier-aka-nice improved support...
Hi Vanessa, is this the same bug? It occurred when I tried to browse the inbox repository using Monticello: ``` squeak.js:37279 Mixed Content: The page at 'https://squeak.js.org/run/#image=/Squeak5.3-19448-32bit.image' was loaded over...
HTTPS not working either. :-( Loaded module: SqueakSSL /squeak.js:3460 missing primitive: SqueakSSL.primitiveSetStringProperty warnOnce @ /squeak.js:3460 /run/#image=/Squeak5.3-19448-32bit.image:1 Access to fetch at 'https://source.squeak.org/inbox/?C=M;O=D' from origin 'https://squeak.js.org' has been blocked by CORS policy:...
New proxy sounds straightforward. I have never dealt with this stuff, but this one should be up and might work? https://cors-anywhere.herokuapp.com/
Just wanted to note that HTTPS connections still do not work reliably, for example, `Installer ensureRecentMetacello` fails - probably because `SqueakSSL.primitiveSetStringProperty` is missing?
@fniephaus The missing primitive was only a wild guess because `SqueakSSL >> #serverName:` unconditionally ignores all errors from the primitive call. A joint debugging session would definitely be great, but...
@codefrau Sorry for the delay! Yes, your fix works in the mini image. I prefer to add this to the beginning of `JSException>>error:`: ```smalltalk self class superclass ifNil: [^ nil...
@codefrau Sorry for not replying earlier! While trying to debug `JS await:`, I stumbled upon some other primitive issues in SqueakJS and tried to fix them first (see my recent...