John Wostenberg
John Wostenberg
Probably something like: ``` type Color = { red: float32; green: float32; blue: float32; alpha: float32 } type IBrowserWindow = abstract member BackgroundColor: Color with get, set // ...
We can target the native macOS browser control, so that should be possible for Windows as well.
Is there even a native browser control for Linux? Or should there just be a Linux Chromium package?
Interstellar should support UWP via Interstellar.UWP.* packages. One advantage is that it would allow an interstellar browser window to control the title bar area. One question, though, is that it...
Interstellar.macOS.WebKit.dll is missing assembly version attributes. For some reason, the macOS builds don't pick up the MSBuild assembly version info, even though they're all sdk-style projects. c53baba3 was an unsuccessful...
The documentation seems to imply that you can use many of the same reactive types that are available on Xamarin.iOS, which is not true. For example, on Mac, there is...
I seem to have broken the namespace structure such that ``open Fable.System.IO`` now generates a compile error: ``` error FS0039: The namespace 'IO' is not defined. ``` which results in...
PR #10 adds a few static File methods related to file reading, but does not implement things like File.Open. If we had a Stream proxy in Fable, it would enable...
`logf` has some overhead from all the string manipulation and reflection that is happening behind the scenes. It's completely negligible for loggers which perform real I/O (like a Serilog logger...