diff --git a/CHANGELOG b/CHANGELOG index 4362880..21e4beb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +2022-09-24 + +* Replace Redirector extension with LibRedirect + 2022-07-19 * Fix downloadable config file for Redirector extension diff --git a/src/pages/faq/index_page.cr b/src/pages/faq/index_page.cr index 74f25d4..8eb0681 100644 --- a/src/pages/faq/index_page.cr +++ b/src/pages/faq/index_page.cr @@ -18,19 +18,9 @@ class Faq::IndexPage < MainLayout section do h2 "How-to Automatically Redirect Medium Articles" para do - text "If you don't want to manually change the URL every time, you can use an extension to do it for you. " - a "This extension", href: "https://einaregilsson.com/redirector/" - text " works well across most browsers." - end - para do - text "Once installed download a configuration file by " - link "clicking here", to: RedirectionConfig::Index - text "." - end - para do - text "Install it by opening the extension preferences, editing redirects, clicking " - code "Import" - text " and selecting the downloaded file. This will add a new redirection and not overwrite any existing ones. Now visiting any medium.com site (including user.medium.com subdomains) should redirect to Scribe instead!" + text "If you don't want to manually change the URL every time, you can use an extension to do it for you. The " + a "LibRedirect extention", href: "https://libredirect.github.io/" + text " works well across most browsers, and will also redirect to other alternative services." end end end diff --git a/src/version.cr b/src/version.cr index 0163f61..a569a61 100644 --- a/src/version.cr +++ b/src/version.cr @@ -1,3 +1,3 @@ module Scribe - VERSION = "2022-07-19" + VERSION = "2022-09-24" end