photomator/Photomator/AppInfo.cs

20 lines
814 B
C#
Raw Permalink Normal View History

2024-09-14 17:49:20 +02:00
namespace Photomator;
public static 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>v0.0.1</em></p>
2024-09-08 22:37:06 +02:00
<p>Initial release</p>
<ul>
<li>single-file and folder conversions</li>
<li>resolution and format setting</li>
<li>Windows support</li>
</ul>
";
2024-09-14 17:49:20 +02:00
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";
2024-09-08 22:37:06 +02:00
}