mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
Bump versiona and update deps
This commit is contained in:
@@ -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));
|
||||
}
|
||||
})]
|
||||
}
|
||||
|
||||
@@ -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));
|
||||
}
|
||||
}),
|
||||
]
|
||||
|
||||
@@ -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));
|
||||
}
|
||||
}),
|
||||
]
|
||||
|
||||
@@ -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};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user