Release v1.0.0
This commit is contained in:
parent
3dd917f6f8
commit
2a9a24e450
3 changed files with 20 additions and 15 deletions
|
|
@ -2,8 +2,10 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
## [v1.0.0] - 2023-08-03
|
||||||
|
### Changed
|
||||||
|
- Migrated to YAML config file format
|
||||||
|
|
||||||
## [v0.9.4] - 2023-06-26
|
## [v0.9.4] - 2023-06-26
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
25
README.md
25
README.md
|
|
@ -53,19 +53,22 @@ Configuration can be done through config file or environment variables
|
||||||
| LOGLEVEL | How much log output you want to see ("short" or "verbose") | verbose |
|
| LOGLEVEL | How much log output you want to see ("short" or "verbose") | verbose |
|
||||||
|
|
||||||
## Config file
|
## Config file
|
||||||
|
> [!WARNING]
|
||||||
|
> Config file format has been migrated to YAML in release v1.0.0.
|
||||||
|
|
||||||
Config file path is `/data/config`.
|
Config file path is `/data/config.yaml`.
|
||||||
All variables could be set there. Example:
|
All variables could be set there. Example:
|
||||||
```sh
|
```yaml
|
||||||
IFACE="enp2s0 wg0"
|
color: light
|
||||||
DBPATH="/data/hosts.db"
|
dbpath: /data/db.sqlite
|
||||||
GUIIP="192.168.2.1" # To access from LAN
|
guiip: 192.168.2.1
|
||||||
GUIPORT="8840"
|
guiport: "8840"
|
||||||
TIMEOUT="300" # 5 minutes
|
iface: enp1s0
|
||||||
SHOUTRRR_URL="gotify://192.168.2.1:8083/AwQqpAae.rrl5Ob/?title=Unknown host detected&DisableTLS=yes" # Url to notify
|
ignoreip: "no"
|
||||||
THEME="darkly"
|
loglevel: short
|
||||||
IGNOREIP="no"
|
shoutrrr_url: gotify://192.168.2.1:8083/AwQqpAae.rrl5Ob/?title=Unknown host detected&DisableTLS=yes
|
||||||
LOGLEVEL="short"
|
theme: solar
|
||||||
|
timeout: 120
|
||||||
```
|
```
|
||||||
|
|
||||||
## Options
|
## Options
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
VERSION=0.9.4
|
VERSION=1.0.0
|
||||||
Loading…
Reference in a new issue