Update stuff

This commit is contained in:
Ethan Roseman
2023-09-30 11:26:22 +09:00
parent 9c8682cd95
commit d04c1928e6
4 changed files with 261 additions and 190 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{
"rust-analyzer.linkedProjects": [
".\\Cargo.toml"
"Cargo.toml"
]
}
Generated
+253 -182
View File
File diff suppressed because it is too large Load Diff
+5 -4
View File
@@ -16,14 +16,15 @@ build = "build.rs"
anyhow = "1.0.75"
argh = "0.1.12"
dtoa = "1.0.9"
eframe = { version = "0.22.0", features = ["persistence"] }
egui-modal = "0.2.4"
eframe = { version = "0.23.0", features = ["persistence"] }
egui-modal = "0.2.5"
egui_dock = "0.8.0"
encoding_rs = "0.8.33"
iset = "0.2.2"
log = "0.4.20"
notify = "6.1.1"
parse_int = "0.6.0"
rfd = "0.11.4"
rfd = "0.12.0"
serde = "1.0"
serde_json = "1.0"
@@ -32,4 +33,4 @@ winres = "0.1.12"
[build-dependencies]
anyhow = "1.0.75"
vergen = { version = "8.2.4", features = ["build", "cargo", "git", "gitcl"] }
vergen = { version = "8.2.5", features = ["build", "cargo", "git", "gitcl"] }
+2 -3
View File
@@ -6,9 +6,8 @@ use std::{
use anyhow::Error;
use eframe::{
egui::{self, Checkbox},
epaint::{Color32, Rounding, Shadow},
epaint::{Rounding, Shadow},
};
use egui_modal::Modal;
use crate::{
@@ -388,7 +387,7 @@ impl BdiffApp {
ui.text_edit_singleline(&mut self.goto_modal.value)
.request_focus();
ui.label(egui::RichText::new(self.goto_modal.status.clone()).color(Color32::RED));
ui.label(egui::RichText::new(self.goto_modal.status.clone()).color(egui::Color32::RED));
goto_modal.buttons(ui, |ui| {
if ui.button("Go").clicked() || ctx.input(|i| i.key_pressed(egui::Key::Enter)) {