Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -257,3 +257,4 @@ Build/
.vscode/
*.exe
*.dll
ToDo.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private void ChildWindow_OnLoaded(object sender, RoutedEventArgs e)

private void DataGridRow_MouseDoubleClick(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
var x = (SNMPOIDProfilesViewModel)DataContext;
var x = (PortProfilesViewModel)DataContext;

if (x.OKCommand.CanExecute(null))
x.OKCommand.Execute(null);
Expand Down
16 changes: 14 additions & 2 deletions Website/docs/changelog/next-release.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
---
sidebar_position: 0
description: "Changelog for the next NETworkManager release — upcoming features, improvements, and bug fixes."
keywords: [NETworkManager, changelog, release notes, next release, upcoming features, bug fixes]
keywords:
[
NETworkManager,
changelog,
release notes,
next release,
upcoming features,
bug fixes,
]
---

# Next Release
Expand Down Expand Up @@ -31,10 +39,14 @@ Release date: **xx.xx.2025**

## Improvements

- Redesign Status Window to make it more compact [#3359](https://github.com/BornToBeRoot/NETworkManager/pull/3359)
- Redesign Status Window to make it more compact. [#3359](https://github.com/BornToBeRoot/NETworkManager/pull/3359)

## Bug Fixes

**Port Scanner**

- Fixed an app crash when double-clicking a port profile. [#3382](https://github.com/BornToBeRoot/NETworkManager/pull/3382)

**PowerShell**

- Fixed incorrect initial embedded window size on high-DPI monitors. The `WindowsFormsHost` panel now sets its initial dimensions in physical pixels using the current DPI scale factor, ensuring the PowerShell window fills the panel correctly at startup. [#3352](https://github.com/BornToBeRoot/NETworkManager/pull/3352)
Expand Down
Loading