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 (15 loc) · 878 Bytes
/
Copy pathDistroConfig.cs
File metadata and controls
17 lines (15 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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_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-2016";
public const String DISTRIBUTION_COMPANY = "FlashDevelop.org";
public const String DISTRIBUTION_RSS = "http://www.flashdevelop.org/community/rss.php?f=15";
}
}