Skip to content

Releases: linkdotnet/Blog

v1.2

14 Jul 18:42
65b9246
Compare
Choose a tag to compare

New Features

  • Added Pagination (see #13)
  • Admin Actions under one menu entry

Improvements

  • Smaller SEO optimizations (Tags are used as keywords for meta attribute)
  • Improvements in responsive design for Introduction Card
  • Updated Packages

v1.1

09 Jul 19:34
4bf27a5
Compare
Choose a tag to compare

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

v1.0

07 Jul 10:58
Compare
Choose a tag to compare

This is the initial release of the Blog.

Current Features:

  • Create Blog Posts in Markdown
  • Display Blog Posts (Markdown to HTML)
  • Delete or Update Blog Posts
  • Syntax Highlighting of C# code
  • Some SEO optimizations
  • Authorization via Auth0