-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge PR #50 josueBarretogit/develop_v0.4.0
Release v0.4.0
- Loading branch information
Showing
28 changed files
with
4,447 additions
and
502 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "manga-tui" | ||
version = "0.3.1" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["Josue <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -11,19 +11,16 @@ keywords = ["cli", "command-line"] | |
categories = ["command-line-interface"] | ||
license = "MIT" | ||
exclude = [ | ||
"public/*" | ||
] | ||
include = [ | ||
"**/*.rs", | ||
"Cargo.toml", | ||
"public/*", | ||
"data_test/*" | ||
] | ||
|
||
[dependencies] | ||
ratatui = { version = "0.28.0", features = ["all-widgets", "palette", "unstable-widget-ref"] } | ||
ratatui = { version = "0.29.0", features = ["all-widgets", "palette", "unstable-widget-ref"] } | ||
ratatui-image = { version = "1.0.5", features = ["rustix"]} | ||
throbber-widgets-tui = "0.7.0" | ||
tui-input = "0.10.0" | ||
tui-widget-list = "0.12.0" | ||
throbber-widgets-tui = "0.8.0" | ||
tui-input = "0.11.0" | ||
tui-widget-list = "0.13.0" | ||
crossterm = { version = "0.28.1", features = ["event-stream"] } | ||
directories = "5.0.1" | ||
image = "0.25.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
# The format of the manga downloaded | ||
# values : cbz , raw, epub | ||
# default : cbz | ||
download_type = "cbz" | ||
download_type = "cbz" | ||
|
||
# Download image quality, low quality means images are compressed and is recommended for slow internet connections | ||
# values : low, high | ||
# default : low | ||
image_quality = "low" | ||
image_quality = "low" | ||
|
||
# Pages around the currently selected page to try to prefetch | ||
# values : 0-255 | ||
# default : 5 | ||
amount_pages = 5 | ||
|
||
# Whether or not bookmarking is done automatically, if false you decide which chapter to bookmark | ||
# values : true, false | ||
# default : true | ||
auto_bookmark = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.