* Version Bumb

This commit is contained in:
Daniel Legt 2022-06-01 18:29:24 +03:00
parent 4bfad3ef40
commit f748adf132
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
# 1.4.0 🖌
Syntax highlight has been implemented, as well as a couple security concerns being patched. Thank you to everyone that has helped me out with those
# 1.3.0 👀
Implemented a views system, now everyone can see how many times a pad has been accessed, an auto-save has also been added for those views to file in the `data` dir.

View File

@ -6,7 +6,7 @@ func ApplyHeaders(router *gin.Engine) {
router.Use(func(ctx *gin.Context) {
// Apply the header
ctx.Header("FreePad-Version", "1.3.0")
ctx.Header("FreePad-Version", "1.4.0")
// Move on
ctx.Next()