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/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. 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 5654c4fd..bf8d4036 100644 Binary files a/src/it/tests/t0039_alpha_modifier/screenshot_2.qoi and b/src/it/tests/t0039_alpha_modifier/screenshot_2.qoi differ