Skip to content

Commit

Permalink
Version 1.10.0
Browse files Browse the repository at this point in the history
* Run cargo update
* Update README (add hex color support and ~ expansion)
  • Loading branch information
acuteenvy committed Feb 8, 2025
1 parent 7464802 commit 260f3b6
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 57 deletions.
100 changes: 50 additions & 50 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tlrc"
version = "1.9.3"
version = "1.10.0"
description = "Official tldr client written in Rust"
categories = ["command-line-utilities"]
homepage = "https://github.com/tldr-pages/tlrc"
Expand All @@ -19,13 +19,13 @@ default = ["socks-proxy"]
socks-proxy = ["ureq/socks-proxy"]

[dependencies]
clap = { version = "4.5.27", features = ["derive"] }
clap = { version = "4.5.28", features = ["derive"] }
dirs = "6.0.0"
once_cell = "1.20.2"
once_cell = "1.20.3"
ring = "0.17.8"
serde = { version = "1.0.217", features = ["derive"] }
toml = "0.8.19"
ureq = { version = "3.0.3", default-features = false, features = ["rustls", "platform-verifier"] }
toml = "0.8.20"
ureq = { version = "3.0.4", default-features = false, features = ["rustls", "platform-verifier"] }
yansi = "1.0.1"
zip = { version = "2.2.2", default-features = false, features = ["deflate"] }

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ or copy the below example.

```toml
[cache]
# Override the cache directory.
# Override the cache directory ('~' will be expanded to your home directory).
dir = "/path/to/cache"
# Override the base URL used for downloading tldr pages.
# The mirror must provide files with the same names as the official tldr pages repository:
Expand Down Expand Up @@ -168,6 +168,7 @@ example = 4
# Fixed colors: "black", "red", "green", "yellow", "blue", "magenta", "cyan", "white", "default"
# 256color ANSI code: { color256 = 50 }
# RGB: { rgb = [0, 255, 255] }
# Hex: { hex = "#ffffff" }
color = "magenta"
background = "default"
bold = true
Expand Down
2 changes: 1 addition & 1 deletion tldr.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" vim: colorcolumn=100 textwidth=100
.TH "TLRC" "1" "2024-07-29" "tlrc 1.9.3" "tlrc manual"
.TH "TLRC" "1" "2025-02-08" "tlrc 1.10.0" "tlrc manual"
.nh
.ad l
.SH NAME
Expand Down

0 comments on commit 260f3b6

Please sign in to comment.