diff options
| author | krolxon <krolyxon@tutanota.com> | 2024-06-12 15:06:06 +0530 |
|---|---|---|
| committer | krolxon <krolyxon@tutanota.com> | 2024-06-12 15:06:06 +0530 |
| commit | 8a8176e97b0b2e78b5c87573aa9598a79984af13 (patch) | |
| tree | 85cba0c734df96ca8e2ac2bdf913f5d062735340 | |
| parent | a63845bae8dec8499237c67d9136f89632565bbe (diff) | |
v0.1.5
| -rwxr-xr-x | Cargo.lock | 2 | ||||
| -rwxr-xr-x | Cargo.toml | 2 | ||||
| -rwxr-xr-x | src/connection.rs | 1 |
3 files changed, 3 insertions, 2 deletions
@@ -282,7 +282,7 @@ dependencies = [ [[package]] name = "rmptui" -version = "0.1.4" +version = "0.1.5" dependencies = [ "crossterm", "mpd", @@ -5,7 +5,7 @@ description = """ a fast and minimal tui mpd client """ readme = "README.md" -version = "0.1.4" +version = "0.1.5" edition = "2021" repository = "https://github.com/krolyxon/rmptui" keywords = ["rmptui", "mpd", "music", "cli", "tui", "client"] diff --git a/src/connection.rs b/src/connection.rs index d3ff3a5..9bfba10 100755 --- a/src/connection.rs +++ b/src/connection.rs @@ -5,6 +5,7 @@ use mpd::{Client, State}; use simple_dmenu::dmenu; use std::time::Duration; +/// Defines the current status of volume (Muted or UnMuted) #[derive(Debug)] pub enum VolumeStatus { Muted(i8), |
