Skip to content

Commit 7b372df

Browse files
committed
Merge branch 'main' into feature/group_policy
2 parents fad99c3 + 5d588cf commit 7b372df

File tree

131 files changed

+9805
-7990
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+9805
-7990
lines changed

.github/transifex.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,6 @@ git:
2424
ru_RU: ru-RU
2525
sl_SI: sl-SI
2626
sv_SE: sv-SE
27+
uk_UA: uk-UA
2728
zh_CN: zh-CN
2829
zh_TW: zh-TW

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,3 +255,5 @@ paket-files/
255255
# Custom
256256
Build/
257257
.vscode/
258+
*.exe
259+
*.dll

.nuget/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,15 @@
5858
</p>
5959
</div>
6060

61+
<div align="center">
62+
<img alt="NETworkManager Features Preview" src="https://github.com/BornToBeRoot/NETworkManager/blob/main/Website/static/img/preview-features.gif?raw=true" />
63+
<details>
64+
<summary>Click to see screenshots of NETworkManager in action!</summary>
65+
<img alt="NETworkManager tabs and drag & drop preview" src="https://github.com/BornToBeRoot/NETworkManager/blob/main/Website/static/img/preview_tabs_drag_drop.gif?raw=true" />
66+
<img alt="NETworkManager dark/light theme preview" src="https://github.com/BornToBeRoot/NETworkManager/blob/main/Website/static/img/preview-light-theme.png?raw=true" />
67+
</details>
68+
</div>
69+
6170
## 🚀 Why NETworkManager?
6271

6372
NETworkManager is your go-to tool for simplifying network administration and troubleshooting. Whether you're a sysadmin maintaining company network with multiple servers, a network engineer in a large enterprise, or an IT enthusiast running your home lab, NETworkManager provides a powerful suite of tools to manage and diagnose your network infrastructure efficiently.
@@ -68,24 +77,12 @@ Here's why you'll love it:
6877
- 🖥️ **Remote System Management** - Connect to remote systems seamlessly via RDP, PuTTY (SSH, Telnet, Serial), PowerShell (WinRM), TigerVNC (VNC), or AWS Session Manager.
6978
- 🔍 **Analyze & Troubleshoot** - Deep network diagnostics with WiFi Analyzer, IP/Port Scanners, Ping Monitor, Traceroute, DNS Lookup, LLDP/CDP Capture, and <a href="https://borntoberoot.net/NETworkManager/docs/features">many more</a>.
7079
- 🔐 **Secure Profiles** - Organize hosts and networks in encrypted profiles with seamless access across all features.
71-
<details>
72-
<summary>See it in Action</summary>
73-
tbd
74-
</details>
7580
- 💎 **Open Source & Free** - No ads, no subscriptions, fully community-driven.
7681
- 🏢 **Enterprise-Ready** - MSI installer, signed binaries, and package manager support (Chocolatey, WinGet, Evergreen).
7782
- 🎨 **Personalized Experience** - Available in 16+ languages, with customizable light/dark themes and accent colors.
78-
<details>
79-
<summary>Theme preview</summary>
80-
<img alt="NETworkManager Light Theme" src="https://github.com/BornToBeRoot/NETworkManager/blob/main/Website/static/img/preview-light-theme.png?raw=true" />
81-
</details>
8283

