From abf38ea4a6d2776dc0ef1369da3f851e1cc0c8f7 Mon Sep 17 00:00:00 2001
From: BornToBeRoot <16019165+BornToBeRoot@users.noreply.github.com>
Date: Sat, 18 Jan 2025 01:48:17 +0100
Subject: [PATCH] Release: 2025.1.18.0
---
Website/docs/changelog/2025-1-18-0.md | 75 ++++++++++++++++++++++++++
Website/docs/changelog/next-release.md | 46 +---------------
Website/src/pages/download.mdx | 18 +++----
3 files changed, 86 insertions(+), 53 deletions(-)
create mode 100644 Website/docs/changelog/2025-1-18-0.md
diff --git a/Website/docs/changelog/2025-1-18-0.md b/Website/docs/changelog/2025-1-18-0.md
new file mode 100644
index 0000000000..1e4128eaaa
--- /dev/null
+++ b/Website/docs/changelog/2025-1-18-0.md
@@ -0,0 +1,75 @@
+---
+sidebar_position: 983
+---
+
+# 2025.1.18.0
+
+Version: **2025.1.18.0**
+Release date: **18.01.2025**
+
+| File | `SHA256` |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
+| [`NETworkManager_2025.1.18.0_Setup.msi`](https://github.com/BornToBeRoot/NETworkManager/releases/download/2025.1.18.0/NETworkManager_2025.1.18.0_Setup.msi) | `0E8722AB821FDFC5079C8E914CDBC293F373F551924EFBA14CA4AF6E68B678F9` |
+| [`NETworkManager_2025.1.18.0_Portable.zip`](https://github.com/BornToBeRoot/NETworkManager/releases/download/2025.1.18.0/NETworkManager_2025.1.18.0_Portable.zip) | `85000CC7E9892C14B3C1F7DE2D540A57E2C90CF5AE25E27960844751AADCF166` |
+| [`NETworkManager_2025.1.18.0_Archive.zip`](https://github.com/BornToBeRoot/NETworkManager/releases/download/2025.1.18.0/NETworkManager_2025.1.18.0_Archive.zip) | `68FFC7A42F0CF27B83525BB6AE79C730C96C40A956869F5C45D60B97CCECAE74` |
+
+**System requirements**
+
+- Windows 10 / Server x64 (22H2 or later)
+- [.NET Desktop Runtime 8.0 (LTS) - x64](https://dotnet.microsoft.com/en-us/download/dotnet/8.0/runtime)
+
+## Breaking Changes
+
+- Minimum supported Windows version increased to `22H2` to support:
+ - WiFi 6 GHz, WPA3, 802.11be [#2912](https://github.com/BornToBeRoot/NETworkManager/pull/2912)
+ - Remote Desktop high DPI, scaling and fast resizing [#2968](https://github.com/BornToBeRoot/NETworkManager/pull/2968)
+
+## What's new?
+
+- **WiFi**
+
+ - 6 GHz networks are now supported. [#2912](https://github.com/BornToBeRoot/NETworkManager/pull/2912) [#2928](https://github.com/BornToBeRoot/NETworkManager/pull/2928)
+ - `WPA3 Personal (SAE)`, `WPA3 Enterprise` and `WPA3 Enterprise (192-bit)` are now supported. [#2912](https://github.com/BornToBeRoot/NETworkManager/pull/2912)
+ - `802.11be` (`EHT`) is now supported. [#2912](https://github.com/BornToBeRoot/NETworkManager/pull/2912)
+
+- **Remote Desktop**
+
+ - Scale rdp session and control to support high DPI (e.g. per Monitor DPI like 125%, 150%, etc.). [#2968](https://github.com/BornToBeRoot/NETworkManager/pull/2968)
+ - Resizing now uses [`IMsRdpClient9::UpdateSessionDisplaySettings`]() instead of [`IMsRdpClient::Reconnect`](https://learn.microsoft.com/en-us/windows/win32/termserv/imsrdpclient8-reconnect) to support scaling and faster resizing (without the need of reconnecting). [#2968](https://github.com/BornToBeRoot/NETworkManager/pull/2968).
+
+ :::warning
+
+ The new features for high DPI, scaling and resizing may cause issues or doesn't work with legacy servers/clients. Please report any issues you find here: [#2911](https://github.com/BornToBeRoot/NETworkManager/issues/2911)
+
+ :::
+
+## Improvements
+
+- Improve ToolTips (e.g. migrate from Twitter to X, etc.), Buttons, etc. [#2955](https://github.com/BornToBeRoot/NETworkManager/pull/2955)
+- **WiFi**
+ - Improve search, cleanup/remove some converters to make the code more readable and faster. [#2940](https://github.com/BornToBeRoot/NETworkManager/pull/2940)
+
+## Bugfixes
+
+- Horizontal scrollbar fixed for some views. [#2945](https://github.com/BornToBeRoot/NETworkManager/pull/2945)
+- Fixed an issue with DPI scaling where the application was blurry if a second monitor had a different dpi setting than the main monitor. [#2941](https://github.com/BornToBeRoot/NETworkManager/pull/2941)
+- Changed the Welcome dialog from `MahApps.Metro.Controls.Dialogs` to `MahApps.Metro.SimpleChildWindow`, so the main window can be dragged and resized on the first start. [#2914](https://github.com/BornToBeRoot/NETworkManager/pull/2914)
+
+- **WiFi**
+
+ - Fixed a bug that caused the scan process to crash when a 6 GHz network was found. [#2912](https://github.com/BornToBeRoot/NETworkManager/pull/2912)
+
+- **IP Scanner**
+
+ - Fixed two `NullReferenceException` in ICMP & NETBIOS for some IP addresses. [#2964](https://github.com/BornToBeRoot/NETworkManager/pull/2964)
+
+- **Remote Desktop**
+
+ - Fixed an app crash when a reconnect was triggered while it was already trying to connect. [#2988](https://github.com/BornToBeRoot/NETworkManager/pull/2988)
+
+## Dependencies, Refactoring & Documentation
+
+- Migrated code for some loading indicators from the library [LoadingIndicators.WPF] (https://github.com/zeluisping/LoadingIndicators.WPF) to the NETworkManager repo, as the original repo looks unmaintained and has problems with MahApps.Metro version 2 and later. [#2963](https://github.com/BornToBeRoot/NETworkManager/pull/2963)
+- Code cleanup & refactoring [#2940](https://github.com/BornToBeRoot/NETworkManager/pull/2940) [#2976](https://github.com/BornToBeRoot/NETworkManager/pull/2976)
+- Language files updated via [#transifex](https://github.com/BornToBeRoot/NETworkManager/pulls?q=author%3Aapp%2Ftransifex-integration)
+- Dependencies updated via [#dependabot](https://github.com/BornToBeRoot/NETworkManager/pulls?q=author%3Aapp%2Fdependabot)
diff --git a/Website/docs/changelog/next-release.md b/Website/docs/changelog/next-release.md
index dbc1144ea0..861afb4390 100644
--- a/Website/docs/changelog/next-release.md
+++ b/Website/docs/changelog/next-release.md
@@ -5,7 +5,7 @@ sidebar_position: 0
# Next Release
Version: **Next release**
-Release date: **xx.xx.2024**
+Release date: **xx.xx.2025**
| File | `SHA256` |
| ---- | -------- |
@@ -17,56 +17,14 @@ Release date: **xx.xx.2024**
## Breaking Changes
-- Minimum supported Windows version increased to `22H2` to support:
- - WiFi 6 GHz, WPA3, 802.11be [#2912](https://github.com/BornToBeRoot/NETworkManager/pull/2912)
- - Remote Desktop high DPI, scaling and fast resizing [#2968](https://github.com/BornToBeRoot/NETworkManager/pull/2968)
-
## What's new?
-- **WiFi**
-
- - 6 GHz networks are now supported. [#2912](https://github.com/BornToBeRoot/NETworkManager/pull/2912) [#2928](https://github.com/BornToBeRoot/NETworkManager/pull/2928)
- - `WPA3 Personal (SAE)`, `WPA3 Enterprise` and `WPA3 Enterprise (192-bit)` are now supported. [#2912](https://github.com/BornToBeRoot/NETworkManager/pull/2912)
- - `802.11be` (`EHT`) is now supported. [#2912](https://github.com/BornToBeRoot/NETworkManager/pull/2912)
-
-- **Remote Desktop**
-
- - Scale rdp session and control to support high DPI (e.g. per Monitor DPI like 125%, 150%, etc.). [#2968](https://github.com/BornToBeRoot/NETworkManager/pull/2968)
- - Resizing now uses [`IMsRdpClient9::UpdateSessionDisplaySettings`]() instead of [`IMsRdpClient::Reconnect`](https://learn.microsoft.com/en-us/windows/win32/termserv/imsrdpclient8-reconnect) to support scaling and faster resizing (without the need of reconnecting). [#2968](https://github.com/BornToBeRoot/NETworkManager/pull/2968).
-
- :::warning
-
- The new features for high DPI, scaling and resizing may cause issues or doesn't work with legacy servers/clients. Please report any issues you find here: [#2911](https://github.com/BornToBeRoot/NETworkManager/issues/2911)
-
- :::
-
## Improvements
-- Improve ToolTips (e.g. migrate from Twitter to X, etc.), Buttons, etc. [#2955](https://github.com/BornToBeRoot/NETworkManager/pull/2955)
-- **WiFi**
- - Improve search, cleanup/remove some converters to make the code more readable and faster. [#2940](https://github.com/BornToBeRoot/NETworkManager/pull/2940)
-
## Bugfixes
-- Horizontal scrollbar fixed for some views. [#2945](https://github.com/BornToBeRoot/NETworkManager/pull/2945)
-- Fixed an issue with DPI scaling where the application was blurry if a second monitor had a different dpi setting than the main monitor. [#2941](https://github.com/BornToBeRoot/NETworkManager/pull/2941)
-- Changed the Welcome dialog from `MahApps.Metro.Controls.Dialogs` to `MahApps.Metro.SimpleChildWindow`, so the main window can be dragged and resized on the first start. [#2914](https://github.com/BornToBeRoot/NETworkManager/pull/2914)
-
-- **WiFi**
-
- - Fixed a bug that caused the scan process to crash when a 6 GHz network was found. [#2912](https://github.com/BornToBeRoot/NETworkManager/pull/2912)
-
-- **IP Scanner**
-
- - Fixed two `NullReferenceException` in ICMP & NETBIOS for some IP addresses. [#2964](https://github.com/BornToBeRoot/NETworkManager/pull/2964)
-
-- **Remote Desktop**
-
- - Fixed an app crash when a reconnect was triggered while it was already trying to connect. [#2988](https://github.com/BornToBeRoot/NETworkManager/pull/2988)
-
## Dependencies, Refactoring & Documentation
-- Migrated code for some loading indicators from the library [LoadingIndicators.WPF] (https://github.com/zeluisping/LoadingIndicators.WPF) to the NETworkManager repo, as the original repo looks unmaintained and has problems with MahApps.Metro version 2 and later. [#2963](https://github.com/BornToBeRoot/NETworkManager/pull/2963)
-- Code cleanup & refactoring [#2940](https://github.com/BornToBeRoot/NETworkManager/pull/2940) [#2976](https://github.com/BornToBeRoot/NETworkManager/pull/2976)
+- Code cleanup & refactoring
- Language files updated via [#transifex](https://github.com/BornToBeRoot/NETworkManager/pulls?q=author%3Aapp%2Ftransifex-integration)
- Dependencies updated via [#dependabot](https://github.com/BornToBeRoot/NETworkManager/pulls?q=author%3Aapp%2Fdependabot)
diff --git a/Website/src/pages/download.mdx b/Website/src/pages/download.mdx
index 7721ad73be..5efc18e56e 100644
--- a/Website/src/pages/download.mdx
+++ b/Website/src/pages/download.mdx
@@ -8,27 +8,27 @@ import styles from "./styles.module.css";
# Download
-Version: **2024.11.11.0**
-Release date: **11.11.2024**
+Version: **2025.1.18.0**
+Release date: **18.01.2025**
Download the latest binaries via GitHub Releases:
Setup
Portable
Archive
@@ -84,19 +84,19 @@ Download the latest binaries via GitHub Releases:
Setup (MSI-Installer)
@@ -129,7 +129,7 @@ Profiles and settings are stored in the user profile under `Documents\NETworkMan
## System requirements
-- Windows 10 / Server x64 (1809 or later)
+- Windows 10 / Server x64 (22H2 or later)
- [.NET Desktop Runtime 8.0 (LTS) - x64](https://dotnet.microsoft.com/en-us/download/dotnet/8.0/runtime)
## Silent install