release: v1.1.1

Drop 'made by engelgardt' from the persistent header panel; keep it only in the startup banner and README.
This commit is contained in:
Engelgardt23 2026-05-17 17:57:15 +03:00
parent 2e82058a91
commit dbb44ca0de
3 changed files with 6 additions and 2 deletions

View file

@ -6,6 +6,10 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and
## [Unreleased]
## [1.1.1] - 2026-05-16
### Changed
- The persistent header panel no longer prints the `made by engelgardt` line. Author credit moves to the one-off startup banner and the README only — the always-on UI stays tighter.
## [1.1.0] - 2026-05-16
### Added
- Auto-update check on startup. Polls GitHub `/releases/latest` with a 3-second timeout. If a newer version is available, prints a yellow notice and offers to open the download page in your browser. Silent on offline / API errors.

View file

@ -6,5 +6,5 @@ The single source of truth for the project version. Bump this before tagging
a release; CI reads the tag, the code reads this constant.
"""
__version__ = "1.1.0"
__version__ = "1.1.1"
GITHUB_REPO = "Engelgardt23/dhcpsrv"

View file

@ -53,7 +53,7 @@ class Ui:
st = self.server.stats
cfg = self.server.cfg
body = (
f"[bold cyan]dhcpsrv v{__version__}[/] [dim]made by engelgardt[/]\n"
f"[bold cyan]dhcpsrv v{__version__}[/]\n"
f"Server: [bold]{cfg.server_ip}[/]/{cfg.netmask} "
f"Pool: [bold]{int2ip(cfg.pool[0])}{int2ip(cfg.pool[-1])}[/] "
f"Lease: [bold]{cfg.lease}s[/] "