Skip to content

Commit

Permalink
Merge pull request #108 from arthurits/Version-16
Browse files Browse the repository at this point in the history
Version 1.6
  • Loading branch information
arthurits authored Dec 28, 2024
2 parents d95863c + 59cf373 commit 82270bf
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 19 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# SignalAnalysis changelog

## SignalAnalysis 1.6
* Target .NET 9.0.
* Update [FftSharp](https://github.com/swharden/FftSharp) api to version 2.2.0.
* Update Norwegian (Bokmål) (nb-NO) translation. _Thanks @bjartelund_.
* Update Russian translation. _Thanks @ shmudivel_.
* [ScottPlot](https://github.com/ScottPlot/ScottPlot) control has been updated to version 4.1.68.
* [ScottPlot](https://github.com/ScottPlot/ScottPlot) control has been updated to version 4.1.74.
* Add paralellization for entropy and fractal dimension.
* Add ratio Shannon/Ideal entropy.
* Add ApEn and SampEn algorithm choice.
* Add Bluestein option to compute FFT for arrays of any length.
* Correct not-casted-to-double division bug in fractal dimension.
* Update text and bin file formats.

Expand Down
10 changes: 2 additions & 8 deletions SignalAnalysis.UnitTest/SignalAnalysis.UnitTest.csproj
Original file line number Diff line number Diff line change
@@ -1,27 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net9.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\SignalAnalysis\SignalAnalysis.csproj" />
</ItemGroup>

<ItemGroup>
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
</ItemGroup>

</Project>
</Project>
14 changes: 4 additions & 10 deletions SignalAnalysis/SignalAnalysis.csproj
Original file line number Diff line number Diff line change
@@ -1,42 +1,37 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net9.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>images\logo.ico</ApplicationIcon>
<Version>$(VersionPrefix)1.5</Version>
<Version>$(VersionPrefix)1.6</Version>
<Authors>Arthurits</Authors>
<Company>Arthurits Ltd.</Company>
<Copyright>© 2021-2024</Copyright>
<Copyright>© 2021-2025</Copyright>
<Description>Analysis tool featuring basic descriptive statistics, FFT (fast Fourier transform), fractal dimension, differentiation, integration, and entropy for signals (elux files as well as generic ones).

No commercial use allowed whatsoever. Contact the author for any inquires.

If you find this software useful, please consider supporting it!</Description>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ScottPlot.WinForms" Version="4.1.73" />
<PackageReference Include="ScottPlot.WinForms" Version="4.1.74" />
</ItemGroup>

<ItemGroup>
<Compile Update="localization\strings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>strings.resx</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="localization\strings.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>strings.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>

<ItemGroup>
<None Update="examples\ApEn test - 11 pt.sig">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
Expand Down Expand Up @@ -120,5 +115,4 @@ If you find this software useful, please consider supporting it!</Description>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>
Binary file modified SignalAnalysis/images/splash.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 82270bf

Please sign in to comment.