You are browsing as a guest. Sign up (or log in) to start making projects!

Open comments for this post

37m 58s logged

2.2.4

Patch release, I just wanted to make a devlog :)

Fixes:

  • I had const thing = await import('./thing.js'); in my modules, creating a race condition possibility (smth wants methods in the module before its loaded as its waiting for thing to load), so I switched it to `import * as thing from ‘./thing.js’;) which wont create that possibility (REVERTED)
  • With my minimizing method, it just hides the window content, not removing it, so when you click in the area, even though you can see the things under it, it would click on the window. I added pointer-events: none; to the .window.minimized class, making clicks pass through to the layer below it that’s visible.
0
4

Comments 0

No comments yet. Be the first!