Skip to content

Commit

Permalink
Release 1.0.2 (#60,#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
aceberg committed Oct 6, 2023
1 parent c11e7a6 commit 3403857
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
# Change Log
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
### Added
- User Authentification
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Configuration can be done through config file or environment variables
| DBPATH | Path to Database | /data/db.sqlite |
| GUIIP | Address for web GUI | 0.0.0.0 |
| 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 |
| 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 |
Expand Down
2 changes: 1 addition & 1 deletion internal/web/templates/history.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<th>IP</th>
<th>Mac</th>
<th>Hardware</th>
<th>Last seen</th>
<th>First/Last seen</th>
<th>Known</th>
<th>State</th>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion internal/web/templates/host.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
<th>IP</th>
<th>Mac</th>
<th>Hardware</th>
<th>Last seen</th>
<th>First/Last seen</th>
<th>Known</th>
<th>State</th>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion internal/web/templates/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION=1.0.1
VERSION=1.0.2

0 comments on commit 3403857

Please sign in to comment.