diff --git a/Cargo.lock b/Cargo.lock index 8db588d..35b6270 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -707,9 +707,9 @@ dependencies = [ [[package]] name = "colcon" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e1daa192c341da09c124e9c6e5c1120a3ec212c3d3db93382908e4a42562e33" +checksum = "b04a1add16d659dc668f58514b8da289b604adc840745651f40e26f4c1f9b2df" [[package]] name = "color_quant" @@ -1633,7 +1633,7 @@ dependencies = [ [[package]] name = "linch" -version = "0.2.4" +version = "0.2.5" dependencies = [ "clap", "colcon", diff --git a/Cargo.toml b/Cargo.toml index c8ccf23..c4c8a3b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "linch" -version = "0.2.4" +version = "0.2.5" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -colcon="0.1" +colcon="0.2" clap = { version = "4", features = ["derive"] } eframe={version = "0.22", features=["wgpu"]} egui_extras = {version = "0.22", features=["image", "svg"]} diff --git a/README.md b/README.md index 7c4c25e..36f4303 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# linch 0.2.4 +# linch 0.2.5 Cross-desktop application launcher made with ~~iced~~ egui diff --git a/src/main.rs b/src/main.rs index f6bb9d8..ede5e49 100644 --- a/src/main.rs +++ b/src/main.rs @@ -245,7 +245,7 @@ fn monochromatize_pixel(reference: [f32; 3], target: &mut [f32; 3]) { let l = target[0]; let c = target[1]; - let h = target[2] + 180.0; + let h = target[2]; // set hue target[2] = reference[2];