From 17b14dd72f9fe75080c8fa38d8bdb882608db434 Mon Sep 17 00:00:00 2001 From: Ry Date: Tue, 9 Aug 2022 23:33:00 -0700 Subject: [PATCH] Remove the unused `f32` file type, bump version to 0.2.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/disk.rs | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bc5b259..606a287 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -865,7 +865,7 @@ dependencies = [ [[package]] name = "fox32" -version = "0.1.0" +version = "0.2.1" dependencies = [ "anyhow", "image", diff --git a/Cargo.toml b/Cargo.toml index 9d5ed31..2e4cd75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fox32" -version = "0.2.0" +version = "0.2.1" authors = ["ry"] edition = "2021" build = "build.rs" diff --git a/src/disk.rs b/src/disk.rs index 8e1185b..b018b5e 100644 --- a/src/disk.rs +++ b/src/disk.rs @@ -38,7 +38,6 @@ impl DiskController { pub fn select_file(&self) -> Option { let path = FileDialog::new() .add_filter("Disk Image", &["img", "dsk"]) - .add_filter("f32 Binary", &["f32"]) .add_filter("Raw Binary", &["bin"]) .add_filter("All Files", &["*"]) .set_title(&format!("Select a file to insert"))