Skip to content

Commit

Permalink
2.1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robbyxp1 committed Apr 28, 2022
1 parent 0a29b44 commit 17f97f0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions EDDLite/EDDLiteForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ public EDDLiteForm()

MaterialCommodityMicroResourceType.FillTable(); // lets statically fill the table way before anyone wants to access it

// we need to add this in, even though we do not translate, so the forms using translation won't barfe.

BaseUtils.Translator.Instance.AddExcludedControls(new Type[]
{ typeof(ExtendedControls.ExtComboBox), typeof(ExtendedControls.NumberBoxDouble),typeof(ExtendedControls.NumberBoxFloat),typeof(ExtendedControls.NumberBoxLong),
typeof(ExtendedControls.ExtScrollBar),typeof(ExtendedControls.ExtStatusStrip),typeof(ExtendedControls.ExtRichTextBox),typeof(ExtendedControls.ExtTextBox),
typeof(ExtendedControls.ExtTextBoxAutoComplete),typeof(ExtendedControls.ExtDateTimePicker),typeof(ExtendedControls.ExtNumericUpDown) });

string logpath = EDDOptions.Instance.LogAppDirectory();

BaseUtils.LogClean.DeleteOldLogFiles(logpath, "*.hlog", 2, 256); // Remove hlogs faster
Expand Down
2 changes: 1 addition & 1 deletion EDDLite/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyVersion("2.1.0.0")]

0 comments on commit 17f97f0

Please sign in to comment.