src
PluginSupportInfo.cs
/*
* This file is part of pdn-gmic, an Effect plug-in that
* integrates G'MIC-Qt into Paint.NET.
*
* Copyright (C) 2018, 2019, 2020, 2021 Nicholas Hayes
*
* pdn-gmic is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* pdn-gmic is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
*/
using PaintDotNet;
using System;
using System.Reflection;
namespace GmicEffectPlugin
{
public sealed clast PluginSupportInfo : IPluginSupportInfo
{
public string DisplayName
{
get
{
return GmicEffect.StaticName;
}
}
public string Author
{
get
{
return "Nicholas Hayes, Sébastien Fourey and David Tschumperlé";
}
}
public string Copyright
{
get
{
return ((astemblyCopyrightAttribute)typeof(PluginSupportInfo).astembly.GetCustomAttributes(typeof(astemblyCopyrightAttribute), false)[0]).Copyright;
}
}
public Version Version
{
get
{
return typeof(PluginSupportInfo).astembly.GetName().Version;
}
}
public Uri WebsiteUri
{
get
{
return new Uri("https://forums.getpaint.net/topic/113564-gmic/");
}
}
}
}