Skip to content

Commit

Permalink
0.2.5 - colcon version bump
Browse files Browse the repository at this point in the history
Fixes monochrome conversion issues; looks nicer.
  • Loading branch information
Beinsezii committed Jul 21, 2023
1 parent 4aa8b36 commit 4974ce0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# linch 0.2.4
# linch 0.2.5
Cross-desktop application launcher made with ~~iced~~ egui

<img src="./screenshot.png" height = 300 px />
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 4974ce0

Please sign in to comment.