mirror of https://github.com/JustKato/FreePad.git
parent
42eb5add65
commit
aea10baffd
|
@ -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.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
FROM alpine
|
||||
|
||||
LABEL version="1.2.0"
|
||||
LABEL version="1.3.0"
|
||||
|
||||
# Copy the distribution files
|
||||
COPY ./dist /app
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue