mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-09 01:52:32 +02:00
c94b5fb7f1
- **Windows MSI:** - (Fix) Use the folder programs x64 instead of x86 for new installation path (#254) - (Improvement) Mark program and all files as x64 - (Improvement) Add UVtools logo to side panel and top banner - (Improvement) Add open-source logo to side panel - (Improvement) License text aligment and bold title - (Add) File format: OSLA / ODLP / OMSLA - Universal binary file format - (Add) Calibration - Lift height: Generates test models with various strategies and increments to measure the optimal lift height or peel forces for layers given the printed area - (Add) Layer Actions - Export layers to images (PNG, JPG/JPEG, JP2, TIF/TIFF, BMP, PBM, PGM, SR/RAS and SVG) - (Add) About box: License with link - (Add) Include a copy of the LICENSE on the packages - (Improvement) File formats: Implement `Wait time before cure` properties on file formats with light-off delay, when used it will calculate the right light-off delay with that extra time and set to `LightOffDelay` property - (Improvement) Change all date times to Utc instead of local - (Fix) Tool - Flip: 'Both' were not working correctly - (Fix) Linux: File 'UVtools.sh' with incorrect line break type, changed to \n (#258)
33 lines
1.4 KiB
C#
33 lines
1.4 KiB
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 const string Software = "UVtools";
|
|
public static string SoftwareWithVersion => $"{Software} v{VersionStr}";
|
|
public const string Author = "Tiago Conceição";
|
|
public const string Company = "PTRTECH";
|
|
public const string License = "GNU Affero General Public License v3.0 (AGPL)";
|
|
public const string LicenseUrl = "https://github.com/sn4k3/UVtools/blob/master/LICENSE";
|
|
public const string Website = "https://github.com/sn4k3/UVtools";
|
|
public const string Donate = "https://paypal.me/SkillTournament";
|
|
public const string Sponsor = "https://github.com/sponsors/sn4k3";
|
|
|
|
public const string DemoFile = "UVtools_demo_file.sl1";
|
|
|
|
public static Version Version => Assembly.GetExecutingAssembly().GetName().Version;
|
|
public static string VersionStr => Assembly.GetExecutingAssembly().GetName().Version.ToString(3);
|
|
public static string Arch => Environment.Is64BitOperatingSystem ? "64-bits" : "32-bits";
|
|
}
|
|
}
|