From 648a933b2436e43f9ec712596ac35e292d9f98bb Mon Sep 17 00:00:00 2001 From: Edward Loveall Date: Sat, 29 Jan 2022 12:58:08 -0500 Subject: [PATCH] Provide a list of instances as JSON This is for extensions or other tools that wish to have a list of instances. It can be accessed by visiting the raw file on sourcehut: https://git.sr.ht/~edwardloveall/scribe/blob/main/docs/instances.json --- CHANGELOG | 14 +++++++++----- docs/instances.json | 6 ++++++ src/version.cr | 2 +- 3 files changed, 16 insertions(+), 6 deletions(-) create mode 100644 docs/instances.json diff --git a/CHANGELOG b/CHANGELOG index 33702cb..ba2d066 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,22 +1,26 @@ -2023-01-23 +2022-01-29 + +* Provide list of instances as JSON file + +2022-01-23 * Proxy GitHub gists with rate limiting * Add CHANGELOG -2023-01-16 +2022-01-16 * Add scribe.bus-hit.me instance -2023-01-15 +2022-01-15 * Add instructions for Lucky config variables * Ensure that scr/version is up-to-date when building -2023-01-08 +2022-01-08 * Use FAQ entry to explain custom domains -2023-01-04 +2022-01-04 * Improve Redirector extension instructions * Home page instructions for custom domains diff --git a/docs/instances.json b/docs/instances.json new file mode 100644 index 0000000..17b76e1 --- /dev/null +++ b/docs/instances.json @@ -0,0 +1,6 @@ +[ + "https://scribe.rip", + "https://scribe.nixnet.services", + "https://scribe.citizen4.eu", + "https://scribe.bus-hit.me" +] diff --git a/src/version.cr b/src/version.cr index c22052a..bcebee0 100644 --- a/src/version.cr +++ b/src/version.cr @@ -1,3 +1,3 @@ module Scribe - VERSION = "2022-01-23" + VERSION = "2022-01-29" end