From 740230d4511e6aaa4029d1498af2ffa4982ee796 Mon Sep 17 00:00:00 2001 From: Edward Loveall Date: Sun, 17 Jul 2022 11:30:03 -0400 Subject: [PATCH] Fix source code link Capitalize the `S` in `Scribe`. I don't have record of this ever needing to be capitalized before, but it clearly does not work. --- CHANGELOG | 4 ++++ src/components/shared/layout_footer.cr | 2 +- src/version.cr | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 293d70d..829a1ec 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +2022-07-17 + +* Fix source code link + 2022-05-21 * Show error page for missing posts diff --git a/src/components/shared/layout_footer.cr b/src/components/shared/layout_footer.cr index 45437ba..315ac7b 100644 --- a/src/components/shared/layout_footer.cr +++ b/src/components/shared/layout_footer.cr @@ -4,7 +4,7 @@ class Shared::LayoutFooter < BaseComponent footer do para do span do - a "Source code", href: "https://sr.ht/~edwardloveall/scribe" + a "Source code", href: "https://sr.ht/~edwardloveall/Scribe" end span do text "Version: #{Scribe::VERSION}" diff --git a/src/version.cr b/src/version.cr index a1ac6c2..a78241d 100644 --- a/src/version.cr +++ b/src/version.cr @@ -1,3 +1,3 @@ module Scribe - VERSION = "2022-06-17" + VERSION = "2022-07-17" end