Skip to content

Commit

Permalink
Add EGS51 codings to config app and update egui
Browse files Browse the repository at this point in the history
  • Loading branch information
rnd-ash committed Oct 15, 2024
1 parent 0096e2e commit 985bedc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions config_app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "config_app"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
resolver = "2"
description = "Ultimate-NAG52 config app"
Expand All @@ -16,24 +16,24 @@ serde = { version = "1.0.148", features = ["derive"] }
backend={path="../backend/"}
config_app_macros={path="../config_app_macros/"}
image = "0.25.1"
rfd="0.14.0"
rfd="0.15.0"
pollster = "0.3.0"
eframe = {version="0.28.1", features=["glow", "wgpu", "default_fonts"]}
egui_extras = {default-features=false, version="0.28.1", features=["image"]}
eframe = {version="0.29.1", features=["glow", "wgpu", "default_fonts"]}
egui_extras = {default-features=false, version="0.29.1", features=["image"]}
static_assertions = "1.1.0"
env_logger="0.11.2"
egui-toast="0.14.0"
egui-toast="0.15.0"
chrono = "0.4.23"
nom="7.1.1"
plotters-backend="0.3.4"
plotters={version="0.3.4", default_features = false, features=["surface_series"]}
packed_struct="0.10.0"
ehttp="0.5.0"
octocrab = "0.39.0"
octocrab = "0.41.0"
tokio = { version = "1.17.0", features = ["full"] }
zip="2.2.0"
curl = "0.4.43"
egui_plot = "0.28.1"
egui_plot = "0.29.0"
serde_derive = "1.0.197"
lz4-compression = "0.7.0"
bincode = "1.3.3"
Expand Down
4 changes: 2 additions & 2 deletions config_app/src/ui/configuration/egs_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ impl InterfacePage for EgsConfigPage {
let db = self.db.as_ref().unwrap();
// Show calibrations that are not valid
ui.hyperlink_to("Watch tutorial video for help", include_base64!("aHR0cHM6Ly95b3V0dS5iZS9ENlZmNWlqekpndw"));
ui.strong("Status of calibration data:");
ui.strong("Status of calibration data (Your TCU):");
let mut error_counter = 0;
match String::from_utf8(interpreted.hydr_cal_name.to_vec()) {
Ok(name) => {
Expand Down Expand Up @@ -332,7 +332,7 @@ impl InterfacePage for EgsConfigPage {

// SCN Columns - [EGS PN, Chassis, GB Code, TCC, MECH, HYDR]
egui_extras::TableBuilder::new(ui)
.columns(Column::auto(), 7)
.columns(Column::auto().at_least(100.0), 7)
.column(Column::exact(100.0))
.striped(true)
.header(30.0, |mut header| {
Expand Down
Binary file modified egs_db.bin
Binary file not shown.

0 comments on commit 985bedc

Please sign in to comment.