Bump versiona and update deps

This commit is contained in:
Luke D Jones
2020-08-28 20:07:46 +12:00
parent b8c83a1a72
commit b70137eec8
7 changed files with 59 additions and 140 deletions

View File

@@ -34,7 +34,7 @@ impl crate::Controller for CtrlCharge {
while let Some(n) = recv.recv().await {
let mut config = config.lock().await;
self.set_charge_limit(n, &mut config)
.unwrap_or_else(|err| warn!("{:?}", err));
.unwrap_or_else(|err| warn!("charge_limit: {:?}", err));
}
})]
}

View File

@@ -53,7 +53,7 @@ impl crate::Controller for CtrlFanAndCPU {
let mut lock = gate2.lock().await;
let mut config = config.lock().await;
lock.fan_mode_check_change(&mut config)
.unwrap_or_else(|err| warn!("{:?}", err));
.unwrap_or_else(|err| warn!("fan_ctrl: {:?}", err));
}
}),
]

View File

@@ -80,7 +80,7 @@ impl crate::Controller for CtrlKbdBacklight {
let mut lock = gate2.lock().await;
let mut config = config.lock().await;
lock.let_bright_check_change(&mut config)
.unwrap_or_else(|err| warn!("{:?}", err));
.unwrap_or_else(|err| warn!("led_ctrl: {:?}", err));
}
}),
]

View File

@@ -23,7 +23,7 @@ use std::sync::Arc;
use tokio::sync::{mpsc::Receiver, Mutex};
use tokio::task::JoinHandle;
pub static VERSION: &str = "1.0.2";
pub static VERSION: &str = "1.0.3";
use ::dbus::{nonblock::SyncConnection, tree::Signal};