aboutsummaryrefslogtreecommitdiff
path: root/chat.go
Commit message (Collapse)AuthorAgeFilesLines
* Allow plugins to intercept client-to-server chat messagesHimbeer2024-12-071-1/+9
|
* Accept any parameter type to ClientConn.SendChatMsgHimbeer2024-10-131-2/+2
| | | | | | | Previously, only strings were accepted. Using fmt.Sprintln internally and trimming the newline is more idiomatic because it allows easy pretty-printing of types with string overrides as well as errors. Call sites are going to be updated over time alongside other modifications.
* remove io.Writer from chat command handler signatureHimbeerserverDE2023-12-021-25/+1
| | | | This commit closes #119.
* update to 5.5.xHimbeerserverDE2023-06-081-1/+1
| | | | closes #71
* Improve PRHimbeerserverDE2022-05-141-5/+7
|
* some more requested changeRiley2022-05-141-4/+5
|
* requested changesRiley2022-05-111-12/+5
|
* chat exec pluginapiRiley2022-05-101-0/+19
|
* Make chat command handlers run concurrentlyHimbeerserverDE2022-05-011-0/+4
| | | | They can't hang the packet handler anymore and the user is warned if commands take a lot of time to run
* Make go vet happyHimbeerserverDE2022-04-211-1/+1
|
* Smarter logging (anon5)HimbeerserverDE2021-09-131-4/+4
|
* Fix telnet command loggingHimbeerserverDE2021-09-121-10/+0
|
* CLI support (#59)HimbeerserverDE2021-09-121-1/+35
|
* Document exported code (#49)HimbeerserverDE2021-09-101-0/+2
|
* Add Colorize helperHimbeerserverDE2021-09-101-0/+4
|
* Make SendChatMsg variadicHimbeerserverDE2021-09-091-2/+2
|
* Expose chat message APIHimbeerserverDE2021-09-091-0/+60