diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b571d2..bb6f964 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ # Change Log All notable changes to this project will be documented in this file. +## [v1.0.1] - 2023-08-18 +### Added +- User Authentification ## [v1.0.0] - 2023-08-03 ### Changed diff --git a/README.md b/README.md index d32c3d5..e3440a0 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,10 @@ Configuration can be done through config file or environment variables | COLOR | Background color: light or dark | light | | IGNOREIP | If you want to detect unknown hosts by MAC only, set this wariable to "yes" | no | | LOGLEVEL | How much log output you want to see ("short" or "verbose") | verbose | +| AUTH | Enable Session-Cookie authentication | false | +| AUTH_USER | Username | "" | +| AUTH_PASSWORD | Encrypted password (bcrypt) | "" | +| AUTH_EXPIRE | Session expiration time. A number and suffix: **m, h, d** or **M**. | 7d | ## Config file > [!WARNING] diff --git a/internal/web/templates/version b/internal/web/templates/version index 4ff1268..7d64eae 100644 --- a/internal/web/templates/version +++ b/internal/web/templates/version @@ -1 +1 @@ -VERSION=1.0.0 \ No newline at end of file +VERSION=1.0.1 \ No newline at end of file