Skip to content

Commit

Permalink
Release 1.0.6 (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
aceberg committed Jan 5, 2024
1 parent a7f8dd5 commit d789378
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
# Change Log
All notable changes to this project will be documented in this file.

## [v1.0.5] - 2024-01-06
### Fixed
- Sort by `Known` field bug [#70](https://github.com/aceberg/WatchYourLAN/issues/70)

## [v1.0.5] - 2024-01-05
### Added
- Goreleaser for binaries [#66](https://github.com/aceberg/WatchYourLAN/issues/66)
Expand Down
2 changes: 1 addition & 1 deletion internal/web/sort.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func sortByField(method string, field string) {
r := reflect.ValueOf(&host)
f := reflect.Indirect(r).FieldByName(field)
if field == "Known" {
oneSort.F = strconv.FormatUint(f.Uint(), 10)
oneSort.F = strconv.FormatInt(f.Int(), 10)
} else {
oneSort.F = f.String()
}
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.5
VERSION=1.0.6

0 comments on commit d789378

Please sign in to comment.