</component>
<component name="ChangeListManager">
<list default="true" id="352ce63a-b52a-41a2-979b-becda7920939" name="Default" comment=".">
- <change afterPath="$PROJECT_DIR$/scripts/automodes.php" afterDir="false" />
- <change afterPath="$PROJECT_DIR$/scripts/lib/automodes.php" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/scripts/lib/lib.php" beforeDir="false" afterPath="$PROJECT_DIR$/scripts/lib/lib.php" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/scripts/lib/scenes.php" beforeDir="false" afterPath="$PROJECT_DIR$/scripts/lib/scenes.php" afterDir="false" />
+ <change beforePath="$PROJECT_DIR$/scripts/automodes.php" beforeDir="false" afterPath="$PROJECT_DIR$/scripts/automodes.php" afterDir="false" />
+ <change beforePath="$PROJECT_DIR$/scripts/lib/automodes.php" beforeDir="false" afterPath="$PROJECT_DIR$/scripts/lib/automodes.php" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<workItem from="1688849303515" duration="1558000" />
<workItem from="1688897001591" duration="22890000" />
<workItem from="1689010387612" duration="1878000" />
- <workItem from="1689026578748" duration="401000" />
+ <workItem from="1689026578748" duration="609000" />
</task>
<task id="LOCAL-00502" summary=".">
<created>1641726946298</created>
<option name="project" value="LOCAL" />
<updated>1687259667913</updated>
</task>
- <option name="localTasksCounter" value="570" />
+ <option name="localTasksCounter" value="571" />
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">
}
function updateBureauAuto() {
+ if(!isAutoModeEnabled()){
+ return;
+ }
if (getState('bureauOff') == '1') {
execScene('bureau/off');
return;
}
function updateCuisine() {
+ if(!isAutoModeEnabled()){
+ return;
+ }
$salon = getState('salon', 'off');
if ($salon === 'day' || $salon === 'on' || $salon === 'off' || $salon === 'tamise') {
execScene('cuisine/base/on');
}
function updateCourAuto() {
+ if(!isAutoModeEnabled()){
+ return;
+ }
$h = date('H');
if ($h >= 7) {
execScene('cour/projecteurs/off');
}
function updateSalonAuto() {
+ if(!isAutoModeEnabled()){
+ return;
+ }
if (getState('salonOff') == '1') {
execScene('salon/off');
return;
}
function updateChambreAuto($transitionTime = null) {
+ if(!isAutoModeEnabled()){
+ return;
+ }
if (getState('chambreOff') == '1') {
execScene('chambre/off');
return;