37 lines
750 B
C#
37 lines
750 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TJAPlayer3
|
|
{
|
|
class CVersionList
|
|
{
|
|
public static string[] VersionList = {
|
|
"0.1.0",
|
|
"0.2.0",
|
|
"0.3.0",
|
|
"0.3.1",
|
|
"0.3.2",
|
|
"0.3.3",
|
|
"0.3.4",
|
|
"0.3.4.1",
|
|
"0.3.4.2",
|
|
"0.4.0",
|
|
"0.4.1",
|
|
"0.4.2",
|
|
"0.4.3",
|
|
"0.5.0",
|
|
"0.5.1",
|
|
"0.5.2",
|
|
"0.5.2.1",
|
|
"Pre 0.5.3",
|
|
"0.5.3",
|
|
"0.5.3.1",
|
|
"0.5.3.2",
|
|
"0.5.4",
|
|
};
|
|
}
|
|
}
|