From f748adf132aaa3510694ea50be0b3571f22585ee Mon Sep 17 00:00:00 2001 From: Kato Twofold Date: Wed, 1 Jun 2022 18:29:24 +0300 Subject: [PATCH] * Version Bumb --- Changelog.md | 3 +++ lib/controllers/controllers_header.go | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index adadff5..36351ce 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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. diff --git a/lib/controllers/controllers_header.go b/lib/controllers/controllers_header.go index 5f9cb6c..8285962 100644 --- a/lib/controllers/controllers_header.go +++ b/lib/controllers/controllers_header.go @@ -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()