BetaRays
BetaRays
This also happens on Arch Linux (using the [`warpd` AUR package](https://aur.archlinux.org/packages/warpd)) on Xfce4. I simply tried running `warpd` in a terminal. There is no output in the terminal after killing...
> - With OpenSSL versions 1.1.0 or higher, the native DANE functions are used to check pinsets > - With OpenSSL versions between 1.0.0 and 1.1.0, is uses an (included)...
I encountered a similar behavior with Prosody’s “Create new account invite” adhoc command, which seems to be defined in https://hg.prosody.im/0.12/file/tip/plugins/mod_invites_adhoc.lua. Maybe Converse.js doesn’t currently handle adhoc commands that don’t include...
As expected, Converse.js assumes all ad-hoc commands are multistage, unlike these examples in the XEP: https://xmpp.org/extensions/xep-0050.html#execute-simple. This includes Prosody’s “Get uptime” command, which just replies with a [``](https://xmpp.org/extensions/xep-0050.html#desc-note) of `type`...
I see that `getCommandFields` also fails (this is the first error that is logged), which causes `fetchCommandForm` to enter [this part of the code](https://github.com/conversejs/converse.js/blob/master/src/headless/plugins/adhoc/api.js#L59), which is also supposed to show...
Even when the command initially provides a form to fill, Converse.js doesn’t show neither `jabber:x:data` `result`s, nor `note`s.
The [`maybeShow` function and the `ChatBox` model](https://github.com/conversejs/converse.js/blob/master/src/headless/plugins/chat/model.js#L1065) might be of interest, but getting and setting the contents of the bottom text box should probably not be done in a headless...
> Probably because of disable-while-typing settings of libinput. Indeed, adding `input * dwt disabled` (which controls `disable-while-typing`) to my Sway configuration allows me to move the cursor while pressing space.
tI’m also interested by this. Though I’m no web developer, I managed to change the chatroom list ordering to prioritize domain names with the following diff: ```patch diff --git a/src/plugins/roomslist/templates/roomslist.js...
Apparently, converse.js stores the state (collapsed or expanded) of roster groups in local storage: see [src/headless/plugins/roster/contacts.js](https://github.com/conversejs/converse.js/blob/d0594a6bfcea2da8b06067410d551c17a9be0b28/src/headless/plugins/roster/contacts.js#L17), [src/plugins/rosterview/utils.js](https://github.com/conversejs/converse.js/blob/d0594a6bfcea2da8b06067410d551c17a9be0b28/src/plugins/rosterview/utils.js#L9) and [src/plugins/rosterview/templates/group.js](https://github.com/conversejs/converse.js/blob/d0594a6bfcea2da8b06067410d551c17a9be0b28/src/plugins/rosterview/templates/group.js#L50). This is stored in the roster headless plugin: what is the...