photomator/Photomator/AppInfo.cs

19 lines
807 B
C#

public class AppInfo
{
public static readonly string ApplicationName = "Photomator";
public static readonly string IconName = "de.cantorgymnasium.Photomator";
public static readonly string Version = ThisAssembly.Git.Tag;
public static readonly string ReleaseNotes = @"
<p><em>0.0.1</em></p>
<p>Initial release</p>
<ul>
<li>single-file and folder conversions</li>
<li>resolution and format setting</li>
<li>Windows support</li>
</ul>
";
public static readonly string Copyright = "© 2024 Denys Konovalov";
public static readonly string DeveloperName = "Denys Konovalov";
public static readonly string Website = "https://git.cantorgymnasium.de/gcg/Photomator";
public static readonly string IssueUrl = "https://git.cantorgymnasium.de/gcg/Photomator/issues";
}