Update CHANGELOG.md

main
Leonid Maslakov 8 months ago
parent b0241bdefd
commit d9f7264936

@ -2,6 +2,15 @@
Semantic versioning is used (https://semver.org/).
## v1.3
- UI: Added custom themes support. Added light theme.
- UI: Added translations into Bengali and German (thanks Pardesi_Cat and Hiajen).
- UI: Check boxes and spoilers now have a custom design.
- Admin: Added support for `X-Real-IP` header for reverse proxy.
- Admin: Added Server response header (for example: `Lenpaste/1.3`).
- Fix: many bugs and errors.
- Dev: Improved quality of `Dockerfile` and `entrypoint.sh`
## v1.2
- UI: Add history tab.
- UI: Add copy to clipboard button.

@ -1,5 +1,5 @@
# BUILD
FROM golang:1.18.9-alpine3.17 as build
FROM golang:1.18.10-alpine3.17 as build
WORKDIR /build
@ -15,7 +15,7 @@ RUN make
# RUN
FROM alpine:3.17.0 as run
FROM alpine:3.17.1 as run
WORKDIR /

@ -18,6 +18,7 @@ http {
# Required for Lenpaste to work correctly.
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
}

Loading…
Cancel
Save