Files
UVtools/UVtools.Core/About.cs
T
Tiago Conceição ac51b7c4e0 v2.14.0
- **File Formats:**
   - (Add) SL1S: Prusa SL1S Speed
   - (Add) CTB v4 support (318570758)
   - (Improvement) PHOTON, CBDDLP, CTB v2, PHZ: Disallow per layer settings, beside the format support, printers never use it
   - (Improvement) Longer Orange format with new found keys
   - (Improvement) CXDLP: Fix the resolution from CL-60 and trigger an error when a invalid resolution was set and unable to detect the printer model
- **Prusa Slicer:**
   - (Add) UVtools Prusa SL1S SPEED
   - (Add) Longer Orange 120
   - (Fix) Creality HALOT-ONE CL-60: Flip resolution & display and remove mirror
   - (Fix) Creality HALOT-SKY CL-89: Remove mirror
   - (Improvement) Longer Orange printers with better default settings
- (Add) Button on `Help - Sponsor`: Open github sponsor webpage
2021-07-03 01:16:17 +01:00

28 lines
1005 B
C#

/*
* GNU AFFERO GENERAL PUBLIC LICENSE
* Version 3, 19 November 2007
* Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
* Everyone is permitted to copy and distribute verbatim copies
* of this license document, but changing it is not allowed.
*/
using System;
using System.Reflection;
namespace UVtools.Core
{
public static class About
{
public static string Software = "UVtools";
public static string Author = "Tiago Conceição";
public static string Company = "PTRTECH";
public static string Website = "https://github.com/sn4k3/UVtools";
public static string Donate = "https://paypal.me/SkillTournament";
public static string DemoFile = "UVtools_demo_file.sl1";
public static Version Version => Assembly.GetExecutingAssembly().GetName().Version;
public static string VersionStr => Assembly.GetExecutingAssembly().GetName().Version.ToString(3);
}
}