From fd2f1dabb9ca6de44784bcf75a82d0cdd9806226 Mon Sep 17 00:00:00 2001 From: Engelgardt23 Date: Sun, 17 May 2026 18:06:08 +0300 Subject: [PATCH] release: v1.1.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop 'made by engelgardt' from the startup banner too — author credit stays in README only. Exe now ships the embedded icon (CI uses --icon assets/icon.ico). --- CHANGELOG.md | 6 ++++++ src/dhcpsrv/app.py | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93d2ef1..839828b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and ## [Unreleased] +## [1.1.2] - 2026-05-17 +### Changed +- Dropped the `made by engelgardt` line from the startup banner too — author credit lives in the README only. +### Added +- Embedded application icon in the exe (via PyInstaller `--icon assets/icon.ico`). + ## [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. diff --git a/src/dhcpsrv/app.py b/src/dhcpsrv/app.py index b685cb8..28fb0b5 100644 --- a/src/dhcpsrv/app.py +++ b/src/dhcpsrv/app.py @@ -40,7 +40,6 @@ def main() -> None: console = Console(log_path=False) console.print(f"[bold cyan]dhcpsrv v{__version__}[/] - portable laptop-side DHCP server") - console.print("[dim]made by engelgardt[/]") console.print() check_for_update(console)