From e80e673a100d2eddf14281a5050e8885d2216a98 Mon Sep 17 00:00:00 2001 From: Engelgardt23 Date: Sun, 17 May 2026 18:06:13 +0300 Subject: [PATCH] release: v1.0.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop 'made by engelgardt' from the startup banner — author credit stays in README only. Exe now ships the embedded icon (CI uses -iconFile assets/icon.ico). --- CHANGELOG.md | 6 ++++++ src/netswitch.ps1 | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d255b1..3b00315 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.0.1] - 2026-05-17 +### Changed +- Dropped the `made by engelgardt` line from the startup banner — keep author credit in the README only. +### Added +- Embedded application icon in the exe (via ps2exe `-iconFile assets/icon.ico`). + ## [1.0.0] - 2026-05-16 ### Added - First public release on GitHub. diff --git a/src/netswitch.ps1 b/src/netswitch.ps1 index c80c733..5486ab6 100644 --- a/src/netswitch.ps1 +++ b/src/netswitch.ps1 @@ -1,7 +1,7 @@ # netswitch v1.0.0 - quick NIC IP / DHCP toggle # made by engelgardt -$NetswitchVersion = '1.0.0' +$NetswitchVersion = '1.0.1' $GithubRepo = 'Engelgardt23/netswitch' $ErrorActionPreference = 'Stop' @@ -23,7 +23,6 @@ if (-not $me.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) { Write-Host "" Write-Host "==============================================" -ForegroundColor Cyan Write-Host " netswitch v$NetswitchVersion - NIC IP/DHCP toggle" -ForegroundColor Cyan -Write-Host " made by engelgardt" -ForegroundColor DarkCyan Write-Host "==============================================" -ForegroundColor Cyan Write-Host ""