Ondrej Medek

Results 62 issues of Ondrej Medek

And please, remove the file at `https://install.rocket.chat/rocketchatctl` - it's obsolete.

install should fail when latest info cannot be fetched or parsed. See also #55

What about to use file watcher [chokidar](https://github.com/paulmillr/chokidar) instead of poll interval?

I would like to have a password mode without output to console, too. E.g. ``` public string Edit(string prompt, string initial, bool passwordMode = false); ``` It must not save...

When I press Ctrl+C on Linux with .NET Core I got: ``` System.PlatformNotSupportedException: Thread abort is not supported on this platform. at System.Threading.Thread.Abort() at System.Console.HandleBreakEvent(ConsoleSpecialKey controlKey) at System.ConsolePal.ControlCHandlerRegistrar.HandleBreakEvent(Object state) ```...

I find the autocompletion example somewhat not usable. What about ```c# var completions = new string[] { "status", "help", "state", "stx" }; // Configures auto-completion, in this example, the result...

File association should be removed on uninstall, too (`\\Software\\Classes\\.${ext}\\OpenWithProgids`).

`AccordionContainer.layout` throws `Cannot read property 'h' of undefined` when trying to `addChild` or `removeChild` right after the `startup`, see [this SO question](https://stackoverflow.com/questions/11686153/) and [this PoC code](https://stackoverflow.com/a/34870797/254109) particularly.

Consider to add `-new_console:p` parameter.

The XML declaration is not serialized, try the code: ```js let doc = new window.DOMParser().parseFromString('Ahoy', 'application/xml'); console.log(new window.XMLSerializer().serializeToString(doc)); ``` Chrome output: `Ahoy` jsdom 15.1.1, w3c-xmlserializer 1.1.2 output: `Ahoy`