* Changelog

* Version
This commit is contained in:
Daniel Legt 2022-06-01 13:28:36 +03:00
parent 42eb5add65
commit aea10baffd
3 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
# 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.
# 1.2.0 🍥
QR Code generation has been implemented, the refresh button has been removed for the sake of keepign things simple and symmetrical. This will generate a QR code on the javascript side.

View File

@ -1,6 +1,6 @@
FROM alpine
LABEL version="1.2.0"
LABEL version="1.3.0"
# Copy the distribution files
COPY ./dist /app

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.2.0")
ctx.Header("FreePad-Version", "1.3.0")
// Move on
ctx.Next()