David Fiala
David Fiala
Thank you!
Would you please clarify how you are publishing the 5.4.0 betas during this transitional moment? For example: - 10 days ago: https://www.npmjs.com/package/@xterm/xterm/v/5.4.0-beta.14 - 18 days ago: https://www.npmjs.com/package/xterm/v/5.4.0-beta.37 For example: the...
Some recent updates on the node side: As more projects have noticed breakages introduced by adding `navigator` in v21.0.0, the node team recently merged in `navigator.userAgent` in v21.1.0. If you'd...
``` #include #include #include #include #include #include static plog::ColorConsoleAppender consoleAppender(plog::streamStdErr); struct termios original_attributes; void enable_raw_mode() { tcgetattr(STDIN_FILENO, &original_attributes); struct termios raw = {0}; cfmakeraw(&raw); tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw); } void disable_raw_mode()...
Correct. But I could argue that we shouldn't rewrite the user's log text itself. That could produce unexpected results if users think they are getting verbatim output, and it may...
Accidentally I reported this on Slack without seeing this bug first. In case it helps, I can provide additional details on my repro: Node v22.4.1 connect rpc v1.4.0 Can confirm...
As this test was being skipped in the v18x and v20x branches, was there a deliberate reason it isn't also being skipped in the v22x branch as well? I only...
EDIT: looks like package-lock.json has grpc-js 1.10.8 at current head: https://github.com/smartive/zitadel-node/blob/cd68a02fa7661d30e4637ef7559d7b0378fdb9c6/package-lock.json#L175 My notes indicated some 1.10 versions may cause issues. https://github.com/deeplay-io/nice-grpc/pull/609#issuecomment-2151244474 though v1.10.8 was not listed at the time. I've...
Would be good to ensure there's a compile time flag to exclude this entirely, not just a runtime flag. Mostly to save space and resources on embedded environments.
``` --------------------------- Outdated Visual C++ Runtime --------------------------- OBS Studio requires a newer version of the Microsoft Visual C++ Redistributables. You will now be directed to the download page. --------------------------- OK...