Update README.md, version to 0.3.0
This commit is contained in:
parent
9cf94f7377
commit
f3ff47bbc8
3 changed files with 21 additions and 4 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1668,7 +1668,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mpd_info_screen"
|
name = "mpd_info_screen"
|
||||||
version = "0.2.20"
|
version = "0.3.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bindgen",
|
"bindgen",
|
||||||
"freetype",
|
"freetype",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mpd_info_screen"
|
name = "mpd_info_screen"
|
||||||
version = "0.2.20"
|
version = "0.3.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Displays info on currently playing music from an MPD daemon"
|
description = "Displays info on currently playing music from an MPD daemon"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
21
README.md
21
README.md
|
@ -11,9 +11,17 @@ A Rust program that displays info about the currently running MPD server.
|
||||||
The window shows albumart (may be embedded in the audio file, or is a "cover.jpg" in the same directory as the song file), a "time-remaining"
|
The window shows albumart (may be embedded in the audio file, or is a "cover.jpg" in the same directory as the song file), a "time-remaining"
|
||||||
counter, and the filename currently being played
|
counter, and the filename currently being played
|
||||||
|
|
||||||
|
By default, unicode characters will not display properly. Build the project with
|
||||||
|
the `unicode_support` feature enabled to enable fetching fonts from the local
|
||||||
|
filesystem to display unicode characters properly (if the system is missing a
|
||||||
|
font, then it will still be displayed incorrectly).
|
||||||
|
|
||||||
|
cargo build --release --features unicode_support
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
|
|
||||||
mpd_info_screen 0.2.20
|
|
||||||
|
mpd_info_screen 0.3.0
|
||||||
|
|
||||||
USAGE:
|
USAGE:
|
||||||
mpd_info_screen [FLAGS] [OPTIONS] <host> [port]
|
mpd_info_screen [FLAGS] [OPTIONS] <host> [port]
|
||||||
|
@ -42,7 +50,7 @@ Also note that pressing the H key while displaying text will hide the text.
|
||||||
|
|
||||||
# Issues / TODO
|
# Issues / TODO
|
||||||
|
|
||||||
- [ ] UTF-8 Non-ascii font support
|
- [x] UTF-8 Non-ascii font support (Use the `unicode_support` feature to enable; only tested in linux)
|
||||||
- [x] Support for album art not embedded but in the same directory
|
- [x] Support for album art not embedded but in the same directory
|
||||||
|
|
||||||
## MPD Version
|
## MPD Version
|
||||||
|
@ -64,3 +72,12 @@ MIT license.
|
||||||
|
|
||||||
Uses dependency [structopt](https://crates.io/crates/structopt) which is
|
Uses dependency [structopt](https://crates.io/crates/structopt) which is
|
||||||
licensed under Apache-2.0 or MIT licenses.
|
licensed under Apache-2.0 or MIT licenses.
|
||||||
|
|
||||||
|
## Unicode Support Dependencies
|
||||||
|
|
||||||
|
Uses dependency
|
||||||
|
[fontconfig](https://www.freedesktop.org/wiki/Software/fontconfig/) which is
|
||||||
|
[licensed with this license](https://www.freedesktop.org/software/fontconfig/fontconfig-devel/ln12.html).
|
||||||
|
|
||||||
|
Uses dependency [freetype](https://freetype.org) which is
|
||||||
|
[licensed with this license](https://freetype.org/license.html).
|
||||||
|
|
Loading…
Reference in a new issue