20 lines
813 B
C#
20 lines
813 B
C#
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>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";
|
|
} |