From dbb44ca0dea6cc5c2f8a6052688237d9447c5503 Mon Sep 17 00:00:00 2001 From: Engelgardt23 Date: Sun, 17 May 2026 17:57:15 +0300 Subject: [PATCH] release: v1.1.1 Drop 'made by engelgardt' from the persistent header panel; keep it only in the startup banner and README. --- CHANGELOG.md | 4 ++++ src/dhcpsrv/__init__.py | 2 +- src/dhcpsrv/ui.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 075dfdb..93d2ef1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/src/dhcpsrv/__init__.py b/src/dhcpsrv/__init__.py index 7b837c7..f4abf74 100644 --- a/src/dhcpsrv/__init__.py +++ b/src/dhcpsrv/__init__.py @@ -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" diff --git a/src/dhcpsrv/ui.py b/src/dhcpsrv/ui.py index 8d4b692..cc70b54 100644 --- a/src/dhcpsrv/ui.py +++ b/src/dhcpsrv/ui.py @@ -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[/] "