From 1439e02790a0f78c962073354e89d4419db2a094 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Tue, 10 Oct 2023 13:17:52 +0000 Subject: [PATCH] tools: update hecat to v1.2.0 (#261) (#262) - https://github.com/nodiscc/hecat/releases/tag/1.2.0 - fixes https://github.com/awesome-selfhosted/awesome-selfhosted-data/issues/71 (a subpage will be generated for each `platform` (e.g. https://awesome-selfhosted.net/platforms/docker.html - due to this change all items in `platforms/*.yml` must now have a non-empty `description` attribute) - fixes https://github.com/awesome-selfhosted/awesome-selfhosted-data/issues/116 (inline CSS was moved to an external file and longer shows up in the search results) - related https://github.com/awesome-selfhosted/awesome-selfhosted-data/issues/78 - add required html_css_files sphinx configuration option --- .hecat/conf.py | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.hecat/conf.py b/.hecat/conf.py index 60eeb258c7..0d038cda50 100644 --- a/.hecat/conf.py +++ b/.hecat/conf.py @@ -15,6 +15,7 @@ html_show_copyright = True html_use_opensearch = 'https://awesome-selfhosted.net/' html_favicon = '../_static/favicon.ico' html_logo = '../_static/logo.svg' +html_css_files = ['custom.css'] extensions = ['myst_parser', 'sphinx_design'] source_suffix = ['.md'] templates_path = ['_templates'] diff --git a/Makefile b/Makefile index 42a59a1472..0da2160e7e 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ install: python3 -m venv .venv source .venv/bin/activate && \ pip3 install wheel && \ - pip3 install --force git+https://github.com/nodiscc/hecat.git@1.1.3 + pip3 install --force git+https://github.com/nodiscc/hecat.git@1.2.0 .PHONY: import # import data from original list at https://github.com/awesome-selfhosted/awesome-selfhosted import: clean install