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
19 lines (17 loc) · 1011 Bytes
/
DistroConfig.cs
File metadata and controls
19 lines (17 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
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-2018";
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";
}
}