aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkrolxon <krolyxon@tutanota.com>2024-06-12 15:06:06 +0530
committerkrolxon <krolyxon@tutanota.com>2024-06-12 15:06:06 +0530
commit8a8176e97b0b2e78b5c87573aa9598a79984af13 (patch)
tree85cba0c734df96ca8e2ac2bdf913f5d062735340
parenta63845bae8dec8499237c67d9136f89632565bbe (diff)
v0.1.5
-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),