From b440d29c199800391f38e006442af4de957dda87 Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Tue, 9 Apr 2024 14:11:46 +0200 Subject: [PATCH 1/2] it: avoid problematic halfway colors --- .builds/test.yml | 1 - src/it/tests/t0039_alpha_modifier.rs | 4 ++-- .../t0039_alpha_modifier/screenshot_2.qoi | Bin 8145 -> 8145 bytes 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.builds/test.yml b/.builds/test.yml index 7bb6dd49..446d1f25 100644 --- a/.builds/test.yml +++ b/.builds/test.yml @@ -16,5 +16,4 @@ tasks: - test: | cd jay export RUST_BACKTRACE=1 - export GALLIUM_DRIVER=softpipe ./target/debug/jay run-tests diff --git a/src/it/tests/t0039_alpha_modifier.rs b/src/it/tests/t0039_alpha_modifier.rs index dc567abb..eb7f85f6 100644 --- a/src/it/tests/t0039_alpha_modifier.rs +++ b/src/it/tests/t0039_alpha_modifier.rs @@ -45,9 +45,9 @@ async fn test(run: Rc) -> TestResult { client.compare_screenshot("1", false).await?; - alpha1.set_multiplier(0.5)?; + alpha1.set_multiplier(0.51)?; ss1.commit()?; - alpha2.set_multiplier(0.5)?; + alpha2.set_multiplier(0.51)?; ss2.commit()?; client.compare_screenshot("2", false).await?; diff --git a/src/it/tests/t0039_alpha_modifier/screenshot_2.qoi b/src/it/tests/t0039_alpha_modifier/screenshot_2.qoi index 5654c4fd2ed0d801bee97b557d87931e3fbe635c..bf8d403628cb9901d00551b17f041232335f521c 100644 GIT binary patch literal 8145 zcmXTS&rD-rU{+vYV2WU7_@@zCe*PZ=1H)e=@KpS~DH8YZh~xh=Ha12MfN$c+ykW+^ zVub9WZ~tnWK#AeZzyC;y;)U7Yzkkml6pr#o!(%i(jOGVe$uU|UjFtz;7tjHZXt{4iQR!V82^#%KtP zhQMeDjE2By2#kinXb6mkz-S1JhQMeDjE2By2#kinXb6mkz-S1JhQMeDjE2By2#kgR LIU(?l0Rk8S4&;01 From 2cf9e7fa69dbd0935db96ffce42afa1b2c6140d0 Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Tue, 9 Apr 2024 14:12:28 +0200 Subject: [PATCH 2/2] docs: add notes for wp-alpha-modifier --- docs/features.md | 1 + release-notes.md | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/features.md b/docs/features.md index b4c188fa..65962d08 100644 --- a/docs/features.md +++ b/docs/features.md @@ -125,6 +125,7 @@ Jay supports the following wayland protocols: | wl_seat | 9 | | | wl_shm | 2 | | | wl_subcompositor | 1 | | +| wp_alpha_modifier_v1 | 1 | | | wp_content_type_manager_v1 | 1 | | | wp_cursor_shape_manager_v1 | 1 | | | wp_fractional_scale_manager_v1 | 1 | | diff --git a/release-notes.md b/release-notes.md index fde5e974..8d82c4d1 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,5 +1,7 @@ # Unreleased -# 1.0 +- Add support for wp-alpha-modifier. + +# 1.0 (2024-04-07) This is the first stable release of Jay.