Gregor

Results 9 comments of Gregor

Same, but on Windows. The build system with the default config works. Also I can open Terminus in a tab. But just adding "target": "terminus_exec", "cancel": "terminus_cancel_build", to the build...

Is this supposed to work now? With ``` "post_window_hooks": [ ["carry_file_to_pane", {"direction": "right"}] ], ``` it keeps splitting the right most pane and adding the tab there.

In user code, it can be solved by adding ``` if sys.platform == 'win32': asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) ``` Maybe it should be part of the example?

`WindowsSelectorEventLoopPolicy` was added in 3.7 In 3.8 the default event loop for windows was changed to `ProactorEventLoop`. At which point this became necessary. Seems this was already discussed in #78

16-bit grayscale TIFF files are opened as `I;16`, but 16-bit grayscale PNG files for some reason aren't.

This issue was already raised and there is a pull request. #41

This should probably be namespaced. There could be multiple different clients (web UIs, native client), accessing the same API and would potentially modify each other's data. There should be an...

I don't know what all other clients exist and what they will use. Even if I prefix my properties, others could just ignore any conventions and rewrite the whole thing...