Skip to content

Commit

Permalink
best filling, custom scripts, file dialog, and more
Browse files Browse the repository at this point in the history
	modified:   Cargo.lock
	modified:   Cargo.toml
	modified:   src/egui_plot_stuff/egui_plot_settings.rs
	modified:   src/histoer/configs.rs
	modified:   src/histoer/cuts.rs
	modified:   src/histoer/histo2d/colormaps.rs
	modified:   src/histoer/histo2d/keybinds.rs
	modified:   src/histoer/histo2d/projections.rs
	modified:   src/histoer/histogrammer.rs
	new file:   src/histogram_scripter/custom_scripts.rs
	modified:   src/histogram_scripter/histogram_script.rs
	deleted:    src/histogram_scripter/manual_histogram_scripts.rs
	modified:   src/histogram_scripter/mod.rs
	modified:   src/ui/app.rs
	deleted:    src/util/egui_file_dialog.rs
	modified:   src/util/mod.rs
	modified:   src/util/processer.rs
  • Loading branch information
alconley committed Dec 30, 2024
1 parent abbe6f4 commit c2e70f3
Show file tree
Hide file tree
Showing 17 changed files with 2,146 additions and 2,915 deletions.
126 changes: 117 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,22 @@ eframe = { version = "0.30", default-features = false, features = [
#"wayland",
] }
egui = "0.30"
egui-file-dialog = "0.8.0"

log = "0.4"
serde = { version = "1.0.216", features = ["derive"] }
serde = { version = "1.0.217", features = ["derive"] }
egui_plot = {version = "0.30", features = ["serde"] }
egui_tiles = "0.11"
egui_extras = {version = "0.30", features = ["syntect"] }
egui_file = "0.19"
epaint = "0.30"
env_logger = "0.11.5"
env_logger = "0.11.6"
polars = { version = "0.45.0", features = ["lazy", "parquet", "performant"] }
polars-lazy = { version = "0.45.0"}
rayon = "1.10.0"
rfd = "0.15.1"
serde_yaml = "0.9.31"
serde_json = "1.0.133"
serde_json = "1.0.134"
geo = "0.29.3"
fnv = "1.0.7"
varpro = "0.10.1"
Expand All @@ -41,6 +42,7 @@ compute = "0.2.3"
find_peaks = "0.1.5"
pyo3 = { version = "0.22.0", features = ["auto-initialize"] }
regex = "1.11.1"
indicatif = "0.17.9"

[profile.release]
opt-level = 2 # fast and small wasm
Expand Down
2 changes: 1 addition & 1 deletion src/egui_plot_stuff/egui_plot_settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ impl EguiPlotSettings {

let plot = if reset {
self.reset_axis = false;
plot.auto_bounds(egui::Vec2b::new(true, true))
plot.reset().auto_bounds(egui::Vec2b::new(true, true))
} else {
plot
};
Expand Down
Loading

0 comments on commit c2e70f3

Please sign in to comment.