From 99cc1d8c08b48a276023139c24d563cba27f6e18 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen.haas@lakedrops.com> Date: Fri, 22 Mar 2024 15:46:23 +0100 Subject: [PATCH] Update revewal.js to 5.0.5 and pandoc to 3.1.12.3 --- Dockerfile | 2 +- bin/mdshow | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 489fdd2..19aa40e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN echo "Adding system components" && \ libxss1 libxtst6 lsb-release wget xdg-utils && \ curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \ apt install -y nodejs && \ - curl -L -o pandoc.deb https://github.com/jgm/pandoc/releases/download/3.1.11/pandoc-3.1.11-1-amd64.deb && \ + curl -L -o pandoc.deb https://github.com/jgm/pandoc/releases/download/3.1.12.3/pandoc-3.1.12.3-1-amd64.deb && \ dpkg -i pandoc.deb && \ rm pandoc.deb diff --git a/bin/mdshow b/bin/mdshow index bce593f..35c20f3 100755 --- a/bin/mdshow +++ b/bin/mdshow @@ -97,11 +97,11 @@ $(MDSHOW_CONFIG)/reveal.js/dist/fontawesome: $(MDSHOW_CONFIG)/reveal.js: mkdir -p $@ - curl -L https://github.com/hakimel/reveal.js/archive/refs/tags/5.0.4.zip -o $@/revealjs.zip + curl -L https://github.com/hakimel/reveal.js/archive/refs/tags/5.0.5.zip -o $@/revealjs.zip unzip $@/revealjs.zip -d $@ rm $@/revealjs.zip - mv $@/reveal.js-5.0.4/.??* $@/reveal.js-5.0.4/* $@ - rmdir $@/reveal.js-5.0.4 + mv $@/reveal.js-5.0.5/.??* $@/reveal.js-5.0.5/* $@ + rmdir $@/reveal.js-5.0.5 cd $@ && \ npm install && npm add node-jq decktape gulp # workarounds for the new reveal-js release -- GitLab