Skip to content

Commit

Permalink
Update CHANGELOG, remove an old TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
osa1 committed Aug 28, 2020
1 parent 19f1fa2 commit 91c43cc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
- `/names` now sorts nicks lexicographically. (#235)
- tiny now re-sets current away status on reconnect. Previously the away status
would be lost. (#234)
- To make joining channels with +R mode (which means joining is only allowed
after identification via NickServ) more robust, tiny now makes 3 attempts to
join a channel (with a 10-second break after each attempt) when it gets a 477
response and the user has NickServ identification enabled (`nickserv_ident`
field in the config). Even though we send IDENTIFY messages (after
RPL_WELCOME) before JOIN messages (after RPL_ENDOFMOTD), sometimes
identification takes so long JOIN command fails with a 477. We now try joining
again with 10 seconds breaks, up to 3 times. (#236, #240)

# 2020/06/28: 0.6.0

Expand Down
2 changes: 1 addition & 1 deletion libtiny_client/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ struct StateInner {
/// order, in TUI?
chans: Vec<Chan>,

/// Away reason if away mode is on. `None` otherwise. TODO: I don't think the message is used?
/// Away reason if away mode is on. `None` otherwise.
away_status: Option<String>,

/// servername to be used in PING messages. Read from 002 RPL_YOURHOST. `None` until 002.
Expand Down

0 comments on commit 91c43cc

Please sign in to comment.