Subversion Repositories spk

Rev

Rev 1 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 191
Line 9... Line 9...
9
	{
9
	{
10
		return GetVersionString((float)PACKAGERVERSION, (int)PACKAGERBETA);
10
		return GetVersionString((float)PACKAGERVERSION, (int)PACKAGERBETA);
11
	}
11
	}
12
	System::String ^GetVersionString(float version, int beta)
12
	System::String ^GetVersionString(float version, int beta)
13
	{
13
	{
14
		System::String ^str = "V" + SystemStringFromCyString(CyString::CreateFromFloat(version, 2));
14
		System::String ^str = "V" + _US(Utils::WString::FromFloat(version, 2));
15
		// beta version
15
		// beta version
16
		if ( beta > 0 )
16
		if ( beta > 0 )
17
			str += " (Beta " + beta + ")";
17
			str += " (Beta " + beta + ")";
18
		// RC release
18
		// RC release
19
		else if ( beta < 0 )
19
		else if ( beta < 0 )