Skip to content

Commit

Permalink
version 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LGFae committed Jul 12, 2023
1 parent 48ef2ef commit b7cde38
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 11 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default-members = [".", "daemon"]

[package]
name = "swww"
version = "0.8.0-master"
version = "0.8.1"
authors = ["Leonardo Gibrowski Faé <leonardo.fae44@gmail.com>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion daemon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swww-daemon"
version = "0.8.0-master"
version = "0.8.1"
authors = ["Leonardo Gibrowski Faé <leonardo.fae44@gmail.com>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "utils"
version = "0.8.0-master"
version = "0.8.1"
authors = ["Leonardo Gibrowski Faé <leonardo.fae44@gmail.com>"]
edition = "2021"

Expand Down

0 comments on commit b7cde38

Please sign in to comment.