From aed9e56e656bcace0ca8511cdbc619cfb1c13088 Mon Sep 17 00:00:00 2001 From: itsjunetime Date: Tue, 2 Dec 2025 21:05:51 -0600 Subject: [PATCH] Release version 0.5.0 --- CHANGELOG.md | 2 ++ Cargo.lock | 5 +++-- Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4873495..b63497a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# v0.5.0 + - Switched simd base64 crate for one that works on stable (from `vb64` to `base64_simd`) - Allow boolean arguments to function as flags, without a `true` or `false` argument following the flag itself ([#109](https://github.com/itsjunetime/tdf/pull/109), thanks [@tatounee](https://github.com/tatounee)!) - Fix cropping issues when zooming out too much while using kitty protocol diff --git a/Cargo.lock b/Cargo.lock index 352e161..e0549cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1606,7 +1606,8 @@ dependencies = [ [[package]] name = "kittage" version = "0.1.1" -source = "git+https://github.com/itsjunetime/kittage.git#fbd2a7d42296771e044575c009ee34616a3964e5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be6b61789e2841119b210569d4acd950d47dae805f8d3235190d28cb40677632" dependencies = [ "base64-simd", "crossterm", @@ -3019,7 +3020,7 @@ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" [[package]] name = "tdf-viewer" -version = "0.4.3" +version = "0.5.0" dependencies = [ "console-subscriber", "cpuprofiler", diff --git a/Cargo.toml b/Cargo.toml index ea13e6a..ece30c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tdf-viewer" -version = "0.4.3" +version = "0.5.0" authors = ["June Welker "] edition = "2024" description = "A terminal viewer for PDFs" @@ -41,7 +41,7 @@ nix = { version = "0.30.0", features = ["signal"] } mupdf = { git = "https://github.com/messense/mupdf-rs.git", rev = "2e0fae910fac8048c7008211fc4d3b9f5d227a07", default-features = false, features = ["svg", "system-fonts", "img"] } rayon = { version = "1", default-features = false } # kittage = { path = "../kittage/", features = ["crossterm-tokio", "image-crate", "log"] } -kittage = { git = "https://github.com/itsjunetime/kittage.git", features = ["crossterm-tokio", "image-crate", "log"] } +kittage = { version = "0.1.1", features = ["crossterm-tokio", "image-crate", "log"] } memmap2 = "0" csscolorparser = { version = "0.8.0", default-features = false }