diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 3b0b00f..a019bdf 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -6,8 +6,8 @@ builds: env: [CGO_ENABLED=0] goos: - linux - - windows - - darwin + # - windows + # - darwin goarch: - 386 - amd64 @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index b861fd5..c1f6177 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index 71e748c..399833a 100644 --- a/README.md +++ b/README.md @@ -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 | @@ -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) | diff --git a/internal/conf/config.go b/internal/conf/config.go index 2689cca..8bafd2d 100644 --- a/internal/conf/config.go +++ b/internal/conf/config.go @@ -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") diff --git a/internal/web/templates/version b/internal/web/templates/version index 6b82dc6..73b0cec 100644 --- a/internal/web/templates/version +++ b/internal/web/templates/version @@ -1 +1 @@ -VERSION=1.0.4 \ No newline at end of file +VERSION=1.0.5 \ No newline at end of file