Skip to content

Commit

Permalink
Release 2.3.0 sync with EDD 15.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
robbyxp1 committed Aug 22, 2022
1 parent e12399e commit 753336f
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 9 deletions.
2 changes: 1 addition & 1 deletion BaseUtilities
Submodule BaseUtilities updated 41 files
+8 −0 BaseUtilities/BaseUtils.csproj
+46 −1 BaseUtilities/Collections/CollectionStaticHelpers.cs
+22 −0 BaseUtilities/Collections/GenerationalDictionary.cs
+81 −25 BaseUtilities/Conditions/Condition.cs
+31 −60 BaseUtilities/Conditions/ConditionEntry.cs
+36 −490 BaseUtilities/Conditions/ConditionLists.cs
+468 −0 BaseUtilities/Conditions/ConditionListsCheck.cs
+535 −0 BaseUtilities/Conditions/ConditionListsCheckEval.cs
+12 −0 BaseUtilities/Files/FileHelpers.cs
+131 −130 BaseUtilities/Keys/EnhancedSendKeys.cs
+6 −6 BaseUtilities/Keys/KeyObjectExtensions.cs
+30 −2 BaseUtilities/Numbers/BaseFunctions.cs
+115 −27 BaseUtilities/Numbers/Eval.cs
+9 −2 BaseUtilities/Numbers/IEval.cs
+18 −0 BaseUtilities/Numbers/NumberObjectExtensions.cs
+18 −4 BaseUtilities/StringParsers/StringParser.cs
+1 −516 BaseUtilities/Strings/StringObjectExtensions.cs
+10 −0 BaseUtilities/Strings/StringObjectExtensionsArray.cs
+119 −0 BaseUtilities/Strings/StringObjectExtensionsClassification.cs
+41 −0 BaseUtilities/Strings/StringObjectExtensionsCompare.cs
+52 −0 BaseUtilities/Strings/StringObjectExtensionsEscape.cs
+28 −1 BaseUtilities/Strings/StringObjectExtensionsLines.cs
+10 −0 BaseUtilities/Strings/StringObjectExtensionsNumbers.cs
+119 −0 BaseUtilities/Strings/StringObjectExtensionsReplacing.cs
+159 −0 BaseUtilities/Strings/StringObjectExtensionsSearching.cs
+170 −0 BaseUtilities/Strings/StringObjectExtensionsSlicing.cs
+63 −0 BaseUtilities/Strings/StringObjectExtensionsWords.cs
+15 −3 BaseUtilities/Translator/Translator.cs
+75 −0 BaseUtilities/Variables/EvalVariables.cs
+36 −24 BaseUtilities/Variables/PropertyInfo.cs
+34 −72 BaseUtilities/Variables/Variables.cs
+17 −1 BaseUtilities/WinForms/DataGridViewBaseEnhancements.cs
+70 −3 BaseUtilities/WinForms/DataGridViewColumnControl.cs
+33 −5 BaseUtilities/WinForms/DataGridViewHelpers.cs
+2 −2 README.md
+30 −1 Tests/CollectionTests.cs
+371 −7 Tests/ConditionTests.cs
+239 −163 Tests/EvalTests.cs
+165 −0 Tests/KeyParser.cs
+16 −0 Tests/StringTests.cs
+2 −0 Tests/Tests.csproj
7 changes: 4 additions & 3 deletions EDDLite/EDDLiteForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,10 @@ protected override void OnShown(EventArgs e)
DLLCallBacks.GetShipLoadout = (s) => { return null; };

