diff --git a/Cargo.toml b/Cargo.toml index 295337c..ce59a20 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/readme.md b/readme.md index 5d79824..6da2b52 100644 --- a/readme.md +++ b/readme.md @@ -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 diff --git a/src/input/tty.rs b/src/input/tty.rs index 5cf491b..38dd3f6 100644 --- a/src/input/tty.rs +++ b/src/input/tty.rs @@ -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 {