Prepare release 0.1.4

This commit is contained in:
Gergő Sályi 2023-08-31 18:10:40 +02:00
parent a9b4973c4b
commit b4496265ec
3 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,11 @@
# Changelog # Changelog
## 0.1.4 - 2023-08-31
- Allocate/release graphics memory per output when the output is connected/disconnected. This may help with [#2](https://github.com/gergo-salyi/multibg-sway/issues/1)
- Log graphics memory use (our wayland shared memory pool sizes)
- Minor fix to avoid a logged error on redrawing backgrounds already being drawn
- Update dependencies
## 0.1.3 - 2023-05-05 ## 0.1.3 - 2023-05-05
- Update dependencies, including fast_image_resize which fixed a major bug - Update dependencies, including fast_image_resize which fixed a major bug

2
Cargo.lock generated
View file

@ -586,7 +586,7 @@ dependencies = [
[[package]] [[package]]
name = "multibg-sway" name = "multibg-sway"
version = "0.1.3" version = "0.1.4"
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.3" version = "0.1.4"
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"