Skip to content

Commit

Permalink
Release 1.0.5 (#51, #66)
Browse files Browse the repository at this point in the history
  • Loading branch information
aceberg committed Jan 5, 2024
1 parent eee3c1d commit a7f8dd5
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 15 deletions.
22 changes: 11 additions & 11 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ builds:
env: [CGO_ENABLED=0]
goos:
- linux
- windows
- darwin
# - windows
# - darwin
goarch:
- 386
- amd64
Expand All @@ -17,15 +17,15 @@ builds:
- "5"
- "6"
- "7"
ignore:
- goos: darwin
goarch: 386
- goos: darwin
goarch: arm
- goos: windows
goarch: 386
- goos: windows
goarch: arm
# ignore:
# - goos: darwin
# goarch: 386
# - goos: darwin
# goarch: arm
# - goos: windows
# goarch: 386
# - goos: windows
# goarch: arm

nfpms:
- maintainer: aceberg <[email protected]>
Expand Down
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.5] - 2024-01-05
### Added
- Goreleaser for binaries [#66](https://github.com/aceberg/WatchYourLAN/issues/66)
- Better Mobile view [#51](https://github.com/aceberg/WatchYourLAN/issues/51)
- [More themes](https://github.com/aceberg/aceberg-bootswatch-fork) (emerald, grass, sand)

## [v1.0.4] - 2023-10-12
### Added
- Configurable `timeout` for `arp-scan` [#65](https://github.com/aceberg/WatchYourLAN/issues/65)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Configuration can be done through config file or environment variables
| AUTH_EXPIRE | Session expiration time. A number and suffix: **m, h, d** or **M**. | 7d |
| AUTH_USER | Username | "" |
| AUTH_PASSWORD | Encrypted password (bcrypt). [How to encrypt password with bcrypt?](docs/BCRYPT.md) | "" |
| COLOR | Background color: light or dark | light |
| COLOR | Background color: light or dark | dark |
| DBPATH | Path to Database | /data/db.sqlite |
| GUIIP | Address for web GUI | 0.0.0.0 |
| GUIPORT | Port for web GUI | 8840 |
Expand All @@ -55,7 +55,7 @@ Configuration can be done through config file or environment variables
| 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 |
| SHOUTRRR_URL | Url to any notification service supported by [Shoutrrr](https://github.com/containrrr/shoutrrr) (gotify, email, telegram and others) or [Generic Webhook](https://github.com/containrrr/shoutrrr/blob/main/docs/services/generic.md) | "" |
| THEME | Any theme name from https://bootswatch.com in lowcase | solar |
| THEME | Any theme name from https://bootswatch.com in lowcase or [additional](https://github.com/aceberg/aceberg-bootswatch-fork) (emerald, grass, sand) | solar |
| TIMEOUT | Time between scans (seconds) | 60 (1 minute) |


Expand Down
2 changes: 1 addition & 1 deletion internal/conf/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func Get(path string) (config models.Conf, authConf auth.Conf) {
viper.SetDefault("TIMEOUT", "60")
viper.SetDefault("SHOUTRRR_URL", "")
viper.SetDefault("THEME", "solar")
viper.SetDefault("COLOR", "light")
viper.SetDefault("COLOR", "dark")
viper.SetDefault("IGNOREIP", "no")
viper.SetDefault("LOGLEVEL", "verbose")
viper.SetDefault("HISTORY_DAYS", "30")
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.4
VERSION=1.0.5

0 comments on commit a7f8dd5

Please sign in to comment.