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 ""