Prepare release 0.1.7

This commit is contained in:
Gergő Sályi 2024-05-11 01:12:06 +02:00
parent abb85692e4
commit 3c2eb7cc6c
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changelog # 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 ## 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) - Fix displaying the wallpapers on outputs with fractional scale factor. This may help with [#5](https://github.com/gergo-salyi/multibg-sway/issues/5)

2
Cargo.lock generated
View file

@ -688,7 +688,7 @@ dependencies = [
[[package]] [[package]]
name = "multibg-sway" name = "multibg-sway"
version = "0.1.6" version = "0.1.7"
dependencies = [ dependencies = [
"clap", "clap",
"env_logger", "env_logger",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "multibg-sway" name = "multibg-sway"
version = "0.1.6" version = "0.1.7"
authors = ["Gergő Sályi <salyigergo94@gmail.com>"] authors = ["Gergő Sályi <salyigergo94@gmail.com>"]
edition = "2021" edition = "2021"
description = "Set a different wallpaper for the background of each Sway workspace" description = "Set a different wallpaper for the background of each Sway workspace"