commit
c0347c31fb
|
@ -126,12 +126,17 @@ namespace Core.Main
|
|||
}
|
||||
}
|
||||
public void WriteStateToFile()
|
||||
{
|
||||
{
|
||||
try
|
||||
{
|
||||
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());
|
||||
|
||||
}
|
||||
|
@ -139,7 +144,7 @@ namespace Core.Main
|
|||
{
|
||||
mutex.ReleaseMutex(); // Release the mutex even if exceptions occur
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public int RunCount
|
||||
|
|
|
@ -349,6 +349,7 @@
|
|||
<script type="text/javascript">
|
||||
(function ($) {
|
||||
'use strict';
|
||||
// $('head').append('<style>.nv-point { stroke-width: 1px; }</style>');
|
||||
$('[role="tooltip"]').remove();
|
||||
$('[data-toggle="tooltip"]').tooltip();
|
||||
$('.text-autocolor').autocolor(false);
|
||||
|
@ -362,6 +363,7 @@
|
|||
trendChart = nv.models.lineChart();
|
||||
var height = 300;
|
||||
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.yAxis.axisLabel('Trend %').tickFormat(d3.format(',.2f'));
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ using Core.Helper;
|
|||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
|
||||
[assembly: AssemblyVersion("2.8.1")]
|
||||
[assembly: AssemblyVersion("2.8.2")]
|
||||
[assembly: AssemblyProduct("PT Magic")]
|
||||
|
||||
namespace PTMagic
|
||||
|
|
Loading…
Reference in New Issue