Update package version to 0.9.0

This commit is contained in:
2026-05-02 18:24:42 +03:00
parent 92f63161f4
commit 0597735656
3 changed files with 17 additions and 48 deletions
+9 -9
View File
@@ -12,19 +12,19 @@ index 2b1a803..29a86fd 100644
Full config file with all possible options:
```yaml
diff --git a/lact-gui/src/app.rs b/lact-gui/src/app.rs
index 82b26ec..6294978 100644
index 46ba0d4..8def77c 100644
--- a/lact-gui/src/app.rs
+++ b/lact-gui/src/app.rs
@@ -212,7 +212,7 @@ impl AsyncComponent for AppModel {
.expect("Could not list devices");
@@ -423,7 +423,7 @@ impl AsyncComponent for AppModel {
if system_info.version != GUI_VERSION || system_info.commit.as_deref() != Some(GIT_COMMIT) {
- let err = anyhow!("Version mismatch between GUI and daemon ({GUI_VERSION}-{GIT_COMMIT} vs {}-{})! If you have updated LACT, you need to restart the service with `sudo systemctl restart lactd`.", system_info.version, system_info.commit.as_deref().unwrap_or_default());
+ let err = anyhow!("Version mismatch between GUI and daemon ({GUI_VERSION}-{GIT_COMMIT} vs {}-{})! If you have updated LACT, you need to restart the service with `sudo ectl sv reload && sudo ectl sv restart lactd`.", system_info.version, system_info.commit.as_deref().unwrap_or_default());
sender.input(AppMsg::Error(err.into()));
}
@@ -1045,7 +1045,7 @@ fn show_embedded_info(parent: &ApplicationWindow, err: anyhow::Error) {
let err = anyhow!(
- "Version mismatch between GUI and daemon ({GUI_VERSION}-{GIT_COMMIT} vs {}-{})! If you have updated LACT, you need to restart the service with `sudo systemctl restart lactd`.",
+ "Version mismatch between GUI and daemon ({GUI_VERSION}-{GIT_COMMIT} vs {}-{})! If you have updated LACT, you need to restart the service with `sudo ectl sv reload && sudo ectl sv restart lactd`.",
system_info.version,
system_info.commit.as_deref().unwrap_or_default()
);
@@ -1290,7 +1290,7 @@ fn show_embedded_info(parent: &ApplicationWindow, err: anyhow::Error) {
let text_label = gtk::Label::new(Some(&text));
let enable_label = gtk::Entry::builder()