From 6c5b7a3f4cc409e31739b2914bb6636d08299126 Mon Sep 17 00:00:00 2001 From: Svilen Markov <7613769+svilenmarkov@users.noreply.github.com> Date: Wed, 10 Dec 2025 09:44:00 +0000 Subject: [PATCH 1/2] Update docs --- docs/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 174de834d..b3ac57a2f 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -149,14 +149,14 @@ pages: columns: - size: full widgets: - $include: rss.yml + - $include: rss.yml - name: News columns: - size: full widgets: - type: group widgets: - $include: rss.yml + - $include: rss.yml - type: reddit subreddit: news ``` From 00beae419829c07c2fd8540a1f358e1dd7aeb6a1 Mon Sep 17 00:00:00 2001 From: Error_404 <40488131+iamagithublearner@users.noreply.github.com> Date: Sat, 14 Feb 2026 16:06:58 +0530 Subject: [PATCH 2/2] Update URL for 'sh' case to use 'png' format Fixed Selfh.st URL not working by updating the URL --- internal/glance/config-fields.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/glance/config-fields.go b/internal/glance/config-fields.go index 2eec5994e..18032f160 100644 --- a/internal/glance/config-fields.go +++ b/internal/glance/config-fields.go @@ -169,7 +169,7 @@ func newCustomIconField(value string) customIconField { field.AutoInvert = true field.URL = template.URL("https://cdn.jsdelivr.net/npm/@mdi/svg@latest/svg/" + basename + ".svg") case "sh": - field.URL = template.URL("https://cdn.jsdelivr.net/gh/selfhst/icons/" + ext + "/" + basename + "." + ext) + field.URL = template.URL("https://cdn.jsdelivr.net/gh/selfhst/icons@main/" + "png" + "/" + basename + "." + "png") default: field.URL = template.URL(value) }