diff --git a/Cargo.lock b/Cargo.lock index 3228180..9fdaeb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1508,7 +1508,7 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" [[package]] name = "lowfi" -version = "1.7.2-dev" +version = "1.7.0" dependencies = [ "arc-swap", "atomic_float", diff --git a/Cargo.toml b/Cargo.toml index 367be91..419052e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lowfi" -version = "1.7.2-dev" +version = "1.7.0" edition = "2021" description = "An extremely simple lofi player." license = "MIT" diff --git a/README.md b/README.md index 875ac56..46616bd 100644 --- a/README.md +++ b/README.md @@ -126,6 +126,7 @@ Yeah, that's it. | `-`, `_`, `j`, `↓` | Volume Down 10% | | `←` | Volume Down 1% | | `q`, CTRL+C | Quit | +| `b` | Bookmark | > [!NOTE] > Besides its regular controls, lowfi offers compatibility with Media Keys diff --git a/src/player/ui/components.rs b/src/player/ui/components.rs index 41cc730..6873850 100644 --- a/src/player/ui/components.rs +++ b/src/player/ui/components.rs @@ -87,7 +87,7 @@ impl ActionBar { Self::Muted => { let msg = "+ to increase volume"; - ("muted", Some((String::from(msg), msg.len()))) + ("muted,", Some((String::from(msg), msg.len()))) } };