Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaspoffo committed Nov 18, 2022
1 parent 6a01960 commit 6ad3e7d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,27 @@
## Unreleased

### Added ⭐
* Added function `client_addr`, `user_data`, `is_client_connected` for `RenetServer`, some utilities from `NetcodeServer`.
* Added function `client_addr`, `user_data`, `is_client_connected`, `max_clients`, `connected_clients` for `RenetServer`, some utilities from `NetcodeServer`. [(commit)](https://github.com/lucaspoffo/renet/commit/576962e53a2e2b74f8f3c8355ae2abf706826f73) [(commit)](https://github.com/lucaspoffo/renet/commit/dff1fc5785ac2b82309b92477c90a250feb3af55)
* Renetcode/Renet: make generate_random_bytes public, this can be used to generate a random private key. [(commit)](https://github.com/lucaspoffo/renet/commit/f8509f11017e2d234c8059cc181f9644468ea87f)
* Rechannel: add `DefaultChannel` enum, usefull when using the default channel configuration. [(commit)](https://github.com/lucaspoffo/renet/commit/58311b4e7293555bd50e0c1d3cd325f7aa26d068)
* BevyRenet: add configurable event clearing. [(PR)](https://github.com/lucaspoffo/renet/pull/34)
* Rechannel: add configuration for unordered reliable channel. [(commit)](https://github.com/lucaspoffo/renet/commit/6f6ddf592650c124daca66cebf394bc79a0bbebc)
* Rechannel: add configuration for sequenced unreliable channel. [(commit)](https://github.com/lucaspoffo/renet/commit/a415a5d542aabc2c09cb5e80c30738c787e6d672)
* Renetcode: added logging. [(commit)](https://github.com/lucaspoffo/renet/commit/c963b65b66325c536d115faab31638f3ad2b5e48) [(commit)](https://github.com/lucaspoffo/renet/commit/2e41366cc5daa98edc07c7980fbb8199d0a555db)
* BevyRenet: updated bevy to version 0.9; [(PR)](https://github.com/lucaspoffo/renet/pull/55)

### Changed 🛠️
* Renetcode: remove `client_id` argument when creating an RenetClient. [(commit)](https://github.com/lucaspoffo/renet/commit/b2affb5d5659f4744faf8802c0718cc38c53f011)
* Rechannel: rename block channel to chunk channel, this makes clear what the channel does: the message is sliced in multiple chunks so it can be sent in multiple frames. Also, it is not confused with "blocking" thread/logic.


### Fixed 🐛
* Rechannel: when sending an empty message, this now gives an error. [(commit)](https://github.com/lucaspoffo/renet/commit/210c752c30d059408aa5765bb91749cbeae27ced)
* Rechannel: ignore already received block messages. [(commit)](https://github.com/lucaspoffo/renet/commit/6c15cf3db5b704fdb1a88cb250aecab6971b4d0a)

### Contributors 🙏
* [Aceeri](https://github.com/Aceeri)
* [Alainx277](https://github.com/Alainx277)

## 0.0.9 - 2022-07-25
### Added ⭐
Expand Down
2 changes: 1 addition & 1 deletion renet/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ impl RenetServer {
self.netcode_server.max_clients()
}

/// Returns the maximum number of clients that can be connected.
/// Returns the current number of clients connected.
pub fn connected_clients(&self) -> usize {
self.netcode_server.connected_clients()
}
Expand Down

0 comments on commit 6ad3e7d

Please sign in to comment.