forked from fdorg/flashdevelop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDistroConfig.cs
More file actions
17 lines (16 loc) · 996 Bytes
/
Copy pathDistroConfig.cs
File metadata and controls
17 lines (16 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace PluginCore
{
public class DistroConfig
{
public const string DISTRIBUTION_NAME = "FlashDevelop";
public const string DISTRIBUTION_DESC = "FlashDevelop is an open source script editor.";
public const string DISTRIBUTION_HOME = "http://www.flashdevelop.org/";
public const string DISTRIBUTION_HELP = "http://www.flashdevelop.org/wikidocs/";
public const string DISTRIBUTION_VERSION = "http://www.flashdevelop.org/latest.txt";
public const string DISTRIBUTION_ABOUT = "FlashDevelop logo, domain and the name are copyright of Mika Palmu.\r\nDevelopment: Mika Palmu, Philippe Elsass and all helpful contributors.";
public const string DISTRIBUTION_COPYRIGHT = "FlashDevelop.org 2005-2020";
public const string DISTRIBUTION_COMPANY = "FlashDevelop.org";
public const string DISTRIBUTION_RSS = "http://www.flashdevelop.org/community/rss.php?f=15";
public const string DISTRIBUTION_EXT = "as";
}
}