You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: OSAE.API/OSAEScreenControl/OSAEScreenControlManager.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,7 @@ public static List<OSAEScreenControl> GetScreenControls(string screenName)
81
81
DataSetdataset=newDataSet();
82
82
OSAEScreenControlctrl=newOSAEScreenControl();
83
83
84
-
command.CommandText="SELECT object_name, control_name, control_type, state_name, last_updated, coalesce(time_in_state, 0) as time_in_state FROM osae_v_screen_object WHERE screen_name=@ScreenName AND control_enabled = 1";
84
+
command.CommandText="SELECT object_name, control_name, control_type, state_name, last_updated, coalesce(property_last_updated,NOW()) as property_last_updated, coalesce(time_in_state, 0) as time_in_state FROM osae_v_screen_object WHERE screen_name=@ScreenName AND control_enabled = 1";
Copy file name to clipboardExpand all lines: Plugins/OSAE.W800RF/W800RF.vb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -220,11 +220,11 @@ Public Class W800RF
220
220
IfgDevice.Device_Type="X10_SECURITY_DS10"Then
221
221
Log.Info("Adding new DS10A: "&gDevice.Device_Code)
222
222
IfgDebugThenLog.Debug("ObjectAdd: X10-"&gDevice.Device_Code&",Unknown DS10A found by W800RF,BINARY SENSOR, "&gDevice.Device_Code&", '' True)")
223
-
OSAEObjectManager.ObjectAdd("X10-"&gDevice.Device_Code,"Unknown DS10A found by W800RF","BINARY SENSOR",gDevice.Device_Code,"",True)
223
+
OSAEObjectManager.ObjectAdd("X10-"&gDevice.Device_Code,"","Unknown DS10A found by W800RF","BINARY SENSOR",gDevice.Device_Code,"",True)
224
224
Else
225
225
Log.Info("Adding new X10: "&gDevice.House_Code&gDevice.Device_Code)
226
226
IfgDebugThenLog.Debug("ObjectAdd: X10-"&gDevice.Device_Code&",Unknown X10 found by W800RF,BINARY SENSOR, "&gDevice.Device_Code&", '', True)")
227
-
OSAEObjectManager.ObjectAdd("X10-"&gDevice.House_Code&gDevice.Device_Code,"Unknown X10 found by W800RF","BINARY SENSOR",gDevice.House_Code&gDevice.Device_Code,"",True)
227
+
OSAEObjectManager.ObjectAdd("X10-"&gDevice.House_Code&gDevice.Device_Code,"","Unknown X10 found by W800RF","BINARY SENSOR",gDevice.House_Code&gDevice.Device_Code,"",True)
DataSetdataSet=OSAESql.RunSQL("select property_name from osae_v_object_property where object_name='"+(senderasComboBox).SelectedValue.ToString()+"' Union select 'State' order by property_name");
Copy file name to clipboardExpand all lines: UI/OSAE.UI.Controls/AddControlStateImage.xaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
<Buttonx:Name="btnLoadS1I1"Content="Image 1"HorizontalAlignment="Left"Margin="76,104,0,0"VerticalAlignment="Top"Width="75"Click="btnLoadS1I1_Click"RenderTransformOrigin="0.411,0.455"ToolTip="First and possibly only frame of this animation"/>
0 commit comments