fix defaults
This commit is contained in:
parent
e260948233
commit
da4e10ee29
|
|
@ -19,7 +19,7 @@ public class FileFormat
|
||||||
Fix2007 = false;
|
Fix2007 = false;
|
||||||
AlreadyHasSecurity = false;
|
AlreadyHasSecurity = false;
|
||||||
ClientLoadOptions = Settings.ClientLoadOptions.Client_2008AndUp;
|
ClientLoadOptions = Settings.ClientLoadOptions.Client_2008AndUp;
|
||||||
CommandLineArgs = "";
|
CommandLineArgs = "%args%";
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool UsesPlayerName { get; set; }
|
public bool UsesPlayerName { get; set; }
|
||||||
|
|
|
||||||
|
|
@ -1087,8 +1087,8 @@ partial class ClientinfoEditor
|
||||||
this.MainMenuStrip = this.menuStrip1;
|
this.MainMenuStrip = this.menuStrip1;
|
||||||
this.MinimumSize = new System.Drawing.Size(648, 390);
|
this.MinimumSize = new System.Drawing.Size(648, 390);
|
||||||
this.Name = "ClientinfoEditor";
|
this.Name = "ClientinfoEditor";
|
||||||
this.Text = "Novetus Client SDK";
|
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||||
|
this.Text = "Novetus Client SDK";
|
||||||
this.Load += new System.EventHandler(this.ClientinfoCreatorLoad);
|
this.Load += new System.EventHandler(this.ClientinfoCreatorLoad);
|
||||||
this.menuStrip1.ResumeLayout(false);
|
this.menuStrip1.ResumeLayout(false);
|
||||||
this.menuStrip1.PerformLayout();
|
this.menuStrip1.PerformLayout();
|
||||||
|
|
|
||||||
|
|
@ -424,17 +424,7 @@ public partial class ClientinfoEditor : Form
|
||||||
void NewClientInfo()
|
void NewClientInfo()
|
||||||
{
|
{
|
||||||
label9.Text = "Not Loaded";
|
label9.Text = "Not Loaded";
|
||||||
SelectedClientInfo.UsesPlayerName = false;
|
SelectedClientInfo = new FileFormat.ClientInfo();
|
||||||
SelectedClientInfo.UsesID = false;
|
|
||||||
SelectedClientInfo.Warning = "";
|
|
||||||
SelectedClientInfo.LegacyMode = false;
|
|
||||||
SelectedClientInfo.Fix2007 = false;
|
|
||||||
SelectedClientInfo.AlreadyHasSecurity = false;
|
|
||||||
SelectedClientInfo.ClientLoadOptions = Settings.ClientLoadOptions.Client_2008AndUp;
|
|
||||||
SelectedClientInfo.Description = "";
|
|
||||||
SelectedClientInfo.ClientMD5 = "";
|
|
||||||
SelectedClientInfo.ScriptMD5 = "";
|
|
||||||
SelectedClientInfo.CommandLineArgs = "";
|
|
||||||
Locked = false;
|
Locked = false;
|
||||||
SelectedClientInfoPath = "";
|
SelectedClientInfoPath = "";
|
||||||
checkBox1.Checked = SelectedClientInfo.UsesPlayerName;
|
checkBox1.Checked = SelectedClientInfo.UsesPlayerName;
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,12 @@
|
||||||
Changes from 1.3 Pre-Release 4:
|
Changes from 1.3 Pre-Release 4:
|
||||||
- Improved logging even further.
|
- Improved logging even further.
|
||||||
- Fixed issues with moving files.
|
- Fixed issues with moving files.
|
||||||
|
- Fixed up downloading.
|
||||||
|
- Fixed the files of the White Cowboy Hat not being available.
|
||||||
|
- Added the ability to change hat and head vertex colors in the Item Creation SDK.
|
||||||
|
- Redesigned the Item Creation SDK.
|
||||||
|
- Fixed a bug where the client SDK won't go to default settings.
|
||||||
|
- Added "%args%" as the default clientscript example.
|
||||||
- Added more items (details in full changelog)
|
- Added more items (details in full changelog)
|
||||||
Changes from 1.2.4.1:
|
Changes from 1.2.4.1:
|
||||||
- The OBJ2MeshV1GUI, The Asset Localizer, and the Item SDK have been merged to form the Asset SDK!
|
- The OBJ2MeshV1GUI, The Asset Localizer, and the Item SDK have been merged to form the Asset SDK!
|
||||||
|
|
@ -255,6 +261,7 @@ Cinnamon Hair
|
||||||
Sassy Headband
|
Sassy Headband
|
||||||
Orinthian Lady
|
Orinthian Lady
|
||||||
Erik Cassel's Hat
|
Erik Cassel's Hat
|
||||||
|
Brown Cowboy Hat
|
||||||
Faces:
|
Faces:
|
||||||
Remastered Face
|
Remastered Face
|
||||||
Pumpkin Face (2009)
|
Pumpkin Face (2009)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue