Update CHANGELOG.md

This commit is contained in:
Leonid Maslakov 2023-01-22 23:12:34 +07:00
parent b0241bdefd
commit d9f7264936
3 changed files with 12 additions and 2 deletions

View File

@ -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.

View File

@ -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 /

View File

@ -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;
}