Skip to content

Commit

Permalink
Remove first launch warning about early status
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaksi committed Aug 27, 2024
1 parent 5877f04 commit c2b1b11
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/frontend/qt/models/host_data_manager_model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,17 +141,6 @@ impl HostDataManagerModel {
}

self.updateReceived(QString::from(host_state.host.name.clone()));

// This is the first launch so display a note about the project being in early development.
if self.display_data.hosts.len() == 1 && self.display_data.hosts.contains_key("example-host") {
let error = ErrorMessage::new(
Criticality::Critical,
String::from("Looks like this is the first time you have started LightkeeperRM.
This version is still an early release and may be missing some features and contain bugs.
See https://github.com/kalaksi/lightkeeper for the issue tracker and some documentation.")
);
self.errorReceived(QString::from(Criticality::Critical.to_string()), QString::from(error.message));
}
}

// Get monitoring data as a QVariant.
Expand Down

0 comments on commit c2b1b11

Please sign in to comment.