diff options
| author | Alexander Barton <alex@barton.de> | 2015-08-07 17:20:47 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2015-08-07 17:20:47 +0200 |
| commit | 2c18e9a7f803ff74613354c8912eddd79fa0ed5c (patch) | |
| tree | 7b1195c93afc4f0166d582f52071ec53a4a5d5fd | |
| parent | 9811223fb882413645db38948ac05fa21ddd3514 (diff) | |
| download | ngircd-2c18e9a7f803ff74613354c8912eddd79fa0ed5c.tar.gz ngircd-2c18e9a7f803ff74613354c8912eddd79fa0ed5c.zip | |
Update NEWS and ChangeLog files
| -rw-r--r-- | ChangeLog | 16 | ||||
| -rw-r--r-- | NEWS | 11 |
2 files changed, 27 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 477bba4d..49ea1bde 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,22 @@ ngIRCd 23 + ngIRCd 23~rc1 + - INSTALL: Add deprecation notice for "PredefChannelsOnly" variable. + - Use "NOTICE *" before registration instead of "NOTICE AUTH". "AUTH" is + a valid nickname so sending notices to it is probably not a good idea. + Use "*" as the target instead as done with numerics when the nick is not + available. This mimics the behaviour in Charybdis, IRCD-Hybrid, InspIRCd + 2.2, Plexus 4, etc. Closes #217. + The "NoticeAuth" configuration variable (ngircd.conf) has been renamed + to "NoticeBeforeRegistration" accordingly, but the old name is still + supported for compatibility reasons. + - Implement new channel mode "N" (regular users can't change their nick + name while on this channel). Closes #214. + - README, AUTHORS: Update mailing list and issue tracker URLs. + - Remove doc/GIT.txt (it is outdated), update doc/Contributing.txt: + ngIRCd uses GitHub, and Git itself is quite common today. So don't + include an own Git "mini HowTo" any longer. - Specify session context for OpenSSL clients. This enables some OpenSSL clients, including Pidgin and stunnel 5.06, to reuse a session. Patch by Tom Ryder <tom@sanctum.geek.nz>, thanks! Closes #182. diff --git a/NEWS b/NEWS index 86958770..4a8bbaf5 100644 --- a/NEWS +++ b/NEWS @@ -11,6 +11,17 @@ ngIRCd 23 + ngIRCd 23~rc1 + - Use "NOTICE *" before registration instead of "NOTICE AUTH". "AUTH" is + a valid nickname so sending notices to it is probably not a good idea. + Use "*" as the target instead as done with numerics when the nick is not + available. This mimics the behaviour in Charybdis, IRCD-Hybrid, InspIRCd + 2.2, Plexus 4, etc. Closes #217. + The "NoticeAuth" configuration variable (ngircd.conf) has been renamed + to "NoticeBeforeRegistration" accordingly, but the old name is still + supported for compatibility reasons. + - Implement new channel mode "N" (regular users can't change their nick + name while on this channel). Closes #214. - Keep track of who placed bans, invites, and excepts. Idee and implementation by LucentW, Thanks! Closes #203. - Implement numeric RPL_LISTSTART(321). lightIRC and other clients |