From b7cde38a983740aae1dfe4e48fd3fc7e6d403fe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Gibrowski=20Fa=C3=A9?= Date: Wed, 12 Jul 2023 18:03:36 -0300 Subject: [PATCH] version 0.8.1 --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.lock | 14 +++++++------- Cargo.toml | 2 +- daemon/Cargo.toml | 2 +- tests/integration.rs | 2 +- utils/Cargo.toml | 2 +- 6 files changed, 30 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6658d525..a3c79301 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,25 @@ ### Unreleased +### 0.8.1 + +Pretty a much a near-exclusive bug fix release: + + * Fixed `swww clear` causing the daemon to exit + * The cache is once again being correctly load during `swww init` + * Fixed glitches happening to animated gifs (frames were being loaded in the + wrong order) + * Fixed `swww-daemon` sometimes not drawing to the whole screen (forgot to set + the exclusive zone to -2) + * Fixed an issue where the daemon would hang if multiple images were sent in + quick succession + +#### Additions: + + * `--transition-type none`, which is an alias to `--trasition-type simple` + `--transition-step 255` + + ### 0.8.0 #### BREAKING CHANGE: CACHE HAS CHANGED: diff --git a/Cargo.lock b/Cargo.lock index 3cb8c6bc..0bb04a69 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1121,9 +1121,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83d3daa6976cffb758ec878f108ba0e062a45b2d6ca3a2cca965338855476caf" +checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310" dependencies = [ "aho-corasick", "memchr", @@ -1261,9 +1261,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.100" +version = "1.0.102" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c" +checksum = "b5062a995d481b2308b6064e9af76011f2921c35f97b0468811ed9f6cd91dfed" dependencies = [ "itoa", "ryu", @@ -1343,7 +1343,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "swww" -version = "0.8.0-master" +version = "0.8.1" dependencies = [ "assert_cmd", "clap", @@ -1356,7 +1356,7 @@ dependencies = [ [[package]] name = "swww-daemon" -version = "0.8.0-master" +version = "0.8.1" dependencies = [ "keyframe", "log", @@ -1522,7 +1522,7 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "utils" -version = "0.8.0-master" +version = "0.8.1" dependencies = [ "criterion", "lazy_static", diff --git a/Cargo.toml b/Cargo.toml index a4ebaa69..1597bcd6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ default-members = [".", "daemon"] [package] name = "swww" -version = "0.8.0-master" +version = "0.8.1" authors = ["Leonardo Gibrowski Faé "] edition = "2021" diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index 330359d8..4e8d4dfd 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swww-daemon" -version = "0.8.0-master" +version = "0.8.1" authors = ["Leonardo Gibrowski Faé "] edition = "2021" diff --git a/tests/integration.rs b/tests/integration.rs index 97a1fa41..a61dfb46 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -56,7 +56,7 @@ fn start_daemon() -> Command { fn general_commands() { make_test_imgs(); - //init_daemon(); + init_daemon(); init_daemon_twice(); sending_imgs(); sending_img_that_does_not_exist(); diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 3134a1ac..154df3d8 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "utils" -version = "0.8.0-master" +version = "0.8.1" authors = ["Leonardo Gibrowski Faé "] edition = "2021"