Rebased the entire system to have a built-in downloader. Also probably fixed some bugs?

This commit is contained in:
IveBeenAlone
2026-01-18 20:03:35 -05:00
parent 80c2985921
commit 25fbe2f22b
4 changed files with 354 additions and 13 deletions

92
Form1.Designer.cs generated
View File

@@ -39,6 +39,13 @@
this.checkUUID = new System.Windows.Forms.CheckBox();
this.btnPlay = new System.Windows.Forms.Button();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.btnInstallVersion = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.installProgressBar1 = new System.Windows.Forms.ProgressBar();
this.label2 = new System.Windows.Forms.Label();
this.comboBox2Play = new System.Windows.Forms.ComboBox();
this.btnUninstallVersion = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// textBoxUsername
@@ -111,7 +118,7 @@
//
// btnPlay
//
this.btnPlay.Location = new System.Drawing.Point(285, 26);
this.btnPlay.Location = new System.Drawing.Point(550, 26);
this.btnPlay.Name = "btnPlay";
this.btnPlay.Size = new System.Drawing.Size(104, 104);
this.btnPlay.TabIndex = 9;
@@ -127,11 +134,83 @@
this.toolTip1.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTip1.ToolTipTitle = "UUID";
//
// comboBox1
//
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Location = new System.Drawing.Point(270, 25);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(200, 21);
this.comboBox1.TabIndex = 10;
this.comboBox1.Text = "Select A Version";
this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
//
// btnInstallVersion
//
this.btnInstallVersion.Location = new System.Drawing.Point(408, 52);
this.btnInstallVersion.Name = "btnInstallVersion";
this.btnInstallVersion.Size = new System.Drawing.Size(62, 20);
this.btnInstallVersion.TabIndex = 11;
this.btnInstallVersion.Text = "Install";
this.btnInstallVersion.UseVisualStyleBackColor = true;
this.btnInstallVersion.Click += new System.EventHandler(this.btnInstallVersion_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(270, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(271, 13);
this.label1.TabIndex = 12;
this.label1.Text = "Game Updater (May freeze launcher while downloading)";
//
// installProgressBar1
//
this.installProgressBar1.Location = new System.Drawing.Point(270, 52);
this.installProgressBar1.Name = "installProgressBar1";
this.installProgressBar1.Size = new System.Drawing.Size(132, 20);
this.installProgressBar1.TabIndex = 13;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(273, 94);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(73, 13);
this.label2.TabIndex = 16;
this.label2.Text = "Game Version";
//
// comboBox2Play
//
this.comboBox2Play.FormattingEnabled = true;
this.comboBox2Play.Location = new System.Drawing.Point(273, 109);
this.comboBox2Play.Name = "comboBox2Play";
this.comboBox2Play.Size = new System.Drawing.Size(200, 21);
this.comboBox2Play.TabIndex = 14;
this.comboBox2Play.Text = "Select A Version";
this.comboBox2Play.SelectedIndexChanged += new System.EventHandler(this.comboBox2Play_SelectedIndexChanged);
//
// btnUninstallVersion
//
this.btnUninstallVersion.Location = new System.Drawing.Point(408, 136);
this.btnUninstallVersion.Name = "btnUninstallVersion";
this.btnUninstallVersion.Size = new System.Drawing.Size(62, 20);
this.btnUninstallVersion.TabIndex = 17;
this.btnUninstallVersion.Text = "Uninstall";
this.btnUninstallVersion.UseVisualStyleBackColor = true;
this.btnUninstallVersion.Click += new System.EventHandler(this.btnUninstallVersion_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(404, 161);
this.ClientSize = new System.Drawing.Size(684, 161);
this.Controls.Add(this.btnUninstallVersion);
this.Controls.Add(this.label2);
this.Controls.Add(this.comboBox2Play);
this.Controls.Add(this.installProgressBar1);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnInstallVersion);
this.Controls.Add(this.comboBox1);
this.Controls.Add(this.btnPlay);
this.Controls.Add(this.checkUUID);
this.Controls.Add(this.checkUsername);
@@ -140,7 +219,9 @@
this.Controls.Add(this.textBoxUUID);
this.Controls.Add(this.labelUsername);
this.Controls.Add(this.textBoxUsername);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "IveBeenAlone\'s Hytale Launcher";
this.ResumeLayout(false);
@@ -158,6 +239,13 @@
private System.Windows.Forms.CheckBox checkUUID;
private System.Windows.Forms.Button btnPlay;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.Button btnInstallVersion;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ProgressBar installProgressBar1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox comboBox2Play;
private System.Windows.Forms.Button btnUninstallVersion;
}
}