From c915af19e85d27293ceba4ed5feca95f770635c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Eertmans?= Date: Mon, 24 Mar 2025 15:01:27 +0100 Subject: [PATCH] chore(html): bump RevealJS version to 5.2 (#536) Bump version as it includes a nice fix for speaker view: background videos are now played. See: https://github.com/hakimel/reveal.js/pull/1037#issuecomment-1825352783. --- manim_slides/convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manim_slides/convert.py b/manim_slides/convert.py index 2028192..df6e4a1 100644 --- a/manim_slides/convert.py +++ b/manim_slides/convert.py @@ -531,7 +531,7 @@ class RevealJS(Converter): "black", description="Background color used in slides, not relevant if videos fill the whole area.", ) - reveal_version: str = Field("5.1.0", description="RevealJS version.") + reveal_version: str = Field("5.2.0", description="RevealJS version.") reveal_theme: RevealTheme = Field( RevealTheme.black, description="RevealJS version." )