fix defaults
This commit is contained in:
parent
e260948233
commit
da4e10ee29
|
|
@ -19,7 +19,7 @@ public class FileFormat
|
|||
Fix2007 = false;
|
||||
AlreadyHasSecurity = false;
|
||||
ClientLoadOptions = Settings.ClientLoadOptions.Client_2008AndUp;
|
||||
CommandLineArgs = "";
|
||||
CommandLineArgs = "%args%";
|
||||
}
|
||||
|
||||
public bool UsesPlayerName { get; set; }
|
||||
|
|
|
|||
|
|
@ -1087,8 +1087,8 @@ partial class ClientinfoEditor
|
|||
this.MainMenuStrip = this.menuStrip1;
|
||||
this.MinimumSize = new System.Drawing.Size(648, 390);
|
||||
this.Name = "ClientinfoEditor";
|
||||
this.Text = "Novetus Client SDK";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "Novetus Client SDK";
|
||||
this.Load += new System.EventHandler(this.ClientinfoCreatorLoad);
|
||||
this.menuStrip1.ResumeLayout(false);
|
||||
this.menuStrip1.PerformLayout();
|
||||
|
|
|
|||
|
|
@ -424,17 +424,7 @@ public partial class ClientinfoEditor : Form
|
|||
void NewClientInfo()
|
||||
{
|
||||
label9.Text = "Not Loaded";
|
||||
SelectedClientInfo.UsesPlayerName = false;
|
||||
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 = "";
|
||||
SelectedClientInfo = new FileFormat.ClientInfo();
|
||||
Locked = false;
|
||||
SelectedClientInfoPath = "";
|
||||
checkBox1.Checked = SelectedClientInfo.UsesPlayerName;
|
||||
|
|
|
|||
|
|
@ -2,6 +2,12 @@
|
|||
Changes from 1.3 Pre-Release 4:
|
||||
- Improved logging even further.
|
||||
- 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)
|
||||
Changes from 1.2.4.1:
|
||||
- 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
|
||||
Orinthian Lady
|
||||
Erik Cassel's Hat
|
||||
Brown Cowboy Hat
|
||||
Faces:
|
||||
Remastered Face
|
||||
Pumpkin Face (2009)
|
||||
|
|
|
|||
Loading…
Reference in New Issue