aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xCargo.lock2
-rwxr-xr-xCargo.toml2
-rwxr-xr-xsrc/connection.rs1
3 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b661612..4075653 100755
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -282,7 +282,7 @@ dependencies = [
[[package]]
name = "rmptui"
-version = "0.1.4"
+version = "0.1.5"
dependencies = [
"crossterm",
"mpd",
diff --git a/Cargo.toml b/Cargo.toml
index 3ff8067..1efd7d8 100755
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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),