string verstring = EDDOptions.Instance.Version;
string[] options = new string[] { EDDDLLInterfaces.EDDDLLIF.FLAG_HOSTNAME + "EDLITE",
EDDDLLInterfaces.EDDDLLIF.FLAG_JOURNALVERSION + "2",
EDDDLLInterfaces.EDDDLLIF.FLAG_CALLBACKVERSION + "2",
string[] options = new string[] { EDDDLLInterfaces.EDDDLLIF.FLAG_HOSTNAME + "EDDLITE",
EDDDLLInterfaces.EDDDLLIF.FLAG_JOURNALVERSION + EliteDangerousCore.DLL.EDDDLLCallerHE.JournalVersion.ToString(),
EDDDLLInterfaces.EDDDLLIF.FLAG_CALLBACKVERSION + DLLCallBacks.ver.ToString(),
EDDDLLInterfaces.EDDDLLIF.FLAG_CALLVERSION + EDDDLLInterfaces.EDDDLLIF.CallBackVersion,
};

string alloweddlls = EDDConfig.Instance.DLLPermissions;
Expand Down
5 changes: 2 additions & 3 deletions EDDLite/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("EDDLite")]
[assembly: AssemblyCopyright("Copyright © 2021")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -31,5 +31,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.1.0.0")]
[assembly: AssemblyVersion("2.3.0.0")]
2 changes: 1 addition & 1 deletion EliteDangerousCore
2 changes: 1 addition & 1 deletion ExtendedControls
Submodule ExtendedControls updated 60 files
+1 −1 BaseUtilities
+8 −5 ExtendedControls/Controls/Button.cs
+1 −1 ExtendedControls/Controls/ComboBox.cs
+151 −0 ExtendedControls/Controls/CompositeAutoScaleButton.cs
+1 −1 ExtendedControls/Controls/DGVColumnAutoComplete.cs
+30 −22 ExtendedControls/Controls/DateTimePicker.cs
+9 −2 ExtendedControls/Controls/ListBox.cs
+5 −0 ExtendedControls/Controls/PanelDataGridViewScroll.cs
+1 −1 ExtendedControls/Controls/PanelNoTheme.cs
+13 −1 ExtendedControls/Controls/PanelScroll.cs
+36 −5 ExtendedControls/Controls/PictureBox.cs
+21 −3 ExtendedControls/Controls/ScrollBar.cs
+2 −0 ExtendedControls/Controls/TabStrip.cs
+4 −3 ExtendedControls/Controls/TextBox.cs
+14 −8 ExtendedControls/Controls/TextBoxAutoComplete.cs
+3 −0 ExtendedControls/ExtendedControls.csproj
+9 −1 ExtendedControls/Forms/CalendarForm.cs
+100 −11 ExtendedControls/Forms/CheckedIconListBoxForm.cs
+8 −7 ExtendedControls/Forms/CheckedIconListBoxFormGroup.cs
+7 −1 ExtendedControls/Forms/InfoForm.cs
+5 −6 ExtendedControls/Forms/ListBoxForm.cs
+1 −0 ExtendedControls/Forms/MessageBoxTheme.Designer.cs
+3 −1 ExtendedControls/Forms/MessageBoxTheme.cs
+23 −11 ExtendedControls/Themes/Theme.cs
+3 −1 ExtendedForms/ConditionForms/ConditionFilterForm.cs
+53 −27 ExtendedForms/ConditionForms/ConditionFilterUC.cs
+80 −0 TestExtendedControls/Properties/Resources.Designer.cs
+24 −0 TestExtendedControls/Properties/Resources.resx
+ TestExtendedControls/Resources/Addtab.png
+ TestExtendedControls/Resources/BookmarkManager.png
+ TestExtendedControls/Resources/CaptainsLog.png
+ TestExtendedControls/Resources/CombatPanel.png
+ TestExtendedControls/Resources/Commodities.png
+ TestExtendedControls/Resources/Compass.png
+ TestExtendedControls/Resources/Discoveries.png
+ TestExtendedControls/Resources/Popout.png
+ TestExtendedControls/Resources/galaxy.png
+34 −0 TestExtendedControls/TestAutoComplete.Designer.cs
+14 −3 TestExtendedControls/TestAutoComplete.cs
+8 −0 TestExtendedControls/TestAutoComplete.resx
+93 −0 TestExtendedControls/TestAutoScaleCompositeButtons.Designer.cs
+73 −0 TestExtendedControls/TestAutoScaleCompositeButtons.cs
+120 −0 TestExtendedControls/TestAutoScaleCompositeButtons.resx
+6 −103 TestExtendedControls/TestButtons.Designer.cs
+3 −26 TestExtendedControls/TestButtons.cs
+0 −17 TestExtendedControls/TestButtons.resx
+27 −1 TestExtendedControls/TestExtendedForms.Designer.cs
+77 −1 TestExtendedControls/TestExtendedForms.cs
+42 −4 TestExtendedControls/TestForms.csproj
+15 −15 TestExtendedControls/TestListBoxIcon.Designer.cs
+20 −2 TestExtendedControls/TestListBoxIcon.cs
+163 −0 TestExtendedControls/TestPanelScrollDGV.Designer.cs
+98 −0 TestExtendedControls/TestPanelScrollDGV.cs
+128 −0 TestExtendedControls/TestPanelScrollDGV.resx
+71 −6 TestExtendedControls/TestTabStrip.Designer.cs
+39 −1 TestExtendedControls/TestTabStrip.cs
+36 −0 TestExtendedControls/TestTabStrip.resx
+9 −9 TestExtendedControls/TestVariousForms.Designer.cs
+13 −4 TestExtendedControls/TestVariousForms.cs
+0 −4 TestExtendedControls/packages.config
10 changes: 10 additions & 0 deletions Installer/build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,19 @@ set /P vno=Version Number (10.1.2 etc) :
echo set to %1
set vno=%1
)

find "%vno%" ..\eddlite\properties\AssemblyInfo.cs
if %ERRORLEVEL%==1 goto :error

echo Build %vno%

"\Program Files (x86)\Inno Setup 6\iscc.exe" /DMyAppVersion=%vno% innoscript.iss
copy ..\EDDLite\bin\Release\EDDLite.Portable.Zip installers\EDDLite.Portable.%vno%.zip
certutil -hashfile installers\EDDLite-%vno%.exe SHA256 >installers\checksums.%vno%.txt
certutil -hashfile installers\EDDLite.Portable.%vno%.zip SHA256 >>installers\checksums.%vno%.txt

exit /b

:error
echo Version %vno% does not correspond to AssemblyInfo.cs

0 comments on commit 753336f

Please sign in to comment.