Skip to content
Open
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
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ edition = "2021"

[dependencies]
libc = "0.2"
unicode-width = "0.1.10"
unicode-segmentation = "1.10.0"
chrono = "0.4.23"
unicode-width = "0.1.13"
unicode-segmentation = "1.11.0"
chrono = "0.4.38"

[lib]
name = "carbonyl"
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ Browsh is the original "normal browser into a terminal" project. It starts Firef

As far as tested, the operating systems under are supported:

- Linux (Debian, Ubuntu and Arch tested)
- Linux (Debian, Ubuntu and Arch tested. Should work at fedora too with docker but not fully tested)
- MacOS
- Windows 11 and WSL
- Windows 11 and WSL (only through docker. does not works normal)

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion src/input/tty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ enum TTY {
File(File),
}

const SEQUENCES: [(u32, bool); 4] = [(1049, true), (1003, true), (1006, true), (25, false)];
const SEQUENCES: [(u32, bool); 5] = [(1049, true), (1002, true), (1003, true), (1006, true), (25, false)];

impl TTY {
fn stdin() -> TTY {
Expand Down