dgw

Results 632 comments of dgw

The example for 'registered' literally logs "Connected!" and then joins a channel. A 'registered' event is [emitted](https://github.com/kiwiirc/irc-framework/blob/a2697c944efce407a6fd85b876f83907362eead4/src/commands/handlers/registration.js#L28) when irc-framework receives RPL_WELCOME, i.e. the client has finished connecting to the network....

Since the nickserv module already supports configuring the messages it sends, I don't think it's too much to also support custom matching on inbound notices from services. I think I'll...

I'd never thought about making it global, but certainly being able to load modules_online as a user module (instead of having to load it for each network) would be a...

On further investigation, I believe it has to do with [this conditional](https://github.com/znc/znc/blob/17e0d1031e54a74ae7a7c515dd7f5a8b41b5b4bd/src/IRCSock.cpp#L1052-L1053), which calls the `OnPrivMessage()` module hooks only if the message target is equal to `GetNick()`. If not, it...

@shymega Honestly, I haven't been back to look at it. I just make sure to send stuff in queries directly with BitlBee, instead of using the service's app/website. (I've also...

User at the very least. I load this module on every single network I add, simply because without it using multiple clients becomes an exercise in frustration.

Figured I'd go ahead and merge #2706 (removing `url`) as long as this already had a merge conflict with `wikipedia`. :)

This would be useful behavior, actually. Often I want to make a channel sticky not necessarily because I always want to be in it, but because I want to make...

The module code is simple enough to understand, but it's not the ideal workflow. Clients that allow parting channels by e.g. closing their windows won't send the "force" pseudo-argument. I...

After converting the `.blocks` lists to `SetAttribute` (needs #2687 merged first to avoid unnecessary merge conflicts), we should audit all the `.blocks` code again for usage of `strip()` or other...