aboutsummaryrefslogtreecommitdiffstats
path: root/irc_channel.c
Commit message (Collapse)AuthorAgeLines
...
* Put the control channel settings into user-changeable settings.Wilmer van der Gaast2010-06-05-11/+100
|
* Just enough code to join named chatrooms again. This UI is *not* final, the ↵Wilmer van der Gaast2010-05-14-1/+19
| | | | | | | | "chat" command will probably mostly stick around for bw compatibility. Still thinking about how this should work eventually.
* Fixed irc_channel_name_ok(): One-character channel names are okay, also theWilmer van der Gaast2010-05-10-1/+12
| | | | | first character after the prefix *can* be a number.
* Per-account channels also exist now.Wilmer van der Gaast2010-05-09-0/+2
|
* /join &groupname and all people in that group will be in that channel.Wilmer van der Gaast2010-05-09-0/+5
|
* First bits for different channel types.Wilmer van der Gaast2010-05-09-0/+23
|
* No. Run the part handler from the IRC /PART command, not from irc_channel.c.Wilmer van der Gaast2010-05-09-4/+0
| | | | | This was causing troubles with Twitter at disconnect time.
* This is how you now start groupchats: /join #channel, /invite people.Wilmer van der Gaast2010-05-09-1/+33
|
* Also allow addressing people inside the control channel using a comma.Wilmer van der Gaast2010-05-08-2/+2
|
* Allow leaving groupchat channels.Wilmer van der Gaast2010-05-08-0/+4
|
* Use irc_channel_name_ok() and check if a channel with that name alreadyWilmer van der Gaast2010-05-05-1/+1
| | | | | exists before creating it.
* Add irc_channel_printf() for slightly saner root messages from a randomWilmer van der Gaast2010-05-04-2/+14
| | | | | channel.
* Fixed strncpy() usage, and show error when trying to msg non-existent peopleWilmer van der Gaast2010-05-03-0/+6
| | | | | via the channel.
* Restore away_devoice.Wilmer van der Gaast2010-05-03-0/+16
|
* Put a channel userlist in irc_channel_user elements so we can save flagsWilmer van der Gaast2010-05-03-7/+36
| | | | | (i.e. modes).
* Restored classical control channel behaviour (the ability to talk toWilmer van der Gaast2010-05-02-5/+30
| | | | | contacts in there).
* Restored the rename command.Wilmer van der Gaast2010-04-04-1/+1
|
* Send nickname change notifications when necessary.Wilmer van der Gaast2010-04-04-2/+8
|
* Cleaned lots of compiler warnings so I can get some signal again.Wilmer van der Gaast2010-04-01-1/+4
|
* irc_usermsg() works a little bit again. Have to figure out how and whereWilmer van der Gaast2010-03-27-0/+3
| | | | | to restore multiline support though.
* Added privmsg handlers to users/channels. root commands are coming back.Wilmer van der Gaast2010-03-27-0/+15
|
* Mode stuff. Also disallow unsetting +R umode which was possible so farWilmer van der Gaast2010-03-27-0/+5
| | | | | (and shouldn't be).
* Topic handling changes.Wilmer van der Gaast2010-03-27-2/+10
|
* Collect that garbage.Wilmer van der Gaast2010-03-26-0/+17
|
* Added JOIN, NAMES and PART commands.Wilmer van der Gaast2010-03-26-0/+15
|
* Simple IRC channel interface, use it to represent the control channel.Wilmer van der Gaast2010-03-26-0/+88