From a2c388adf9a665155475c2069f6a3158fb491b2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Wed, 6 Nov 2024 14:37:53 +0100 Subject: [PATCH] Embed resources into presentation --- .changes/1.2.2-rc1.md | 3 +++ .changes/unreleased/Fixed-20241106-143647.yaml | 3 +++ .gitea/workflows/build-image.yml | 2 +- .vscode/tasks.json | 3 +++ CHANGELOG.md | 4 ++++ 5 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 .changes/1.2.2-rc1.md create mode 100644 .changes/unreleased/Fixed-20241106-143647.yaml diff --git a/.changes/1.2.2-rc1.md b/.changes/1.2.2-rc1.md new file mode 100644 index 0000000..1c7fb6d --- /dev/null +++ b/.changes/1.2.2-rc1.md @@ -0,0 +1,3 @@ +## 1.2.2-rc1 - 2024-11-06 +### Fixed +* Embed resources into presentation formation signature diff --git a/.changes/unreleased/Fixed-20241106-143647.yaml b/.changes/unreleased/Fixed-20241106-143647.yaml new file mode 100644 index 0000000..04f47c6 --- /dev/null +++ b/.changes/unreleased/Fixed-20241106-143647.yaml @@ -0,0 +1,3 @@ +kind: Fixed +body: Embed resources into presentation formation signature +time: 2024-11-06T14:36:47.597001706+01:00 diff --git a/.gitea/workflows/build-image.yml b/.gitea/workflows/build-image.yml index 77a4f14..027467f 100644 --- a/.gitea/workflows/build-image.yml +++ b/.gitea/workflows/build-image.yml @@ -34,7 +34,7 @@ jobs: run: pandoc -t revealjs --resource-path=.:presentation/src/ -s presentation/src/essaimage.md -o presentation/src/essaimage.html - name: Build presentation formation-signature - run: pandoc --from markdown+emoji -t revealjs --resource-path=.:presentation/src/ -s presentation/src/formation-signature.md -o presentation/src/formation-signature.html + run: pandoc --from markdown+emoji -t revealjs --embed-resources --resource-path=.:presentation/src/ -s presentation/src/formation-signature.md -o presentation/src/formation-signature.html - name: Set up Docker Buildx uses: https://github.com/docker/setup-buildx-action@v3 diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 1f0dc4b..19474ac 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -13,6 +13,9 @@ "--to", "revealjs", "--standalone", + "--embed-resources", + "--resource-path", + "./presentation/src/", "-o", "presentation/src/formation-signature.html", "presentation/src/formation-signature.md" diff --git a/CHANGELOG.md b/CHANGELOG.md index 9523956..fa4a9a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## 1.2.2-rc1 - 2024-11-06 +### Fixed +* Embed resources into presentation formation signature + ## 1.2.1 - 2024-11-06 ### Fixed * Use nginx instead of caddy