Skip to content

Commit 5739a53

Browse files
committed
Merge remote-tracking branch 'origin/master' into webserver_enhancement
2 parents 144aa6d + 1fb38bb commit 5739a53

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

History.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ Version 3.xxxx (March xx 2016)
22
- Fixed: Database backup is now only possible for admin users
33
- Fixed: Better handling of white listed commands/urls
44
- Fixed: Double checking command rights
5+
- Fixed: Fix on/off delays not saved on the selector switch edit form (#532).
56

67
Version 3.4834 (March 2nd 2016)
78
- Implemented: Blockly, now possible to use expressions in notifications/email/SMS like "My temperature is {{temperaturedevice[1234]}} degrees" (see http://www.domoticz.com/wiki/Events)
89
- Implemented: Blockly, now possible to send a notification with a user variable/device as subject/body
910
- Implemented: Chinese language support, big thanks to wxws!!
10-
- Implemented: CounterType 'Time'
1111
- Implemented: Custom Templates, now possible to directly call custom template pages (http://127.0.0.1:8080/#/Custom/mypage)
1212
- Implemented: Day display in energy/gas/water/temp report
1313
- Implemented: Dummy Hardware, Option to supply name, sensor is now also directly added to the system

www/app/DashboardController.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,7 @@ define(['app'], function (app) {
417417
.find('label')
418418
.removeClass('ui-state-active')
419419
.removeClass('ui-state-focus')
420+
.removeClass('ui-state-hover')
420421
.end()
421422
.find('input:radio')
422423
.removeProp('checked')

www/app/LightsController.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ define(['app'], function (app) {
979979
if (switchtype==8) {
980980
addjvalstr="&addjvalue=" + $("#lightcontent #motionoffdelay").val();
981981
}
982-
else if ((switchtype==0)||(switchtype==7)||(switchtype==9)||(switchtype==11)) {
982+
else if ((switchtype==0)||(switchtype==7)||(switchtype==9)||(switchtype==11)||(switchtype==18)) {
983983
addjvalstr="&addjvalue=" + $("#lightcontent #offdelay").val();
984984
addjvalstr+="&addjvalue2=" + $("#lightcontent #ondelay").val();
985985
}
@@ -2333,6 +2333,7 @@ define(['app'], function (app) {
23332333
.find('label')
23342334
.removeClass('ui-state-active')
23352335
.removeClass('ui-state-focus')
2336+
.removeClass('ui-state-hover')
23362337
.end()
23372338
.find('input:radio')
23382339
.removeProp('checked')

www/html5.appcache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CACHE MANIFEST
2-
# ref 1222
2+
# ref 1225
33

44
CACHE:
55
# CSS

0 commit comments

Comments
 (0)