Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ All notable changes to rustvncserver will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.2.0] - 2025-12-17

### Added

- **ContinuousUpdates Extension (RFC 6143):**
- Pseudo-encoding -313 for client capability advertisement
- Send EndOfContinuousUpdates (message type 150) when client advertises support
- Handle EnableContinuousUpdates message to enable/disable push updates
- When enabled, server pushes updates without waiting for FramebufferUpdateRequest
- When disabled, uses traditional request-response model

- **Repeater Progress Events:**
- `RfbMessageSent` event - emitted when RFB ID sent to repeater
- `HandshakeComplete` event - emitted when VNC handshake completes
- Request ID tracking for correlating connection events
- `connect_repeater_with_request_id()` and `connect_repeater_with_progress()` APIs

## [2.1.0] - 2025-12-17

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustvncserver"
version = "2.1.0"
version = "2.2.0"
edition = "2021"
rust-version = "1.90"
authors = ["Dustin McAfee"]
Expand Down
Loading