diff --git a/README.md b/README.md index a0f941d..8ba3090 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,16 @@ ![takahē](static/img/logo-128.png) -A *beta* Fediverse server for microblogging/"toots". Not fully functional yet - +A *beta* Fediverse server for microblogging/"toots". Not fully polished yet - we're still working towards a 1.0! -**Current version: [0.6.1](https://docs.jointakahe.org/en/latest/releases/0.6/)** +**Current version: [0.7](https://docs.jointakahe.org/en/latest/releases/0.7/)** Key features: -- Multiple domain support -- Multiple identities per user (and can be shared between users) -- Desktop, mobile and PWA-compatible web UI (with minimal JavaScript) -- Mastodon-compatible client API (supports existing apps) -- Easy deployment (web worker, background worker, and one database) +- **Multiple domain support**, allowing you to host as many domains as you like on a single running instance. +- **Multiple identity support**, allowing users to represent themselves in as many different ways as they want. +- **Easy deployment and maintenance**, so you can focus on looking after your community rather than trying to wrangle with the software. +- **Mastodon Client API compatible**, so users can use their favourite client apps just as they would with Mastodon or other compatible servers. For more background and information, see [jointakahe.org](https://jointakahe.org/). diff --git a/docs/releases/0.7.rst b/docs/releases/0.7.rst index 6e73a1d..ec56c9d 100644 --- a/docs/releases/0.7.rst +++ b/docs/releases/0.7.rst @@ -1,7 +1,7 @@ 0.7 === -*Not Yet Released* +*Released: 2023/01/16* This release focuses on the final big "feature delta" we had versus other complete servers, and includes a lot of the missing community features that @@ -32,9 +32,11 @@ Other fixes and improvements include: * Lightbox for viewing images (rather than a full redirect!) * Content Warnings of the same type will now all expand together * Client compatibility improvements (especially for Elk, Ivory and Tusky) +* Preliminary light theme for the interface * Remote server software tracking and down detection * HTML formatted emails along with plain text versions * Better display of videos on remote posts (no local upload yet) +* Unfollowing users clears them from your timeline (as does blocking) * RSS feeds now support multiple images on a single post * Timeline rendering performance improvements * Federation compatibility improvements diff --git a/docs/releases/index.rst b/docs/releases/index.rst index f2ac4ae..10fb878 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -7,6 +7,7 @@ Versions .. toctree:: :maxdepth: 1 + 0.7 0.6 0.5 0.4 diff --git a/takahe/__init__.py b/takahe/__init__.py index 43c4ab0..49e0fc1 100644 --- a/takahe/__init__.py +++ b/takahe/__init__.py @@ -1 +1 @@ -__version__ = "0.6.1" +__version__ = "0.7.0"