Skip to content

Commit

Permalink
Version 3.0.4 Build 5422
Browse files Browse the repository at this point in the history
- Add support for Win10 new versioning.
  • Loading branch information
dtechsrv committed Aug 14, 2024
1 parent 3a7c214 commit ccff920
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
A simple system information and real-time network monitoring utility.\
This utility reads all system information directly from WMI database.

## Current stable version: 3.0.3 Build 5421 (2021-05-20)
## Current stable version: 3.0.4 Build 5422 (2024-08-14)

![](Screenshots/SINMx86_LoadSplash.png)

Expand All @@ -23,6 +23,10 @@ __Requirements:__ Microsoft .NET Framework 3.5 (Minimum required: 2.0 SP2).

## Changelog since version 2.1.0 (Hungarian only)

__2024-08-14 - Version 3.0.4 / Build 5422 (stable)__

- Win10 új verziószámozás támogatásának hozzáadása, a 20H2-es verziótól kezdve.

__2021-05-20 - Version 3.0.3 / Build 5421 (stable)__

- Intel SATA SSD-k detektálása javítva.
Expand Down
8 changes: 6 additions & 2 deletions SINMx86/MainWindow.vb
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,7 @@ Public Class MainWindow
Dim OSRelease As String = Nothing ' Kiadás típusa
Dim DeleteCount As Int32 ' Törlendő sztring sorszáma
Dim OSBuild As String = Nothing ' OS Build (Win10+)
Dim OSSeason As String = Nothing ' OS Season Build verziószám (Win10 20H2 óta)

' OS infó registry elérési útja (Csak olvasásra!)
Dim OSInfoPath As RegistryKey = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", False)
Expand Down Expand Up @@ -510,10 +511,13 @@ Public Class MainWindow
If OSVersion(0) >= 10 Then

' Registry érték lekérdezése
OSSeason = OSInfoPath.GetValue("DisplayVersion")
OSBuild = OSInfoPath.GetValue("ReleaseId")

' OS nevének bővítése a frissítési verzióval, ha nem üres!
If OSBuild <> Nothing Then
' OS nevének bővítése a frissítési verzióval vagy a build számmal, ha nem üres!
If OSSeason <> Nothing Then
OSName += ", " + GetLoc("Version") + " " + OSSeason
ElseIf OSBuild <> Nothing Then
OSName += ", " + GetLoc("Version") + " " + OSBuild
End If

Expand Down
6 changes: 3 additions & 3 deletions SINMx86/My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Imports System.Runtime.InteropServices
<Assembly: AssemblyDescription("https://github.com/dtechsrv/SINMx86")>
<Assembly: AssemblyCompany("dtech(.hu)")>
<Assembly: AssemblyProduct("System Information and Network Monitor")>
<Assembly: AssemblyCopyright("Copyright (C) 2021 dtech(.hu)")>
<Assembly: AssemblyCopyright("Copyright (C) 2024 dtech(.hu)")>
<Assembly: AssemblyTrademark("This software is open source and portable.")>

<Assembly: ComVisible(True)>
Expand All @@ -33,7 +33,7 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("3.0.3.5421")>
<Assembly: AssemblyFileVersion("3.0.3.5421")>
<Assembly: AssemblyVersion("3.0.4.5422")>
<Assembly: AssemblyFileVersion("3.0.4.5422")>

<Assembly: NeutralResourcesLanguageAttribute("hu-HU")>
Binary file modified Screenshots/SINMx86_LoadSplash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ccff920

Please sign in to comment.