Chimit
Chimit
In Postman, there are very convenient browser-like hotkeys: cmd+w to close the tab, cmd+s to save changes in a request, etc. It would be nice to have them in Firecamp.
It would be great to have Mermaid.js diagrams available in MDX. Any plans on it?
If you make a screenshot on a Retina computer (any modern Mac) and select a visible area of 200x200 px the screenshot file would be 400x400. Here is an example...
Support of the `input_field_placeholder` keyboard parameter that allows you to set a placeholder into the input field: ```php $bot->reply('Hi', [ ...Keyboard::create('keyboard') ->addRow(KeyboardButton::create('Button')) ->resizeKeyboard() ->inputFieldPlaceholder('Hello, world!') ->toArray(), 'parse_mode' => 'HTML', ]);...
When the bot receives an incoming message from itself in the **Heard** middleware, `$message->getSender()` returns a user Telegram ID instead of a bot Telegram ID. In the example below, I...
An inline button may have a type of `web_app` (https://core.telegram.org/bots/api#inlinekeyboardbutton). This PR makes it possible to create such buttons: ```php KeyboardButton::create('Start')->webApp('https://yourwebapp.url') ```
In supergroups, quoting of any message gets `message_thread_id` set even if the supergroup doesn't have topics. This causes botman to respond to such messages using the same `message_thread_id` but since...