Remove the unused f32 file type, bump version to 0.2.1

This commit is contained in:
Ry 2022-08-09 23:33:00 -07:00
parent 4b506f3e65
commit 17b14dd72f
3 changed files with 2 additions and 3 deletions

2
Cargo.lock generated
View File

@ -865,7 +865,7 @@ dependencies = [
[[package]] [[package]]
name = "fox32" name = "fox32"
version = "0.1.0" version = "0.2.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"image", "image",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fox32" name = "fox32"
version = "0.2.0" version = "0.2.1"
authors = ["ry"] authors = ["ry"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View File

@ -38,7 +38,6 @@ impl DiskController {
pub fn select_file(&self) -> Option<File> { pub fn select_file(&self) -> Option<File> {
let path = FileDialog::new() let path = FileDialog::new()
.add_filter("Disk Image", &["img", "dsk"]) .add_filter("Disk Image", &["img", "dsk"])
.add_filter("f32 Binary", &["f32"])
.add_filter("Raw Binary", &["bin"]) .add_filter("Raw Binary", &["bin"])
.add_filter("All Files", &["*"]) .add_filter("All Files", &["*"])
.set_title(&format!("Select a file to insert")) .set_title(&format!("Select a file to insert"))