You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: support newline-separated hosts and shorthand ranges
Host input (IP Scanner, Port Scanner, Ping Monitor) now accepts
newline-separated entries, so a column pasted from Excel works
directly (one IP/range per line). The existing semicolon-separated
format keeps working.
Shorthand IPv4 ranges like 192.168.0.1-100 (192.168.0.1 to
192.168.0.100) are now supported too, alongside the existing
full-range format 192.168.0.1-192.168.0.100.
- HostRangeHelper.CreateListFromInput: split on ';', CR, LF
- HostRangeHelper.ResolveAsync: expand shorthand ranges
- RegexHelper: add IPv4AddressShortRangeRegex
- MultipleHostsRangeValidator: accept newlines + shorthand ranges
- Docs: document both features
0 commit comments