Ian Kettlewell
Ian Kettlewell
This isn't directly actionable by `glow`, but I wanted to open an issue to draw attention to it. I was surprised at how long `glow` took to compile given its...
The WebSockets to signal reload use `ws` and must instead use `wss`.
404 page
Right now if a `.html` file is not found devserver returns a 404, but it would be more easily noticed if a 404.html page were served. Additionally with the current...
As pointed out by @cwfitzgerald `devserver` doesn't match the convention of other Rust/Python/Ruby servers when specifying the directory to host and the port. Other tools use `-p` to specify the...
```thread '' panicked at 'called `Result::unwrap()` on an `Err` value: Os { code: 32, kind: BrokenPipe, message: "Broken pipe" }', /Users/iank/.cargo/registry/src/github.com-1ecc6299db9ec823/devserver_lib-0.1.3/src/lib.rs:96:17 note: run with `RUST_BACKTRACE=1` environment variable to display a...
Presently the SDL backend isn't tested with continuous integration so it could have code rot. Unfortunately it will probably increase continuous integration times a lot.
There needs to be a way to use SDL to create OpenGL contexts. Unfortunately that requires passing in an SDLWindow pointer to SDL. Presently kapp's GL context creation accepts `RawWindowHandle`...
Presently created windows will be too large and likely events will report coordinates different from other platforms.