From fb32fcfdb1e80bf171df8c8f4aa9b2dde6fe7525 Mon Sep 17 00:00:00 2001 From: quirinecker Date: Sun, 26 Oct 2025 13:47:59 +0100 Subject: [PATCH] updated reveal js version --- src/app/commands/executions/build_execution.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/commands/executions/build_execution.rs b/src/app/commands/executions/build_execution.rs index 818c30d..37f3041 100644 --- a/src/app/commands/executions/build_execution.rs +++ b/src/app/commands/executions/build_execution.rs @@ -39,11 +39,12 @@ impl BuildExecution { async fn prepare() -> Result<(), String> { - let reveal_version = "3.9.2"; + let reveal_version = "5.2.1"; let target = format!("https://github.com/hakimel/reveal.js/archive/{reveal_version}.zip"); create_dir_recursive("./docs/slides"); + let response = reqwest::get(target.clone()).await.unwrap(); let Ok(response) = reqwest::get(target).await else { return Err("could not downlaod revealjs".to_string()) };