Thomas Mullen

Results 62 issues of Thomas Mullen

File is being updated with an empty delta instead of the content. Need a way to determine when virtual files have been saved.

bug

If anyone can find an example of how to write tests for Brackets extensions, that would be much appreciated.

- [ ] Admin auth - [ ] User auth (enable/disable) - [ ] Room permission (per user) - [ ] Admin dashboard (usage, user management) The public server will...

enhancement
backlog

Brave Browse on Intel 2019 Macbook Pro (Ventura 13.2) always reports tier 0. Chrome on the same machine correctly reports tier 3. Brave: ``` { "wasm": true, "simd": true, "webgl":...

It seems that there is a small wait between when the .ready method is called and the serviceworker actually claims the client. We should wait for the controller before firing...

Adds the option to exclude prefixes from being intercepted: `browser-server / --exclude /bundle.js --exclude /ignore` Also adds the option to use `--prefix` instead of an argument. (Argument still works.) `browser-server...

Falls back to waiting until response is completed and making a Blob since Firefox doesn't support the ReadableStream constructor (or streaming Response objects at all!). Doesn't affect Chrome or browsers...

Firefox currently doesn't support the WHATWG Stream API in Serviceworkers (ReadableStream), so we should consider some workarounds.

I noticed when experimenting with no prefix (a "/" prefix) that the worker can intercept the browser-server bundle itself, as well as the initial HTML request. This makes the worker...

Trying to create 2 datachannels in a row fails with an error. ```javascript var wrtc = require('electron-webrtc')() var pc = new wrtc.RTCPeerConnection({}) pc.createDataChannel('label1', {}) pc.createDataChannel('label2', {}) ``` ``` Error: Error...