From 14b91996ad3fee374cc74d1c79c19fae178ad075 Mon Sep 17 00:00:00 2001 From: Fritz Nastor <98058294+fritznastor@users.noreply.github.com> Date: Thu, 24 Jul 2025 00:25:22 -0500 Subject: [PATCH 1/3] added changelog to webui --- src/server/templates/components/footer.jinja | 7 +++++-- src/static/icons/changelog.svg | 16 ++++++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 src/static/icons/changelog.svg diff --git a/src/server/templates/components/footer.jinja b/src/server/templates/components/footer.jinja index 9784dfeb..67e0e5d1 100644 --- a/src/server/templates/components/footer.jinja +++ b/src/server/templates/components/footer.jinja @@ -11,11 +11,14 @@ 'icons/python.svg', 'Python Package') }} - {# Right column - Discord #} -
+ {# Right column - Discord + Changelog #} +
{{ footer_icon_link('https://discord.gg/zerRaGK9EC', 'icons/discord.svg', 'Discord') }} + {{ footer_icon_link('https://github.com/coderamp-labs/gitingest/releases/tag/v0.1.5', + 'icons/changelog.svg', + 'Changelog: v0.1.5') }}
diff --git a/src/static/icons/changelog.svg b/src/static/icons/changelog.svg new file mode 100644 index 00000000..66876cca --- /dev/null +++ b/src/static/icons/changelog.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + From f43ec2dfad3b28cad5cab581ce923fc85340f43a Mon Sep 17 00:00:00 2001 From: Fritz Nastor <98058294+fritznastor@users.noreply.github.com> Date: Thu, 24 Jul 2025 00:41:42 -0500 Subject: [PATCH 2/3] "added changelog to webui, it will always fetch latest changelog" --- src/server/templates/components/footer.jinja | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/src/server/templates/components/footer.jinja b/src/server/templates/components/footer.jinja index 67e0e5d1..7b17b49a 100644 --- a/src/server/templates/components/footer.jinja +++ b/src/server/templates/components/footer.jinja @@ -16,10 +16,24 @@ {{ footer_icon_link('https://discord.gg/zerRaGK9EC', 'icons/discord.svg', 'Discord') }} - {{ footer_icon_link('https://github.com/coderamp-labs/gitingest/releases/tag/v0.1.5', + {{ footer_icon_link('https://github.com/coderamp-labs/gitingest/releases/latest', 'icons/changelog.svg', - 'Changelog: v0.1.5') }} + 'Latest Changelog') }} + From bf57419da9dd8eeae83390f43a7801f5259d23eb Mon Sep 17 00:00:00 2001 From: Fritz Nastor <98058294+fritznastor@users.noreply.github.com> Date: Sat, 26 Jul 2025 00:53:24 -0500 Subject: [PATCH 3/3] simplified latest changelog redirection --- src/server/templates/components/footer.jinja | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/src/server/templates/components/footer.jinja b/src/server/templates/components/footer.jinja index 7b17b49a..acf82ddd 100644 --- a/src/server/templates/components/footer.jinja +++ b/src/server/templates/components/footer.jinja @@ -16,24 +16,10 @@ {{ footer_icon_link('https://discord.gg/zerRaGK9EC', 'icons/discord.svg', 'Discord') }} - {{ footer_icon_link('https://github.com/coderamp-labs/gitingest/releases/latest', + {{ footer_icon_link('https://github.com/coderamp-labs/gitingest/releases', 'icons/changelog.svg', 'Latest Changelog') }} -