diff --git a/CHANGELOG.md b/CHANGELOG.md index 86d749e..98d2b3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.1.7 - 2024-05-11 +- Fix image corruption for certain pixel formats when output width is not a multiple of 4 [#6](https://github.com/gergo-salyi/multibg-sway/issues/6) +- Add the --pixelformat cli argument. Setting --pixelformat=baseline can force wl_buffers to use the wayland default xrgb8888 pixel format if bgr888 or future others would break for any reason + ## 0.1.6 - 2024-03-25 - Fix displaying the wallpapers on outputs with fractional scale factor. This may help with [#5](https://github.com/gergo-salyi/multibg-sway/issues/5) diff --git a/Cargo.lock b/Cargo.lock index 296060e..575801d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -688,7 +688,7 @@ dependencies = [ [[package]] name = "multibg-sway" -version = "0.1.6" +version = "0.1.7" dependencies = [ "clap", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 604b3fb..18303f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multibg-sway" -version = "0.1.6" +version = "0.1.7" authors = ["Gergő Sályi "] edition = "2021" description = "Set a different wallpaper for the background of each Sway workspace"