mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Remove Java dependency for Encryption Key Request
Encryption Key Request is now fully processed using .NET RSA capabilities -> Good news, that was the last step for removing IKVM dependencies! -> So now MCC does not need to use any external library. Yay! :) -> MCC should now be compatible with Mono (Mac, Linux). + Removed no longed needed DLL files (9 MBytes!) + State MC 1.7.5 as a supported version. + Update version number to MCC 1.7.2
This commit is contained in:
parent
01ba55527d
commit
58d7b0734f
8 changed files with 140 additions and 94 deletions
|
|
@ -15,7 +15,7 @@ namespace MinecraftClient
|
|||
{
|
||||
private static McTcpClient Client;
|
||||
public static string[] startupargs;
|
||||
public const string Version = "1.7.1";
|
||||
public const string Version = "1.7.2";
|
||||
|
||||
/// <summary>
|
||||
/// The main entry point of Minecraft Console Client
|
||||
|
|
@ -23,7 +23,7 @@ namespace MinecraftClient
|
|||
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Console Client for MC 1.7.2 to 1.7.4 - v" + Version + " - By ORelio & Contributors");
|
||||
Console.WriteLine("Console Client for MC 1.7.2 to 1.7.5 - v" + Version + " - By ORelio & Contributors");
|
||||
|
||||
//Basic Input/Output ?
|
||||
if (args.Length >= 1 && args[args.Length - 1] == "BasicIO")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue