v1.0.0-rc2
·
32 commits
to master
since this release
The second release candidate for Flora which introduces another massive featureset:
- Flora will no longer panic when it doesn't know what language a code block is using (or if the language specified is not found), it will now automatically search for the closest language in terms of syntax and display that otherwise does not highlight the codeblock at all.
- Headings now act as anchor tags that redirect to the specific section of the page.
- The notification for saving is more visible and clearer now compared to before.
- The interface has been redesigned to be less rounded with the editor redesigned to be more nicer (although a bit messy?).
- Flora now supports draft posts which are not visible to non-authenticated visitors (one can view the post as unauthenticated if they have the post link which is intended for others to help proof-read the post without the need to use a creator account).
- Code blocks now show the language that is being highlighted.
- The editor can now support tab spacing via the
TAB
key.
Changes
Creator Dashboard
Editor
Homepage
Article Page
⚙️ Updating
You can update from older versions by following the commands.
git pull &&
docker build -t flora . &&
docker kill flora &&
docker rm flora &&
docker run -d -i -t -p 3000:3000 --env-file .env --name flora flora:latest
Note
This assumes that your current directory is the Flora local clone (
cd Flora
).