Skip to content

Commit

Permalink
Admin panel remove
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWan committed Sep 29, 2024
1 parent f65bd93 commit 48bf85c
Show file tree
Hide file tree
Showing 115 changed files with 71 additions and 13,941 deletions.
Binary file removed doc/Manual Os.Engine (Admin panel) _en.pdf
Binary file not shown.
Binary file removed doc/Manual Os.Engine (Admin panel)_ru.pdf
Binary file not shown.
2 changes: 0 additions & 2 deletions project/OsEngine/Entity/DataGridFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
using System.Windows.Forms;
using OsEngine.Language;
using System.IO;
using OsEngine.Charts.CandleChart.Indicators;
using System.Data.Common;

namespace OsEngine.Entity
{
Expand Down
4 changes: 2 additions & 2 deletions project/OsEngine/Logging/Log.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ private static void SetNewErrorMessage(LogMessage message)
row.Cells[2].Value = message.Message;
_gridErrorLog.Rows.Insert(0, row);

if (PrimeSettingsMaster.ErrorLogMessageBoxIsActiv)
if (PrimeSettingsMaster.ErrorLogMessageBoxIsActive)
{
if (_logErrorUi == null)
{
Expand All @@ -1020,7 +1020,7 @@ private static void SetNewErrorMessage(LogMessage message)
}
}

if (PrimeSettingsMaster.ErrorLogBeepIsActiv)
if (PrimeSettingsMaster.ErrorLogBeepIsActive)
{
SystemSounds.Beep.Play();
}
Expand Down
4 changes: 2 additions & 2 deletions project/OsEngine/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs
Thread worker = new Thread(SendMessageInCrashServer);
worker.Start();

if (PrimeSettingsMaster.RebootTradeUiLigth == true &&
if (PrimeSettingsMaster.RebootTradeUiLight == true &&
RobotUiLight.IsRobotUiLightStart)
{
Reboot(message);
Expand Down Expand Up @@ -664,7 +664,7 @@ private void CommandLineInterfaceProcess()
{
ButtonRobotLight_Click(this, default);
}
else if (Array.Exists(args, a => a.Equals("-error")) && PrimeSettingsMaster.RebootTradeUiLigth)
else if (Array.Exists(args, a => a.Equals("-error")) && PrimeSettingsMaster.RebootTradeUiLight)
{

CriticalErrorHandler.ErrorInStartUp = true;
Expand Down
2 changes: 1 addition & 1 deletion project/OsEngine/Market/Servers/AServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2267,7 +2267,7 @@ private async void MyTradesBeepThread()
continue;
}

if (PrimeSettings.PrimeSettingsMaster.TransactionBeepIsActiv == false)
if (PrimeSettings.PrimeSettingsMaster.TransactionBeepIsActive == false)
{
continue;
}
Expand Down
7 changes: 0 additions & 7 deletions project/OsEngine/OsEngine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -1000,13 +1000,6 @@
<Compile Include="OsOptimizer\TabIndexOptimizerUi.xaml.cs">
<DependentUpon>TabIndexOptimizerUi.xaml</DependentUpon>
</Compile>
<Compile Include="OsTrader\AdminPanelApi\AdminApiMaster.cs" />
<Compile Include="OsTrader\AdminPanelApi\AdminPanelClient.cs" />
<Compile Include="OsTrader\AdminPanelApi\Authorization.cs" />
<Compile Include="OsTrader\AdminPanelApi\Counter.cs" />
<Compile Include="OsTrader\AdminPanelApi\IApiServer.cs" />
<Compile Include="OsTrader\AdminPanelApi\ServerModel.cs" />
<Compile Include="OsTrader\AdminPanelApi\TcpServer.cs" />
<Compile Include="Layout\GlobalGUILayout.cs" />
<Compile Include="OsTrader\BuyAtStopPositionsViewer.cs" />
<Compile Include="OsTrader\GlobalPositionViewer.cs" />
Expand Down
Loading

0 comments on commit 48bf85c

Please sign in to comment.