summaryrefslogtreecommitdiff
path: root/src/CueSheets/Banshee.CueSheets/Version/CS_Info.cs
blob: 723ad590384f7efcba0f8dc715d3bac4ba868ff2 (plain)
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
using System;

namespace Banshee.CueSheets
{
	public class CS_Info
	{
		public CS_Info ()
		{
		}
		
		public static string Version() {
			return "0.0.7";
		}
		
		public static string [] Authors() {
			return new string[] {"Hans Oesterholt"};		
		}
		
		public static string Website() {
			return "http://oesterholt.net?env=data&page=banshee-cuesheets";
		}
		
		public static string Info() {
			return "CueSheets is an extension that allows you to play music from cuesheets in banshee";
		}
	}
}