Skip to content

Commit

Permalink
Release 1.0.8 published!
Browse files Browse the repository at this point in the history
  • Loading branch information
TTLC198 committed Jan 26, 2023
1 parent 5691207 commit 374ed6f
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 9 deletions.
12 changes: 12 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
### v1.0.8 (26.01.2023)

- Added support for multiprocessor systems and systems with multiple graphics cards.
- Added the ability to change the brightness of the device screen from the program.
- The firmware of the microcontroller part has been updated. Please update before use!
- Fixed a bug related to restarting with administrator rights with the --minimize argument.
- Added auto-completion of equipment names and types when auto-detection is disabled.
- Fixed a bug with applying TX interval settings.
- Fixed bug when resetting settings.
- Fixed a bug related to inconsistent access to the serial port.
- Added limit on the number of characters in the name of the equipment.

### v1.0.7 (20.01.2023)

- Added enable admin run mode to enable faster startup after OS boot.
Expand Down
2 changes: 1 addition & 1 deletion HSMonitor/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
[assembly: AssemblyTrademark("")]

[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("1.0.7")]
[assembly: AssemblyVersion("1.0.8")]
20 changes: 12 additions & 8 deletions Installer/Release/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"SerialPort": "COM1",
"SerialPort": null,
"BaudRate": 115200,
"SendInterval": 1000,
"CpuCustomName": null,
"CpuCustomType": null,
"GpuCustomName": null,
"GpuCustomType": null,
"MemoryCustomType": null,
"IsAutoDetectHardwareEnabled": false,
"IsHiddenAutoStartEnabled": true
"DeviceDisplayBrightness" : 100,
"CpuId": "",
"GpuId": "",
"CpuCustomName": "",
"CpuCustomType": "",
"GpuCustomName": "",
"GpuCustomType": "",
"MemoryCustomType": "",
"IsAutoDetectHardwareEnabled": true,
"IsHiddenAutoStartEnabled": true,
"IsRunAsAdministrator": false
}

0 comments on commit 374ed6f

Please sign in to comment.