FreeBSD Bugzilla – Attachment 206617 Details for
Bug 239817
www/domoticz: update to 4.10717
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch for domoticz.
domoticz.patch (text/plain), 24.39 KB, created by
Xavier Beaudouin
on 2019-08-16 13:01:57 UTC
(
hide
)
Description:
Patch for domoticz.
Filename:
MIME Type:
Creator:
Xavier Beaudouin
Created:
2019-08-16 13:01:57 UTC
Size:
24.39 KB
patch
obsolete
>diff -u --recursive --new-file domoticz-old/Makefile domoticz/Makefile >--- domoticz-old/Makefile 2019-07-26 22:46:53.000000000 +0200 >+++ domoticz/Makefile 2019-08-14 15:49:33.187147000 +0200 >@@ -2,12 +2,8 @@ > > PORTNAME= domoticz > PORTVERSION= 4.${DOMOTICZ_REL} >-PORTREVISION= 5 > CATEGORIES= www > >-PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ >-PATCHFILES+= 9d226dab339f.patch:-p1 >- > MAINTAINER= kiwi@oav.net > COMMENT= Home Automation System > >@@ -36,11 +32,9 @@ > > # This hack is to get rid of dependency of git while building > # the package. >-DOMOTICZ_REL= 9700 >-DOMOTICZ_TS= 1529904511 >+DOMOTICZ_REL= 10717 >+DOMOTICZ_TS= 1565707487 > USE_GITHUB= yes >-GH_ACCOUNT= domoticz >-GH_PROJECT= domoticz > > USE_RC_SUBR= domoticz > >@@ -95,7 +89,7 @@ > > .if ${PORT_OPTIONS:MPYTHON} > CMAKE_ARGS+= -DUSE_PYTHON="YES" >-USES+= python:3.4 >+USES+= python:3.6 > .else > CMAKE_ARGS+= -DUSE_PYTHON="NO" > .endif >@@ -109,7 +103,7 @@ > @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX},g" ${WRKSRC}/CMakeLists.txt > @${REINPLACE_CMD} -e "/^ADD_PRECOMPILED_HEADER/ d" ${WRKSRC}/CMakeLists.txt > @${REINPLACE_CMD} -e "s/\(#define APPVERSION\)\(.*\)/\1 ${DOMOTICZ_REL}/" ${WRKSRC}/appversion.default >- @${REINPLACE_CMD} -e "s/\(#define APPHASH\)\(.*\)/\1 \"27772d9f\"/" ${WRKSRC}/appversion.default >+ @${REINPLACE_CMD} -e "s/\(#define APPHASH\)\(.*\)/\1 \"be79a17\"/" ${WRKSRC}/appversion.default > @${REINPLACE_CMD} -e "s/\(#define APPDATE\)\(.*\)/\1 ${DOMOTICZ_TS}/" ${WRKSRC}/appversion.default > > post-install: >diff -u --recursive --new-file domoticz-old/distinfo domoticz/distinfo >--- domoticz-old/distinfo 2019-03-25 11:08:42.000000000 +0100 >+++ domoticz/distinfo 2019-08-14 15:50:43.405610000 +0200 >@@ -1,5 +1,3 @@ >-TIMESTAMP = 1529917548 >-SHA256 (domoticz-domoticz-4.9700_GH0.tar.gz) = c31f185a1ffac01b86a77bf33e059a4403d814e826c9d6639c63c2e9afa55a46 >-SIZE (domoticz-domoticz-4.9700_GH0.tar.gz) = 37443519 >-SHA256 (9d226dab339f.patch) = cd9b13d1a81b1c5fa60dab26fb01ceda1b32a4806bcfa37b88bddde7aad73aa2 >-SIZE (9d226dab339f.patch) = 2190 >+TIMESTAMP = 1565790643 >+SHA256 (domoticz-domoticz-4.10717_GH0.tar.gz) = c053a2161942529f56b748945ec297dcd67f449e68029fc886893a528891ad86 >+SIZE (domoticz-domoticz-4.10717_GH0.tar.gz) = 38159517 >diff -u --recursive --new-file domoticz-old/files/patch-getgit.cmake domoticz/files/patch-getgit.cmake >--- domoticz-old/files/patch-getgit.cmake 2018-06-26 02:04:59.000000000 +0200 >+++ domoticz/files/patch-getgit.cmake 2018-06-25 11:23:57.046176000 +0200 >@@ -1,5 +1,5 @@ >---- getgit.cmake.orig 2018-06-23 14:18:06 UTC >-+++ getgit.cmake >+--- getgit.cmake.orig 2016-04-01 15:27:18.517929000 +0200 >++++ getgit.cmake 2016-04-01 15:27:52.572836000 +0200 > @@ -1,66 +1,7 @@ > # this macro gets called as a custom build step by running make > # please take into account, that the variable 'SOURCE_DIR' has been defined by the caller >diff -u --recursive --new-file domoticz-old/files/patch-hardware_plugins_DelayedLink.h domoticz/files/patch-hardware_plugins_DelayedLink.h >--- domoticz-old/files/patch-hardware_plugins_DelayedLink.h 2018-06-26 02:04:59.000000000 +0200 >+++ domoticz/files/patch-hardware_plugins_DelayedLink.h 1970-01-01 01:00:00.000000000 +0100 >@@ -1,15 +0,0 @@ >---- hardware/plugins/DelayedLink.h.orig 2018-06-23 14:18:06 UTC >-+++ hardware/plugins/DelayedLink.h >-@@ -143,6 +143,12 @@ namespace Plugins { >- if (!shared_lib_) FindLibrary("python3.6", true); >- if (!shared_lib_) FindLibrary("python3.5", true); >- if (!shared_lib_) FindLibrary("python3.4", true); >-+#ifdef __FreeBSD__ >-+ if (!shared_lib_) FindLibrary("python3.7m", true); >-+ if (!shared_lib_) FindLibrary("python3.6m", true); >-+ if (!shared_lib_) FindLibrary("python3.5m", true); >-+ if (!shared_lib_) FindLibrary("python3.4m", true); >-+#endif /* FreeBSD */ >- #endif >- if (shared_lib_) >- { >diff -u --recursive --new-file domoticz-old/pkg-plist domoticz/pkg-plist >--- domoticz-old/pkg-plist 2018-06-26 02:04:59.000000000 +0200 >+++ domoticz/pkg-plist 2019-08-16 11:06:54.431280000 +0200 >@@ -77,11 +77,14 @@ > domoticz/Config/aeotec/zw132.xml > domoticz/Config/aeotec/zw139.xml > domoticz/Config/aeotec/zw140.xml >+domoticz/Config/aeotec/zw141.xml >+domoticz/Config/aeotec/zw162.xml > domoticz/Config/aeotec/zwa001.xml > domoticz/Config/aeotec/zwa002.xml > domoticz/Config/aeotec/zwa003.xml > domoticz/Config/aeotec/zwa004.xml > domoticz/Config/aeotec/zwa005.xml >+domoticz/Config/aeotec/zwa006.xml > domoticz/Config/assa_abloy/ConexisL1.xml > domoticz/Config/assa_abloy/KeyfreeConnected-plus.xml > domoticz/Config/assa_abloy/KeyfreeConnected.xml >@@ -156,11 +159,13 @@ > domoticz/Config/enerwave/zwnrsm1plus.xml > domoticz/Config/enerwave/zwnrsm2plus.xml > domoticz/Config/eurotronic/eur_cometz.xml >+domoticz/Config/eurotronic/eur_spiritz.xml > domoticz/Config/eurotronic/eur_stellaz.xml > domoticz/Config/everspring/ad146.xml > domoticz/Config/everspring/ad147.xml > domoticz/Config/everspring/an145.xml > domoticz/Config/everspring/an158.xml >+domoticz/Config/everspring/an163.xml > domoticz/Config/everspring/an179.xml > domoticz/Config/everspring/an180.xml > domoticz/Config/everspring/an181.xml >@@ -171,6 +176,7 @@ > domoticz/Config/everspring/sm103.xml > domoticz/Config/everspring/sp103.xml > domoticz/Config/everspring/sp814.xml >+domoticz/Config/everspring/sp815.xml > domoticz/Config/everspring/sp816.xml > domoticz/Config/everspring/st812.xml > domoticz/Config/everspring/st814.xml >@@ -199,6 +205,7 @@ > domoticz/Config/fibaro/fgmszw5.xml > domoticz/Config/fibaro/fgpb101.xml > domoticz/Config/fibaro/fgr221.xml >+domoticz/Config/fibaro/fgr223.xml > domoticz/Config/fibaro/fgrgbwm441.xml > domoticz/Config/fibaro/fgrm222.xml > domoticz/Config/fibaro/fgs211.xml >@@ -212,6 +219,7 @@ > domoticz/Config/fibaro/fgt001.xml > domoticz/Config/fibaro/fgwpe.xml > domoticz/Config/fibaro/fgwpfzw5.xml >+domoticz/Config/fibaro/fgwpg111.xml > domoticz/Config/firstalert/zcombo.xml > domoticz/Config/forest/fs2z5232000002.xml > domoticz/Config/fortrezz/fmi.xml >@@ -232,6 +240,8 @@ > domoticz/Config/ge/14295-dimmer-toggle.xml > domoticz/Config/ge/26931-motion-switch.xml > domoticz/Config/ge/26933-motion-dimmer.xml >+domoticz/Config/ge/28167-plugin-dimmer.xml >+domoticz/Config/ge/28169-plugin-switch.xml > domoticz/Config/ge/dimmer.xml > domoticz/Config/ge/dimmer_module.xml > domoticz/Config/ge/hinge-pin.xml >@@ -250,6 +260,7 @@ > domoticz/Config/hank/hkzw-dws01.xml > domoticz/Config/hank/hkzw-fld01.xml > domoticz/Config/hank/hkzw-ms01.xml >+domoticz/Config/hank/hkzw-ms02.xml > domoticz/Config/hank/hkzw-rgb01.xml > domoticz/Config/hank/hkzw-so01-smartplug.xml > domoticz/Config/hank/hkzw-so03.xml >@@ -264,7 +275,11 @@ > domoticz/Config/heiman/HS1SA-Z.xml > domoticz/Config/heiman/HS1WL-Z.xml > domoticz/Config/heiman/HS2SK-Z.xml >+domoticz/Config/heltun/he-zw-therm-fl2.xml > domoticz/Config/homeseer/ezmotionplus.xml >+domoticz/Config/homeseer/hs-fc200plus.xml >+domoticz/Config/homeseer/hs-fls100plus.xml >+domoticz/Config/homeseer/hs-ls100plus.xml > domoticz/Config/homeseer/hs-ms100plus.xml > domoticz/Config/homeseer/hs-wd100plus.xml > domoticz/Config/homeseer/hs-wd200plus.xml >@@ -273,6 +288,7 @@ > domoticz/Config/homeseer/hsm100.xml > domoticz/Config/homeseer/hsm200.xml > domoticz/Config/homeseer/ztroller.xml >+domoticz/Config/honeywell/39351-ZW3005.xml > domoticz/Config/honeywell/lynx-touch-l5100.xml > domoticz/Config/honeywell/th8320zw1000.xml > domoticz/Config/horstmann/asrzw.xml >@@ -284,10 +300,17 @@ > domoticz/Config/horstmann/srt321.xml > domoticz/Config/horstmann/srt323.xml > domoticz/Config/horstmann/ssr302.xml >+domoticz/Config/horstmann/ssr303.xml > domoticz/Config/idlock/idlock101.xml >+domoticz/Config/idlock/idlock150.xml > domoticz/Config/ingersoll/dwzwave1.xml >+domoticz/Config/inovelli/nzw1201.xml > domoticz/Config/inovelli/nzw30.xml > domoticz/Config/inovelli/nzw31.xml >+domoticz/Config/inovelli/nzw36.xml >+domoticz/Config/inovelli/nzw37.xml >+domoticz/Config/inovelli/nzw39.xml >+domoticz/Config/inovelli/nzw96.xml > domoticz/Config/inovelli/nzw97.xml > domoticz/Config/inovelli/simple_module.xml > domoticz/Config/intermatic/ca8900.xml >@@ -300,6 +323,7 @@ > domoticz/Config/leviton/dzpd3.xml > domoticz/Config/leviton/rzi10.xml > domoticz/Config/leviton/vrcpg.xml >+domoticz/Config/leviton/vre06.xml > domoticz/Config/leviton/vrf01.xml > domoticz/Config/leviton/vri06.xml > domoticz/Config/leviton/vri10.xml >@@ -318,6 +342,8 @@ > domoticz/Config/logicsoft/ZHC5010.xml > domoticz/Config/manufacturer_specific.xml > domoticz/Config/manufacturer_specific.xsd >+domoticz/Config/mcohome/a8-9.xml >+domoticz/Config/mcohome/mh7h.xml > domoticz/Config/mcohome/mh8fceu.xml > domoticz/Config/mcohome/mh9co2.xml > domoticz/Config/mcohome/mhp210.xml >@@ -342,6 +368,7 @@ > domoticz/Config/oomi/ft111.xml > domoticz/Config/options.xml > domoticz/Config/options.xsd >+domoticz/Config/philio/pad02.xml > domoticz/Config/philio/pan03.xml > domoticz/Config/philio/pan04.xml > domoticz/Config/philio/pan06.xml >@@ -355,6 +382,7 @@ > domoticz/Config/philio/pse02.xml > domoticz/Config/philio/psm02.xml > domoticz/Config/philio/psp05.xml >+domoticz/Config/philio/psr03-1b.xml > domoticz/Config/philio/psr04.xml > domoticz/Config/philio/pst02-1c.xml > domoticz/Config/philio/pst02-b.xml >@@ -367,10 +395,12 @@ > domoticz/Config/popp/009105.xml > domoticz/Config/popp/009303.xml > domoticz/Config/popp/009402.xml >+domoticz/Config/popp/009501.xml > domoticz/Config/popp/012501.xml > domoticz/Config/popp/123580.xml > domoticz/Config/popp/123601.xml > domoticz/Config/popp/123658.xml >+domoticz/Config/popp/700045.xml > domoticz/Config/popp/700168.xml > domoticz/Config/popp/smoke-detector.xml > domoticz/Config/popp/solar-siren.xml >@@ -401,6 +431,8 @@ > domoticz/Config/qubino/ZMNHUD1.xml > domoticz/Config/qubino/ZMNHVDx.xml > domoticz/Config/qubino/ZMNHWD1.xml >+domoticz/Config/qubino/ZMNHXDx.xml >+domoticz/Config/qubino/ZMNHYDx.xml > domoticz/Config/qubino/ZMNHZDx.xml > domoticz/Config/rcs/em52-zw.xml > domoticz/Config/rcs/pm12-zw.xml >@@ -413,8 +445,10 @@ > domoticz/Config/remotec/zts-500.xml > domoticz/Config/remotec/zurc.xml > domoticz/Config/remotec/zxt-120.xml >+domoticz/Config/remotec/zxt-600.xml > domoticz/Config/schlage/BE468.xml > domoticz/Config/schlage/BE469.xml >+domoticz/Config/schlage/BE469ZP.xml > domoticz/Config/schlagelink/itemp.xml > domoticz/Config/schlagelink/minikeypad.xml > domoticz/Config/sensative/strips.xml >@@ -424,11 +458,17 @@ > domoticz/Config/shenzen_neo/nas-ab01z.xml > domoticz/Config/shenzen_neo/nas-ds01z.xml > domoticz/Config/shenzen_neo/nas-pd01z.xml >+domoticz/Config/shenzen_neo/nas-pd02z.xml > domoticz/Config/shenzen_neo/nas-rc01z.xml > domoticz/Config/shenzen_neo/nas-wr01z.xml >+domoticz/Config/shenzen_neo/nas-wr01ze.xml > domoticz/Config/shenzen_neo/nas-ws02z.xml >+domoticz/Config/simon/10002034-13X.xml >+domoticz/Config/simon/10002041-13X.xml > domoticz/Config/steinel/is140-2.xml >+domoticz/Config/steinel/l810-led-ihf.xml > domoticz/Config/steinel/rs-led-d2.xml >+domoticz/Config/steinel/xled-home-2.xml > domoticz/Config/stelpro/stzw402.xml > domoticz/Config/swiid/swiidinter.xml > domoticz/Config/swiid/swiidplug.xml >@@ -436,7 +476,8 @@ > domoticz/Config/telldus/tzdw100.xml > domoticz/Config/telldus/tzwp100.xml > domoticz/Config/thermofloor/heatit021.xml >-domoticz/Config/thermofloor/heatitztrm2.xml >+domoticz/Config/thermofloor/heatit033.xml >+domoticz/Config/thermofloor/heatit056.xml > domoticz/Config/trane/TZEMT400AB32MAA.xml > domoticz/Config/trane/TZEMT400BB32MAA.xml > domoticz/Config/trane/TZEMT524AA21MA.xml >@@ -462,6 +503,8 @@ > domoticz/Config/wenzhou/tsp01.xml > domoticz/Config/wenzhou/tz55.xml > domoticz/Config/wenzhou/tz56.xml >+domoticz/Config/wenzhou/tz56s.xml >+domoticz/Config/wenzhou/tz57.xml > domoticz/Config/wenzhou/tz65d.xml > domoticz/Config/wenzhou/tz66d.xml > domoticz/Config/wenzhou/tz67.xml >@@ -483,13 +526,18 @@ > domoticz/Config/zooz/zen07.xml > domoticz/Config/zooz/zen15.xml > domoticz/Config/zooz/zen20.xml >+domoticz/Config/zooz/zen20v2.xml > domoticz/Config/zooz/zen21.xml > domoticz/Config/zooz/zen22.xml > domoticz/Config/zooz/zen22v2.xml > domoticz/Config/zooz/zen23.xml > domoticz/Config/zooz/zen24.xml >+domoticz/Config/zooz/zen26.xml >+domoticz/Config/zooz/zen27.xml > domoticz/Config/zooz/zse08.xml > domoticz/Config/zooz/zse09.xml >+domoticz/Config/zooz/zse18.xml >+domoticz/Config/zooz/zse19.xml > domoticz/Config/zooz/zse30.xml > domoticz/Config/zooz/zse33.xml > domoticz/Config/zooz/zse40.xml >@@ -520,6 +568,7 @@ > domoticz/dzVents/documentation/dzvents-smoothing.png > domoticz/dzVents/documentation/history.md > domoticz/dzVents/documentation/pandoc.md >+domoticz/dzVents/runtime/Camera.lua > domoticz/dzVents/runtime/Device.lua > domoticz/dzVents/runtime/Domoticz.lua > domoticz/dzVents/runtime/EventHelpers.lua >@@ -582,7 +631,9 @@ > domoticz/dzVents/runtime/device-adapters/zwave_thermostat_mode_device.lua > domoticz/dzVents/runtime/dzVents.lua > domoticz/dzVents/runtime/integration-tests/File.lua >+domoticz/dzVents/runtime/integration-tests/IconScript.lua > domoticz/dzVents/runtime/integration-tests/README.md >+domoticz/dzVents/runtime/integration-tests/descriptionScript.lua > domoticz/dzVents/runtime/integration-tests/domoticzTestTools.lua > domoticz/dzVents/runtime/integration-tests/global_data.lua > domoticz/dzVents/runtime/integration-tests/httpResponseScript.lua >@@ -611,6 +662,7 @@ > domoticz/dzVents/runtime/integration-tests/vdSwitchDimmer.lua > domoticz/dzVents/runtime/lodash.lua > domoticz/dzVents/runtime/misc/smoothing.xlsx >+domoticz/dzVents/runtime/misc/testdzVents.sh > domoticz/dzVents/runtime/persistence.lua > domoticz/dzVents/runtime/tests/.luacov > domoticz/dzVents/runtime/tests/README.md >@@ -684,6 +736,7 @@ > domoticz/plugins/examples/Kodi.py > domoticz/plugins/examples/MQTT Publish.py > domoticz/plugins/examples/MQTT Subscribe.py >+domoticz/plugins/examples/Mutli-Threaded.py > domoticz/plugins/examples/Pinger.py > domoticz/plugins/examples/RAVEn.py > domoticz/plugins/examples/UDP Discovery.py >@@ -765,14 +818,11 @@ > domoticz/www/app/DPInfluxController.js > domoticz/www/app/DashboardController.js > domoticz/www/app/DeviceLightEdit.js >-domoticz/www/app/DevicesController.js > domoticz/www/app/DummyController.js >-domoticz/www/app/EventsController.js > domoticz/www/app/FloorplanController.js > domoticz/www/app/FloorplanEditController.js > domoticz/www/app/ForecastController.js > domoticz/www/app/FrontpageController.js >-domoticz/www/app/HardwareController.js > domoticz/www/app/HistoryController.js > domoticz/www/app/LightsController.js > domoticz/www/app/LogController.js >@@ -795,17 +845,74 @@ > domoticz/www/app/UtilityController.js > domoticz/www/app/WeatherController.js > domoticz/www/app/ZWaveTopologyController.js >+domoticz/www/app/app.constants.js > domoticz/www/app/app.js >+domoticz/www/app/app.permissions.js >+domoticz/www/app/app.routes.js >+domoticz/www/app/components/rgbw-picker/RgbwPicker.html >+domoticz/www/app/components/rgbw-picker/RgbwPicker.js >+domoticz/www/app/devices/Devices.css >+domoticz/www/app/devices/Devices.html >+domoticz/www/app/devices/Devices.js >+domoticz/www/app/devices/deviceFactory.js >+domoticz/www/app/domoticz.api.js >+domoticz/www/app/events/CurrentStates.html >+domoticz/www/app/events/CurrentStates.js >+domoticz/www/app/events/EventViewer.html >+domoticz/www/app/events/EventViewer.js >+domoticz/www/app/events/Events.css >+domoticz/www/app/events/Events.html >+domoticz/www/app/events/Events.js >+domoticz/www/app/events/blockly_blocks_domoticz.js >+domoticz/www/app/events/blockly_messages_domoticz_en.js >+domoticz/www/app/events/blockly_toolbox.xml >+domoticz/www/app/events/blockly_xml_parser.js >+domoticz/www/app/events/factories.js >+domoticz/www/app/hardware/Hardware.html >+domoticz/www/app/hardware/Hardware.js >+domoticz/www/app/hardware/HardwareSetup.html >+domoticz/www/app/hardware/HardwareSetup.js >+domoticz/www/app/hardware/setup/BleBox.html >+domoticz/www/app/hardware/setup/BleBox.js >+domoticz/www/app/hardware/setup/Kodi.html >+domoticz/www/app/hardware/setup/Kodi.js >+domoticz/www/app/hardware/setup/MySensors.html >+domoticz/www/app/hardware/setup/MySensors.js >+domoticz/www/app/hardware/setup/PanasonicTV.html >+domoticz/www/app/hardware/setup/PanasonicTV.js >+domoticz/www/app/hardware/setup/Pinger.html >+domoticz/www/app/hardware/setup/Pinger.js >+domoticz/www/app/hardware/setup/WakeOnLan.html >+domoticz/www/app/hardware/setup/WakeOnLan.js >+domoticz/www/app/hardware/setup/ZWave.html >+domoticz/www/app/hardware/setup/ZWave.js >+domoticz/www/app/log/DeviceLog.html >+domoticz/www/app/log/DeviceLog.js >+domoticz/www/app/log/GraphLog.js >+domoticz/www/app/log/LightLog.html > domoticz/www/app/log/LightLog.js >+domoticz/www/app/log/SceneLog.html > domoticz/www/app/log/SceneLog.js > domoticz/www/app/log/TemperatureLog.js >-domoticz/www/app/log/TemperatureReport.js >+domoticz/www/app/log/TextLog.html > domoticz/www/app/log/TextLog.js >-domoticz/www/app/log/components.js >+domoticz/www/app/log/components/DeviceLevelChart.js >+domoticz/www/app/log/components/DeviceOnOffChart.js >+domoticz/www/app/log/components/DeviceTextLogTable.js >+domoticz/www/app/log/factories.js > domoticz/www/app/main.js > domoticz/www/app/notifications/DeviceNotifications.js > domoticz/www/app/notifications/constants.js > domoticz/www/app/notifications/factories.js >+domoticz/www/app/report/CounterReport.html >+domoticz/www/app/report/CounterReport.js >+domoticz/www/app/report/DeviceReport.html >+domoticz/www/app/report/DeviceReport.js >+domoticz/www/app/report/EnergyMultiCounterReport.html >+domoticz/www/app/report/EnergyMultiCounterReport.js >+domoticz/www/app/report/TemperatureReport.html >+domoticz/www/app/report/TemperatureReport.js >+domoticz/www/app/report/helpers.js > domoticz/www/app/scenes/factories.js > domoticz/www/app/timers/DeviceTimersController.js > domoticz/www/app/timers/SceneTimersController.js >@@ -822,6 +929,7 @@ > domoticz/www/css/fonts/Satisfy.eot > domoticz/www/css/fonts/Satisfy.ttf > domoticz/www/css/images/bg-track.png >+domoticz/www/css/images/bttb.png > domoticz/www/css/images/close.png > domoticz/www/css/images/handle.png > domoticz/www/css/images/img01.jpg >@@ -868,7 +976,6 @@ > domoticz/www/css/ui-darkness/images/ui-icons_ffffff_256x240.png > domoticz/www/css/ui-darkness/jquery-ui.min.css > domoticz/www/css/wheelcolorpicker.css >-domoticz/www/eventsframe.html > domoticz/www/favicon.ico > domoticz/www/html5.appcache > domoticz/www/i18n/domoticz-ar.json.gz >@@ -907,6 +1014,7 @@ > domoticz/www/i18n/domoticz-tr.json.gz > domoticz/www/i18n/domoticz-uk.json.gz > domoticz/www/i18n/domoticz-zh.json.gz >+domoticz/www/i18n/domoticz-zh_TW.json.gz > domoticz/www/images/Alarm.png > domoticz/www/images/Alarm48_Off.png > domoticz/www/images/Alarm48_On.png >@@ -930,6 +1038,8 @@ > domoticz/www/images/ComputerPC.png > domoticz/www/images/ComputerPC48_Off.png > domoticz/www/images/ComputerPC48_On.png >+domoticz/www/images/Contact48_Off.png >+domoticz/www/images/Contact48_On.png > domoticz/www/images/Cooling.png > domoticz/www/images/Cooling48_Off.png > domoticz/www/images/Cooling48_On.png >@@ -943,6 +1053,8 @@ > domoticz/www/images/Customww48_Sel.png > domoticz/www/images/Dimmer48_Off.png > domoticz/www/images/Dimmer48_On.png >+domoticz/www/images/Door48_Off.png >+domoticz/www/images/Door48_On.png > domoticz/www/images/Down48.png > domoticz/www/images/Down48_2.png > domoticz/www/images/Fan.png >@@ -977,6 +1089,8 @@ > domoticz/www/images/Printer.png > domoticz/www/images/Printer48_Off.png > domoticz/www/images/Printer48_On.png >+domoticz/www/images/Push48_Off.png >+domoticz/www/images/Push48_On.png > domoticz/www/images/RGB.png > domoticz/www/images/RGB48.png > domoticz/www/images/RGB48_Off.png >@@ -1022,6 +1136,10 @@ > domoticz/www/images/air.png > domoticz/www/images/air48.png > domoticz/www/images/air_signal.png >+domoticz/www/images/arrow_down.png >+domoticz/www/images/arrow_stable.png >+domoticz/www/images/arrow_unk.png >+domoticz/www/images/arrow_up.png > domoticz/www/images/back_disabled.png > domoticz/www/images/back_enabled.png > domoticz/www/images/back_enabled_hover.png >@@ -1047,8 +1165,6 @@ > domoticz/www/images/collection.png > domoticz/www/images/collection_hover.png > domoticz/www/images/contact.png >-domoticz/www/images/contact48.png >-domoticz/www/images/contact48_open.png > domoticz/www/images/contact_open.png > domoticz/www/images/copy.png > domoticz/www/images/copy_hover.png >@@ -1065,8 +1181,6 @@ > domoticz/www/images/details.png > domoticz/www/images/devices.png > domoticz/www/images/door.png >-domoticz/www/images/door48.png >-domoticz/www/images/door48open.png > domoticz/www/images/doorbell.png > domoticz/www/images/doorbell48.png > domoticz/www/images/down.png >@@ -1165,9 +1279,7 @@ > domoticz/www/images/program_mini.png > domoticz/www/images/proxy.png > domoticz/www/images/push.png >-domoticz/www/images/push48.png > domoticz/www/images/pushoff.png >-domoticz/www/images/pushoff48.png > domoticz/www/images/pushon.png > domoticz/www/images/pushon48.png > domoticz/www/images/radiation.png >@@ -1183,6 +1295,7 @@ > domoticz/www/images/scale.png > domoticz/www/images/scale48.png > domoticz/www/images/scenes.png >+domoticz/www/images/script.png > domoticz/www/images/security.png > domoticz/www/images/security48.png > domoticz/www/images/setup.png >@@ -1317,38 +1430,49 @@ > domoticz/www/js/angular.min.js.gz > domoticz/www/js/angularAMD.min.js.gz > domoticz/www/js/babel-polyfill-6.26.0.js.gz >-domoticz/www/js/blockly_compressed.js.gz >-domoticz/www/js/blocks_compressed.js.gz >+domoticz/www/js/blockly/blockly_compressed.js >+domoticz/www/js/blockly/blocks_compressed.js >+domoticz/www/js/blockly/msg/en.js > domoticz/www/js/bootbox.min.js.gz > domoticz/www/js/bootstrap.min.js.gz > domoticz/www/js/colpick.js.gz > domoticz/www/js/d3.min.js.gz >-domoticz/www/js/dataTables.select.min.js.gz >-domoticz/www/js/dataTables.tableTools.min.js.gz >+domoticz/www/js/data-tables/dataTables.select.min.js.gz >+domoticz/www/js/data-tables/dataTables.tableTools.min.js.gz >+domoticz/www/js/data-tables/jquery.dataTables.min.js.gz > domoticz/www/js/date.format.js.gz > domoticz/www/js/domoticz.js >-domoticz/www/js/domoticzblocks.js >-domoticz/www/js/domoticzblocks_messages_en.js > domoticz/www/js/domoticzdevices.js >-domoticz/www/js/en_compressed.js.gz > domoticz/www/js/export-csv.js.gz >-domoticz/www/js/highcharts-more.js.gz > domoticz/www/js/highcharts-ng.min.js.gz >-domoticz/www/js/highcharts.js.gz >+domoticz/www/js/highcharts/highcharts-more.js >+domoticz/www/js/highcharts/highcharts-more.js.map >+domoticz/www/js/highcharts/highcharts-more.src.js >+domoticz/www/js/highcharts/highcharts.js >+domoticz/www/js/highcharts/highcharts.js.map >+domoticz/www/js/highcharts/highcharts.src.js >+domoticz/www/js/highcharts/modules/exporting.js >+domoticz/www/js/highcharts/modules/exporting.js.map >+domoticz/www/js/highcharts/modules/exporting.src.js >+domoticz/www/js/highcharts/modules/xrange.js >+domoticz/www/js/highcharts/modules/xrange.js.map >+domoticz/www/js/highcharts/modules/xrange.src.js >+domoticz/www/js/highcharts/themes/dark-unica.js >+domoticz/www/js/highcharts/themes/dark-unica.js.map >+domoticz/www/js/highcharts/themes/dark-unica.src.js > domoticz/www/js/html5shiv.js.gz > domoticz/www/js/i18next-1.8.0.min.js.gz > domoticz/www/js/jquery-3.3.1.min.js.gz > domoticz/www/js/jquery-ui-timepicker-addon.js.gz > domoticz/www/js/jquery-ui.min.js.gz >-domoticz/www/js/jquery.dataTables.min.js.gz > domoticz/www/js/jquery.ddslick.min.js.gz > domoticz/www/js/jquery.isotope.min.js.gz > domoticz/www/js/jquery.jeditable.mini.js.gz > domoticz/www/js/jquery.ui.touch-punch.min.js.gz > domoticz/www/js/jquery.uix.multiselect.min.js.gz > domoticz/www/js/jquery.wheelcolorpicker.js.gz >+domoticz/www/js/luxon.min.js > domoticz/www/js/md5.js.gz >-domoticz/www/js/modules/exporting.js.gz > domoticz/www/js/ng-grid-flexible-height.js.gz > domoticz/www/js/ng-grid.min.js.gz > domoticz/www/js/ngDraggable.js.gz >@@ -1370,12 +1494,6 @@ > domoticz/www/js/noty/themes/default.js.gz > domoticz/www/js/require.js.gz > domoticz/www/js/respond.min.js.gz >-domoticz/www/js/themes/dark-blue.js.gz >-domoticz/www/js/themes/dark-green.js.gz >-domoticz/www/js/themes/dark-ucust.js.gz >-domoticz/www/js/themes/gray.js.gz >-domoticz/www/js/themes/grid.js.gz >-domoticz/www/js/themes/skies.js.gz > domoticz/www/js/ui-bootstrap.min.js.gz > domoticz/www/js/wow.min.js.gz > domoticz/www/media/1x1.gif >@@ -1464,25 +1582,20 @@ > domoticz/www/views/customicons.html > domoticz/www/views/dashboard.html > domoticz/www/views/device_light_edit.html >-domoticz/www/views/devices.html > domoticz/www/views/dpfibaro.html > domoticz/www/views/dpgooglepubsub.html > domoticz/www/views/dphttp.html > domoticz/www/views/dpinflux.html >-domoticz/www/views/events.html > domoticz/www/views/floorplanedit.html > domoticz/www/views/floorplans.html > domoticz/www/views/forecast.html > domoticz/www/views/frontpage.html > domoticz/www/views/frontpage_example.html >-domoticz/www/views/hardware.html > domoticz/www/views/history.html > domoticz/www/views/lights.html > domoticz/www/views/log.html >-domoticz/www/views/log/device_light_log.html >+domoticz/www/views/log/device_graph_log.html > domoticz/www/views/log/device_temperature_log.html >-domoticz/www/views/log/device_temperature_report.html >-domoticz/www/views/log/scene_log.html > domoticz/www/views/login.html > domoticz/www/views/logout.html > domoticz/www/views/mobile_notifications.html
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 239817
:
206486
|
206547
|
206617
|
207064
Working