mirror of
https://github.com/rstrouse/ESPSomfy-RTS.git
synced 2025-12-13 11:02:12 +01:00
Added timezone for Europe/Berlin #49. Publish v1.6.0
This commit is contained in:
parent
930348ead8
commit
2378ac780e
6 changed files with 23 additions and 72 deletions
|
|
@ -3,10 +3,10 @@
|
|||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="main.css?v=1.6.0b" type="text/css" />
|
||||
<link rel="stylesheet" href="icons.css?v=1.6.0b" type="text/css" />
|
||||
<link rel="stylesheet" href="main.css?v=1.6.0" type="text/css" />
|
||||
<link rel="stylesheet" href="icons.css?v=1.6.0" type="text/css" />
|
||||
<link rel="icon" type="image/png" href="favicon.png" />
|
||||
<script type="text/javascript" src="index.js?v=1.6.0b"></script>
|
||||
<script type="text/javascript" src="index.js?v=1.6.0"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="divContainer" class="container" style="user-select:none;position:relative;border-radius:27px;">
|
||||
|
|
@ -216,23 +216,25 @@
|
|||
<div id="somfyShade" style="width:100%;display:none;">
|
||||
<form method="post" action="/shadesettings">
|
||||
<div style="display:inline-block;float:right;position:relative;margin-top:-14px;"><span id="spanShadeId">*</span>/<span id="spanMaxShades">5</span></div>
|
||||
<div class="field-group" style="padding:0px;">
|
||||
<div class="field-group" style="margin-top:-18px;display:inline-block;width:77px;">
|
||||
<select id="selShadeProto" name="proto" style="width:100%;">
|
||||
<option value="0">RTS</option>
|
||||
<option value="1">RTW</option>
|
||||
</select>
|
||||
<label for="selShadeBitLength">Protocol</label>
|
||||
</div>
|
||||
<div class="field-group" style="margin-top:-18px;display:inline-block;width:77px;">
|
||||
<select id="selShadeBitLength" name="bitLength" style="width:100%;" onchange="somfy.onShadeBitLengthChanged(this);">
|
||||
<option value="56">56-BIT</option>
|
||||
<option value="80">80-BIT</option>
|
||||
</select>
|
||||
<label for="selShadeBitLength">Bit Length</label>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="field-group" style="width:127px;display:inline-block;margin-top:-20px;float:left;">
|
||||
<div class="field-group" style="width:127px;display:inline-block;margin-top:-10px;float:left;">
|
||||
<div class="field-group">
|
||||
<div class="field-group" style="margin-top:-10px;">
|
||||
<select id="selShadeProto" name="proto" style="width:50%;">
|
||||
<option value="0">RTS</option>
|
||||
<option value="1">RTW</option>
|
||||
</select>
|
||||
<label for="selShadeBitLength">Protocol</label>
|
||||
</div>
|
||||
<div class="field-group" style="margin-top:-10px;">
|
||||
<select id="selShadeBitLength" name="bitLength" style="width:50%;" onchange="somfy.onShadeBitLengthChanged(this);">
|
||||
<option value="56">56-BIT</option>
|
||||
<option value="80">80-BIT</option>
|
||||
</select>
|
||||
<label for="selShadeBitLength">Bit Length</label>
|
||||
</div>
|
||||
<div class="field-group" style="margin-top:-10px;">
|
||||
<select id="selShadeType" name="shadeType" style="width:100%;" onchange="somfy.onShadeTypeChanged(this);">
|
||||
<option value="0">Roller Shade</option>
|
||||
|
|
|
|||
|
|
@ -378,7 +378,7 @@ async function reopenSocket() {
|
|||
await initSockets();
|
||||
}
|
||||
class General {
|
||||
appVersion = 'v1.6.0beta';
|
||||
appVersion = 'v1.6.0';
|
||||
reloadApp = false;
|
||||
async init() {
|
||||
this.setAppVersion();
|
||||
|
|
@ -485,6 +485,7 @@ class General {
|
|||
{ city: "Etc/GMT-14", code: "<+14>-14" },
|
||||
{ city: "Etc/GMT-2", code: "<+02>-2" },
|
||||
{ city: "Etc/Universal Coorinated Time", code: "UTC0" },
|
||||
{ city: "Europe/Berlin", code: "CEST-1CET,M3.2.0/2:00:00,M11.1.0/2:00:00" },
|
||||
{ city: "Europe/Chisinau", code: "EET-2EEST,M3.5.0,M10.5.0/3" },
|
||||
{ city: "Europe/Dublin", code: "IST-1GMT0,M10.5.0,M3.5.0/1" },
|
||||
{ city: "Europe/Guernsey", code: "GMT0BST,M3.5.0/1,M10.5.0" },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue