Made images in README load from GitLab; excluded images from Crate

This commit is contained in:
Thorsten Sommer 2023-11-08 19:43:08 +01:00
parent b91098d3d4
commit ce02cbe4d8
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 9 additions and 3 deletions

View File

@ -10,5 +10,6 @@ repository = "https://devops.tsommer.org/open-source/rust/crates/borderline"
readme = "README.md" readme = "README.md"
keywords = ["border", "terminal", "cli", "progressbar"] keywords = ["border", "terminal", "cli", "progressbar"]
categories = ["command-line-interface"] categories = ["command-line-interface"]
exclude = ["images/*"]
[dependencies] [dependencies]

View File

@ -45,9 +45,14 @@ borderline::print_border();
``` ```
While the progress bar is active: While the progress bar is active:
![progressbar.png](images/progressbar.png) ![progressbar.png](https://devops.tsommer.org/open-source/rust/crates/borderline/raw/main/images/progressbar.png)
When the program is done: When the program is done:
![done.png](images/done.png) ![done.png](https://devops.tsommer.org/open-source/rust/crates/borderline/raw/main/images/done.png)
In case that the given text is too long, it gets wrapped at word boundaries. When this is not possible, the text is wrapped at the given width. In case that the given text is too long, it gets wrapped at word boundaries. When this is not possible, the text is wrapped at the given width.
# Changelog
### Version 1.0.0
- Initial release