Skip to content

Commit

Permalink
Updated default setting for mirror mode to be false.
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchiecarroll committed Dec 6, 2023
1 parent 0a6778a commit 74d549d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Applications/SIEGateManager/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ string getRawValue(CategorizedSettingsElement element)
database?.Dispose();
}

bool mirrorMode = true;
bool mirrorMode = false;

try
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Applications/SIEGateManager/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<add name="ConnectionString" value="Data Source=localhost\SQLEXPRESS; Initial Catalog=SIEGate; Integrated Security=SSPI" description="Configuration connection string" encrypted="False"/>
<add name="DataProviderString" value="AssemblyName={System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089}; ConnectionType=System.Data.SqlClient.SqlConnection; AdapterType=System.Data.SqlClient.SqlDataAdapter" description="Configuration database ADO.NET data provider assembly type creation string used when ConfigurationType=Database" encrypted="false"/>
<add name="NodeID" value="d1ebffbb-d318-463f-9822-394fd0e968b0" description="Unique Node ID" encrypted="false"/>
<add name="MirrorMode" value="True" description="Set mirror mode to False to turn off output stream mirroring and enable default, i.e., any device, output stream operation" encrypted="false"/>
<add name="MirrorMode" value="False" description="Set mirror mode to False to turn off output stream mirroring and enable default, i.e., any device, output stream operation" encrypted="false"/>
<add name="ElevateProcess" value="" description="Determines whether to elevate the process to enure the user has the necessary credentials to edit configuration. Leave this blank to elevate only if configuration is stored in SQLite." encrypted="False"/>
<add name="PointTagNameExpression" value="{CompanyAcronym}_{DeviceAcronym}[?{SignalType.Source}=Phasor[:eval{'{PhasorLabel}'.Trim().ToUpper().Replace(' ','_')}_eval{'{SignalType.Abbreviation}'.Substring(0,1)}eval{'{Phase}'=='+'?'1':('{Phase}'=='-'?'2':'{Phase}')}[?{BaseKV}&gt;0[_{BaseKV}]][?{SignalType.Suffix}=PA[.ANG]][?{SignalType.Suffix}=PM[.MAG]]]][?{SignalType.Acronym}=ALOG[:eval{('{Label}'.Trim().Length&gt;0?'{Label}'.Trim().ToUpper().Replace(' ','_'):'ALOG'+((int){SignalIndex}).ToString().PadLeft(2,(char)48))}]][?{SignalType.Source}!=Phasor[?{SignalType.Acronym}!=ALOG[:{SignalType.Acronym}[?{SignalIndex}!=-1[eval{((int){SignalIndex}).ToString().PadLeft(2,(char)48)}]]]]]" description="Defines the expression used to create point tag names. NOTE: if updating this setting, synchronize value in both the manager and service config files." encrypted="false" scope="Application"/>
</systemSettings>
Expand Down

0 comments on commit 74d549d

Please sign in to comment.