Justus Bastian Flügel
Justus Bastian Flügel
the current setFullscreen works more like a .maximize() so I think we should call it that too. Behavour should be .maximize() = .toggleFullScreen() and .maximise(true) = .setFullScreen(true) and .maximize(false) =...
stayOnTop is inconsistent across operating systems. On macOS it lets a window stay onTop of the parent window, but on linux and windows it pins a window at the top...
Partly the same as #20
Empty checks in umfmessage.js are just if(var) but it should be if(var != null) for nullish strings like ''
Hi there! I was recently trying to combine proptest & the sqlx::test macro, and while the macro is great usually since proptest needs to run the test many times it...
In one project I am working on we are using sea-orm migrations to setup our db, and sqlx::test for unit tests. It would be nice if there was some way...
Allow the following: ```rs match_nodes!{ [tag#node_1(a),tag_1#node_2(b)..,tag_2#node_2(c)..] => todo!(); }; ``` with for example the grammar ```pest input = { #tag = node_1 ~ ";" ~ #tag_1 = node_2*~ ";" ~...
## Motivation So I've recently tried to create a generic axum handler for any sea-orm Entity, which allows me to for example fetch it. Since a specific entity would not...
Account for newer versions of inquirer and allow usage of versions of inquirer depending on strip-ansi without audit issues
### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) Bug fix: The errorWidget would never be displayed when running using DDC (dart web) and...