forked from 0xC0000054/pdn-webp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPluginSupportInfo.cs
61 lines (55 loc) · 1.5 KB
/
PluginSupportInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
////////////////////////////////////////////////////////////////////////
//
// This file is part of pdn-webp, a FileType plugin for Paint.NET
// that loads and saves WebP images.
//
// Copyright (c) 2011-2019 Nicholas Hayes
//
// This file is licensed under the MIT License.
// See LICENSE.txt for complete licensing and attribution information.
//
////////////////////////////////////////////////////////////////////////
using System;
using PaintDotNet;
using System.Reflection;
namespace WebPFileType
{
public sealed class PluginSupportInfo : IPluginSupportInfo
{
public string Author
{
get
{
return "null54";
}
}
public string Copyright
{
get
{
return ((AssemblyCopyrightAttribute)(typeof(PluginSupportInfo).Assembly.GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false)[0])).Copyright;
}
}
public string DisplayName
{
get
{
return "WebP FileType";
}
}
public Version Version
{
get
{
return typeof(PluginSupportInfo).Assembly.GetName().Version;
}
}
public Uri WebsiteUri
{
get
{
return new Uri("https://forums.getpaint.net/topic/21773-webp-filetype/");
}
}
}
}