EdJoPaTo
EdJoPaTo
@kekemeke see both of my messages. [Firstly](https://github.com/RealSpeaker/telegraf-session-local/pull/147#issuecomment-852261189) this PR is technically wrong as the typings differ from the sources. [Secondly](https://github.com/RealSpeaker/telegraf-session-local/pull/147#issuecomment-973160365) you might want to consider switching to grammY. grammY has...
> The current handling is a little confusing. Especially inside JSON Payloads where `←` & `↓` toggle between `{"POWER":"ON"}` and ... a different visualization. That actually is a feature: When...
awesome! Feel free to put them on a separate branch and provide a PR :blue_heart: I also started some improvements locally about page up / down logic but that was...
`Home`/`End`/`PageUp`/`PageDown` are added in 020a179 and bc2ad8e `h`/`j`/`k`/`l` are currently used as arrow keys (like in vim). Therefore `h` for help wouldn't work. Maybe a bar at the bottom displaying...
Thank you for the ideas @YAMLcase! The current behaviour is selecting an unselected topic on click. When it’s already selected, it’s toggled. A double click on an unselected one therefore...
The only time we notice when a packet is retained is when a connection to the broker is started. All retained messages are sent to the client, then its not...
I think this can be closed as there is no way to do this?
Also the `MqttOptions::parse_url` logic does not handle this so its incapable of handling WebSockets at the moment: https://github.com/bytebeamio/rumqtt/blob/2f11546b64d4ab86b2b49642d8b7068f624992a9/rumqttc/src/lib.rs#L609-L631 I wrote my own logic to handle this: https://github.com/EdJoPaTo/mqttui/blob/4759bef5005aeb9aef1c8129aef1a021ff36cb3c/src/main.rs#L29-L60
Maybe also relevant for this discussion is my decision against using MqttOptions as URL query parameters as they would be mixed up with the WebSocket connection URL. Also the username/password...
The `.url()` accepts constants, functions and async functions. I assume your function generating the checkout link is async so you could supply it as the url function: ```ts menu.url('Click to...