Results 67 comments of Brett Kosinski

Huh, the latest version of libpurple-signald *should* do this. If you look at groups.c:228 you can see the line where it sets the chat as persistent in Pidgin. That was...

> You are right, I am seeing the code line. However, when creating a new chat within the signal account, this chat is created without the "persistent" flag. I have...

Also replicated here, python 3.8.2, but using this very basic script: ```python import weechat import notify2 weechat.register("test", "test", "0.0.1", "MIT", "test", "", "") notify2.init("weechat") wn = notify2.Notification("Foo", "bar", "/usr/share/pixmaps/weechat.xpm") wn.show()...

Just a quick update, I need to keep messing with the PR, as it's a bit more complex than I initially thought. In particular, if you use the official Slack...

Just a quick note, I've pushed a final PR that I think is in good shape, including a few new unit tests that cover this behaviour!

Good news, it looks like this has been added! https://api.slack.com/methods/conversations.mark My first thought is combining this with a new @ slack command to mark the current channel or all channels...

Just a heads up: Hexchat has (inexplicably) a hardcoded password length limit of 85-ish characters, which makes using the xoxc auth header break... now, fortunately, ZNC doesn't share that issue,...

FYI, that regex contains lookbehinds, which only Chrome seems to support (or, at least, Firefox definitely doesn't). This version of that snippet seems to work across both browsers: ```javascript var...

I needed this as well, and it looks like altering this plugin as-is is harder than it looks due to the need to escape the output for XML documents, so...

This is a duplicate of #52. Check out that thread for a workaround in the meantime (confirmed over here).