8384
📖 Explore all features in detail on our [documentation page](https://borntoberoot.net/NETworkManager/docs/features).
8485

85-
<div align="center">
86-
<img alt="NETworkManager Features Preview" src="https://github.com/BornToBeRoot/NETworkManager/blob/main/Website/static/img/preview-features.gif?raw=true" />
87-
</div>
88-
8986
## 📦 Download
9087

9188
Get started with NETworkManager today! Download pre-built, [signed](https://borntoberoot.net/NETworkManager/download#code-signing-policy) binaries (setup, portable, or archive) from our [download page](https://borntoberoot.net/NETworkManager/download) with detailed install instructions (e.g., silent install). Files are hosted on [GitHub Releases](https://github.com/BornToBeRoot/NETworkManager/releases/latest).

Scripts/Create-FlagFromSVG.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
$ConvertPath = "C:\Tools\ImageMagick-7.1.0-portable-Q16-x64\convert.exe"
88

9-
$SourcePath = "C:\Temp\jp.svg"
10-
$DestinationPath = "C:\Temp\ja-JP.png"
9+
$SourcePath = "C:\Temp\ua.svg"
10+
$DestinationPath = "C:\Temp\uk-UA.png"
1111

1212
Start-Process -FilePath $ConvertPath -ArgumentList "-antialias -density 600 -background transparent -resize x48 ""$SourcePath"" ""$DestinationPath""" -NoNewWindow -Wait

Source/GlobalAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
[assembly: AssemblyTrademark("")]
77
[assembly: AssemblyCulture("")]
88

9-
[assembly: AssemblyVersion("2025.11.1.0")]
10-
[assembly: AssemblyFileVersion("2025.11.1.0")]
9+
[assembly: AssemblyVersion("2025.11.16.0")]
10+
[assembly: AssemblyFileVersion("2025.11.16.0")]

Source/NETworkManager.Documentation/DocumentationIdentifier.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,6 @@ public enum DocumentationIdentifier
6565
/// </summary>
6666
ApplicationPutty,
6767

68-
/// <summary>
69-
/// AWS Session Manager documentation page.
70-
/// </summary>
71-
ApplicationAWSSessionManager,
72-
7368
/// <summary>
7469
/// TigerVNC documentation page.
7570
/// </summary>

Source/NETworkManager.Documentation/DocumentationManager.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ public static class DocumentationManager
5555
new DocumentationInfo(DocumentationIdentifier.ApplicationPutty,
5656
@"docs/application/putty"),
5757

58-
new DocumentationInfo(DocumentationIdentifier.ApplicationAWSSessionManager,
59-
@"docs/application/aws-session-manager"),
60-
6158
new DocumentationInfo(DocumentationIdentifier.ApplicationTigerVNC,
6259
@"docs/application/tigervnc"),
6360

@@ -210,8 +207,7 @@ public static DocumentationIdentifier GetIdentifierByApplicationName(Application
210207
ApplicationName.DNSLookup => DocumentationIdentifier.ApplicationDnsLookup,
211208
ApplicationName.RemoteDesktop => DocumentationIdentifier.ApplicationRemoteDesktop,
212209
ApplicationName.PowerShell => DocumentationIdentifier.ApplicationPowerShell,
213-
ApplicationName.PuTTY => DocumentationIdentifier.ApplicationPutty,
214-
ApplicationName.AWSSessionManager => DocumentationIdentifier.ApplicationAWSSessionManager,
210+
ApplicationName.PuTTY => DocumentationIdentifier.ApplicationPutty,
215211
ApplicationName.TigerVNC => DocumentationIdentifier.ApplicationTigerVNC,
216212
ApplicationName.WebConsole => DocumentationIdentifier.ApplicationWebConsole,
217213
ApplicationName.SNMP => DocumentationIdentifier.ApplicationSnmp,
@@ -259,8 +255,7 @@ public static DocumentationIdentifier GetIdentifierBySettingsName(SettingsName n
259255
SettingsName.DNSLookup => GetIdentifierByApplicationName(ApplicationName.DNSLookup),
260256
SettingsName.RemoteDesktop => GetIdentifierByApplicationName(ApplicationName.RemoteDesktop),
261257
SettingsName.PowerShell => GetIdentifierByApplicationName(ApplicationName.PowerShell),
262-
SettingsName.PuTTY => GetIdentifierByApplicationName(ApplicationName.PuTTY),
263-
SettingsName.AWSSessionManager => GetIdentifierByApplicationName(ApplicationName.AWSSessionManager),
258+
SettingsName.PuTTY => GetIdentifierByApplicationName(ApplicationName.PuTTY),
264259
SettingsName.TigerVNC => GetIdentifierByApplicationName(ApplicationName.TigerVNC),
265260
SettingsName.SNMP => GetIdentifierByApplicationName(ApplicationName.SNMP),
266261
SettingsName.SNTPLookup => GetIdentifierByApplicationName(ApplicationName.SNTPLookup),

Source/NETworkManager.Documentation/LibraryManager.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,7 @@ public static class LibraryManager
2727
new LibraryInfo("AirspaceFixer", "https://github.com/chris84948/AirspaceFixer",
2828
Strings.Library_AirspaceFixer_Description,
2929
Strings.License_MITLicense,
30-
"https://github.com/chris84948/AirspaceFixer/blob/master/LICENSE"),
31-
new LibraryInfo("AWSSDK.EC2", "https://github.com/aws/aws-sdk-net/",
32-
Strings.Library_AWSSDKdotEC2_Description,
33-
Strings.License_ApacheLicense2dot0, "https://aws.amazon.com/apache-2-0/"),
30+
"https://github.com/chris84948/AirspaceFixer/blob/master/LICENSE"),
3431
new LibraryInfo("ControlzEx", "https://github.com/ControlzEx/ControlzEx",
3532
Strings.Library_ControlzEx_Description,
3633
Strings.License_MITLicense,

Source/NETworkManager.Documentation/Licenses/AWSSDK.EC2.txt

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)