Skip to content

Commit

Permalink
fix bug?
Browse files Browse the repository at this point in the history
  • Loading branch information
ethteck committed Oct 20, 2024
1 parent 6e662ab commit 3b7313d
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 35 deletions.
62 changes: 31 additions & 31 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bdiff"
version = "0.9.0"
version = "0.9.1"
edition = "2021"
authors = ["Ethan Roseman <[email protected]>"]
license = "MIT"
Expand All @@ -21,7 +21,7 @@ eframe = { version = "0.29.1", features = ["persistence"] }
egui-modal = "0.5.0"
egui-phosphor = "0.7.3"
encoding_rs = "0.8.34"
bdiff_hex_view = { version = "0.9.0", path = "../hex_view" }
bdiff_hex_view = { version = "0.9.1", path = "../hex_view" }
iset = "0.3.0"
log = "0.4.22"
mapfile_parser = "2.7.1"
Expand Down
2 changes: 1 addition & 1 deletion app/src/file_view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ impl FileView {
let name_limit = 50;
let file_name = self.file.path.as_path().to_str().unwrap();
let file_name_brief = if file_name.len() > name_limit {
format!("...{}", &file_name[file_name.len() - name_limit - 3..])
format!("...{}", &file_name[file_name.len() - name_limit..])
} else {
file_name.to_owned()
};
Expand Down
2 changes: 1 addition & 1 deletion hex_view/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bdiff_hex_view"
version = "0.9.0"
version = "0.9.1"
edition = "2021"
authors = ["Ethan Roseman <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 3b7313d

Please sign in to comment.