Merge pull request #340 from HojouFotytu/develop

2.8.2
This commit is contained in:
HojouFotytu 2024-02-05 02:46:50 +09:00 committed by GitHub
commit c0347c31fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 17 additions and 10 deletions

View File

@ -125,21 +125,26 @@ namespace Core.Main
_state = value; _state = value;
} }
} }
public void WriteStateToFile() public void WriteStateToFile()
{
try
{ {
try
{
mutex.WaitOne(); // Acquire the mutex mutex.WaitOne(); // Acquire the mutex
string filePath = "_data/AnalyzerState."; string dirPath = "_data";
string filePath = Path.Combine(dirPath, "AnalyzerState.");
// Ensure the directory exists
Directory.CreateDirectory(dirPath);
File.WriteAllText(filePath, this.State.ToString()); File.WriteAllText(filePath, this.State.ToString());
}
finally
{
mutex.ReleaseMutex(); // Release the mutex even if exceptions occur
}
} }
finally
{
mutex.ReleaseMutex(); // Release the mutex even if exceptions occur
}
}
public int RunCount public int RunCount

View File

@ -349,6 +349,7 @@
<script type="text/javascript"> <script type="text/javascript">
(function ($) { (function ($) {
'use strict'; 'use strict';
// $('head').append('<style>.nv-point { stroke-width: 1px; }</style>');
$('[role="tooltip"]').remove(); $('[role="tooltip"]').remove();
$('[data-toggle="tooltip"]').tooltip(); $('[data-toggle="tooltip"]').tooltip();
$('.text-autocolor').autocolor(false); $('.text-autocolor').autocolor(false);
@ -362,6 +363,7 @@
trendChart = nv.models.lineChart(); trendChart = nv.models.lineChart();
var height = 300; var height = 300;
trendChart.useInteractiveGuideline(true); trendChart.useInteractiveGuideline(true);
trendChart.pointSize(0.25); // Set the point size to a smaller value
trendChart.xAxis.tickFormat(function (d) { return d3.time.format('%H:%M')(new Date(d)); }); trendChart.xAxis.tickFormat(function (d) { return d3.time.format('%H:%M')(new Date(d)); });
trendChart.yAxis.axisLabel('Trend %').tickFormat(d3.format(',.2f')); trendChart.yAxis.axisLabel('Trend %').tickFormat(d3.format(',.2f'));

View File

@ -6,7 +6,7 @@ using Core.Helper;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
[assembly: AssemblyVersion("2.8.1")] [assembly: AssemblyVersion("2.8.2")]
[assembly: AssemblyProduct("PT Magic")] [assembly: AssemblyProduct("PT Magic")]
namespace PTMagic namespace PTMagic