Release version 0.5.0 (#124)

This commit is contained in:
June
2025-12-02 21:28:43 -06:00
committed by GitHub
parent a4905b2ae5
commit 7b9e1462da
3 changed files with 7 additions and 4 deletions
+2
View File
@@ -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
Generated
+3 -2
View File
@@ -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",
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "tdf-viewer"
version = "0.4.3"
version = "0.5.0"
authors = ["June Welker <junewelker@gmail.com>"]
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 }