From ca2255804bfce778cbece809de8ef07e5f5492ec Mon Sep 17 00:00:00 2001 From: Daniel Oaks Date: Wed, 7 Sep 2016 21:35:43 +1000 Subject: [PATCH] README: Add info on new SASL stuff --- CHANGELOG.md | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 966089c5..33c5750b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,8 +20,8 @@ Initial release of Oragono! * 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 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 ability to register and login to accounts (with passphrase or certfp). +* Added support for IRCv3 capabilities [`extended-join`](http://ircv3.net/specs/extensions/extended-join-3.1.html), [`sasl`](http://ircv3.net/specs/extensions/sasl-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 channel creator (`O`) privilege to founder/admin/halfops (`qah`) privileges. diff --git a/README.md b/README.md index 18b0209b..70229b6d 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). For the purpo * ident lookups for usernames * passwords stored in [bcrypt][go-crypto] format * channels that [persist][go-sqlite] between restarts (+P) -* client accounts +* client accounts and SASL * IRCv3 support ### What about TLS/SSL?