Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
TimonPost authored Aug 5, 2023
2 parents 66065cc + eaa8b75 commit 15daf3c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
## Added ⭐

- Add `SetCursorStyle` to set the cursor apearance and visibility. (#742)
- Add key release event for windows. (#745)
- Add a function to check if kitty keyboard enhancement protocol is available. (#732)
- Add filedescriptors poll in order to move away from mio in the future (can be used via `use-dev-tty`). (#735)

Expand All @@ -22,10 +21,10 @@
- Improved parsing of event types/modifiers with certain keys for kitty protocol. (#716)

## Breaking ⚠️

- Remove `SetCursorShape` in favour of `SetCursorStyle`. (#742)
- Make Windows resize event match `terminal::size` (#714)
- Rust 1.58 or later is now required.
- Add key release event for windows. (#745)

# Version 0.25.0
BREAKING: `Copy` trait is removed from `Event`, you can keep it by removing the "bracked-paste" feature flag. However this flag might be standardized in the future.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Click to show Cargo.toml.

```toml
[dependencies]
crossterm = "0.23"
crossterm = "0.26"
```

</details>
Expand Down Expand Up @@ -136,7 +136,7 @@ Checkout this [list](https://docs.rs/crossterm/latest/crossterm/index.html#suppo

```toml
[dependencies.crossterm]
version = "0.23"
version = "0.26"
features = ["event-stream"]
```

Expand Down
2 changes: 1 addition & 1 deletion src/terminal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ impl<T: fmt::Display> Command for SetTitle<T> {
}
}

/// A command that instructs the terminal emulator to being a synchronized frame.
/// A command that instructs the terminal emulator to begin a synchronized frame.
///
/// # Notes
///
Expand Down

0 comments on commit 15daf3c

Please sign in to comment.