registration: Add messages to changelog and readme

This commit is contained in:
Daniel Oaks 2016-09-05 22:55:30 +10:00
parent e3fbdebc48
commit 4b74f0826c
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ Initial release of Oragono!
* Added [`RPL_ISUPPORT`](http://modern.ircdocs.horse/#rplisupport-005) numeric as advertised by most other IRCds today. * Added [`RPL_ISUPPORT`](http://modern.ircdocs.horse/#rplisupport-005) numeric as advertised by most other IRCds today.
* Added ability to parse complex mode change syntax commonly used these days (i.e. `+h-ov dan dan dan`). * Added ability to parse complex mode change syntax commonly used these days (i.e. `+h-ov dan dan dan`).
* Added user mode for clients connected via TLS (`+Z`). * Added user mode for clients connected via TLS (`+Z`).
* Added ability to register accounts.
* Added support for IRCv3 capabilities [`extended-join`](http://ircv3.net/specs/extensions/extended-join-3.1.html), [`server-time`](http://ircv3.net/specs/extensions/server-time-3.2.html), and [`userhost-in-names`](http://ircv3.net/specs/extensions/userhost-in-names-3.2.html). * Added support for IRCv3 capabilities [`extended-join`](http://ircv3.net/specs/extensions/extended-join-3.1.html), [`server-time`](http://ircv3.net/specs/extensions/server-time-3.2.html), and [`userhost-in-names`](http://ircv3.net/specs/extensions/userhost-in-names-3.2.html).
### Changed ### Changed

View File

@ -25,6 +25,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). For the purpo
* ident lookups for usernames * ident lookups for usernames
* passwords stored in [bcrypt][go-crypto] format * passwords stored in [bcrypt][go-crypto] format
* channels that [persist][go-sqlite] between restarts (+P) * channels that [persist][go-sqlite] between restarts (+P)
* client accounts
* IRCv3 support * IRCv3 support
### What about TLS/SSL? ### What about TLS/SSL?