chore: bump version

This commit is contained in:
Tal 2025-09-06 22:21:41 +02:00
parent 9faceeb659
commit 66d90ae82f
4 changed files with 4 additions and 3 deletions

2
Cargo.lock generated
View File

@ -1508,7 +1508,7 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
[[package]]
name = "lowfi"
version = "1.7.2-dev"
version = "1.7.0"
dependencies = [
"arc-swap",
"atomic_float",

View File

@ -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"

View File

@ -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

View File

@ -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())))
}
};