Skip to content

v1.1

Compare
Choose a tag to compare
@linkdotnet linkdotnet released this 09 Jul 19:34
· 1363 commits to master since this release
4bf27a5

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