v1.1
New Features
- Posts can be set to draft mode so that they don't have to be published directly
- Likes per Blogpost
- Way more test coverage
- Smaller adaptions of the UI and fixes
Known Limitations
- New fields for the SQL database were introduced and there is no migration available right now. To migrate from an existing SQL database, apply the following SQL script:
ALTER TABLE [dbo].[BlogPosts]
ADD
IsPublished BIT,
Likes INT
UPDATE [dbo].[BlogPosts]
SET IsPublished = 1, Likes = 0