
* Fixed a parsing case * Integrated Sentry into the solution with anonymous users. Fixed some parsing issues and added BuildInfo into a separate project. * Fixed some bad parser regex * Removed bad reference to NLog * Cleanup of some files not needed
27 lines
No EOL
668 B
C#
27 lines
No EOL
668 B
C#
namespace Kavita.Common.EnvironmentInfo
|
|
{
|
|
public class OsVersionModel
|
|
{
|
|
public OsVersionModel(string name, string version, string fullName = null)
|
|
{
|
|
Name = Trim(name);
|
|
Version = Trim(version);
|
|
|
|
if (string.IsNullOrWhiteSpace(fullName))
|
|
{
|
|
fullName = $"{Name} {Version}";
|
|
}
|
|
|
|
FullName = Trim(fullName);
|
|
}
|
|
|
|
private static string Trim(string source)
|
|
{
|
|
return source.Trim().Trim('"', '\'');
|
|
}
|
|
|
|
public string Name { get; }
|
|
public string FullName { get; }
|
|
public string Version { get; }
|
|
}
|
|
} |