Replace Redirector extension with LibRedirect

Since Scribe launched, the Redirector extension config has needed
occasional attention. Using regular expressions to cover all edge cases
is difficult. After finding out that Scribe's current config can hang
websites, I decided that [LibRedirect] is likely a more robust
solution. It can rely on more than regular expressions, and is less
work to set up.

[LibRedirect]: https://libredirect.github.io/
main 2022-09-24
Edward Loveall 2022-09-24 15:08:54 -04:00
rodzic b69fa2f2b1
commit 7e927469dc
Nie znaleziono w bazie danych klucza dla tego podpisu
3 zmienionych plików z 8 dodań i 14 usunięć

Wyświetl plik

@ -1,3 +1,7 @@
2022-09-24
* Replace Redirector extension with LibRedirect
2022-07-19
* Fix downloadable config file for Redirector extension

Wyświetl plik

@ -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

Wyświetl plik

@ -1,3 +1,3 @@
module Scribe
VERSION = "2022-07-19"
VERSION = "2022-09-24"
end