Skip to content

v1.0.0-rc2

Compare
Choose a tag to compare
@ShindouMihou ShindouMihou released this 29 May 08:16
· 32 commits to master since this release
20ae590

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

Before
image

After
image

Editor

Before
image

After
image

Homepage

Before
image

After
image

Article Page

Before
image

After
image

⚙️ 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).