Release 1.0.2 (#60,#61)
This commit is contained in:
parent
c11e7a6956
commit
3403857442
5 changed files with 10 additions and 3 deletions
|
|
@ -2,6 +2,12 @@
|
||||||
# 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.
|
||||||
|
|
||||||
|
## [v1.0.2] - 2023-10-07
|
||||||
|
### Fixed
|
||||||
|
- UI update bug [#61](https://github.com/aceberg/WatchYourLAN/issues/61)
|
||||||
|
### Added
|
||||||
|
- Device online/offline history [#60](https://github.com/aceberg/WatchYourLAN/issues/60)
|
||||||
|
|
||||||
## [v1.0.1] - 2023-08-18
|
## [v1.0.1] - 2023-08-18
|
||||||
### Added
|
### Added
|
||||||
- User Authentification
|
- User Authentification
|
||||||
|
|
|
||||||
|
|
@ -49,6 +49,7 @@ Configuration can be done through config file or environment variables
|
||||||
| DBPATH | Path to Database | /data/db.sqlite |
|
| DBPATH | Path to Database | /data/db.sqlite |
|
||||||
| GUIIP | Address for web GUI | 0.0.0.0 |
|
| GUIIP | Address for web GUI | 0.0.0.0 |
|
||||||
| GUIPORT | Port for web GUI | 8840 |
|
| GUIPORT | Port for web GUI | 8840 |
|
||||||
|
| HISTORY_DAYS | Keep devices online/offline history for (days) | 30 |
|
||||||
| IFACE | Interface to scan. Could be one or more, separated by space. Currently `docker0` is not allowed, as arp-scan wouldn't work with it correctly | enp1s0 |
|
| IFACE | Interface to scan. Could be one or more, separated by space. Currently `docker0` is not allowed, as arp-scan wouldn't work with it correctly | enp1s0 |
|
||||||
| IGNOREIP | If you want to detect unknown hosts by MAC only, set this wariable to "yes" | no |
|
| 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 |
|
| LOGLEVEL | How much log output you want to see ("short" or "verbose") | verbose |
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
<th>IP</th>
|
<th>IP</th>
|
||||||
<th>Mac</th>
|
<th>Mac</th>
|
||||||
<th>Hardware</th>
|
<th>Hardware</th>
|
||||||
<th>Last seen</th>
|
<th>First/Last seen</th>
|
||||||
<th>Known</th>
|
<th>Known</th>
|
||||||
<th>State</th>
|
<th>State</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,7 @@
|
||||||
<th>IP</th>
|
<th>IP</th>
|
||||||
<th>Mac</th>
|
<th>Mac</th>
|
||||||
<th>Hardware</th>
|
<th>Hardware</th>
|
||||||
<th>Last seen</th>
|
<th>First/Last seen</th>
|
||||||
<th>Known</th>
|
<th>Known</th>
|
||||||
<th>State</th>
|
<th>State</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
VERSION=1.0.1
|
VERSION=1.0.2
|
||||||
Loading…
Reference in a new issue