FreeBSD Bugzilla – Attachment 212669 Details for
Bug 245007
www/domoticz: Update to 2020.2
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
update to 2020.1
domoticz.patch (text/plain), 34.27 KB, created by
Xavier Beaudouin
on 2020-03-24 07:05:45 UTC
(
hide
)
Description:
update to 2020.1
Filename:
MIME Type:
Creator:
Xavier Beaudouin
Created:
2020-03-24 07:05:45 UTC
Size:
34.27 KB
patch
obsolete
>diff -u --new-file domoticz.orig/Makefile domoticz/Makefile >--- domoticz.orig/Makefile 2019-12-11 18:53:48.000000000 +0100 >+++ domoticz/Makefile 2020-03-24 07:41:44.278467000 +0100 >@@ -1,23 +1,27 @@ >-# $FreeBSD: head/www/domoticz/Makefile 519824 2019-12-11 17:53:48Z jbeich $ >+# $FreeBSD$ > > PORTNAME= domoticz >-PORTVERSION= 4.${DOMOTICZ_REL} >-PORTREVISION= 1 >+PORTVERSION= 2020.1 > CATEGORIES= www > > MAINTAINER= kiwi@oav.net >-COMMENT= Home Automation System >+COMMENT= Home Automation System > > LICENSE= GPLv3 > LICENSE_FILE= ${WRKSRC}/License.txt > > LIB_DEPENDS= libcurl.so:ftp/curl \ >- libexpat.so:textproc/expat2 >+ libopenzwave.so:comms/openzwave-devel \ >+ libjsoncpp.so:devel/jsoncpp >+BUILD_DEPENDS= cereal>=1.2.2:devel/cereal > >-CONFLICTS_INSTALL?= domoticz-[23]* domoticz-devel-* >+USES= cmake pkgconfig ssl > >+CONFLICTS_INSTALL?= domoticz-[234]* >+ > OPTIONS_SUB= YES >-OPTIONS_DEFINE= PYTHON SBOOST SLUA SMINIZIP SMQTT SSQLITE SSSL TELLDUS >+OPTIONS_DEFINE= SSSL SBOOST SLUA SMQTT SSQLITE SMINIZIP PYTHON TELLDUS PRECOMP >+OPTIONS_DEFAULT= PYTHON > SBOOST_DESC= Use static Boost instead of dynamic linking > SSSL_DESC= Use static OpenSSL library instead of dynamic linking > SLUA_DESC= Use domoticz provided LUA instead of ports one >@@ -26,15 +30,10 @@ > SMINIZIP_DESC= Use domoticz minizip instead of ports one > PYTHON_DESC= Enable support for Python Plugins > TELLDUS_DESC= Enable support for Telldus >+PRECOMP_DESC= Enable usage of precompiled header to speed build time > > .include <bsd.port.options.mk> > >-USES= cmake compiler:c++11-lang iconv pkgconfig ssl >- >-# This hack is to get rid of dependency of git while building >-# the package. >-DOMOTICZ_REL= 10717 >-DOMOTICZ_TS= 1565707487 > USE_GITHUB= yes > > USE_RC_SUBR= domoticz >@@ -44,7 +43,9 @@ > > CMAKE_ARGS+= -DCMAKE_INSTALL_PREFIX=${PREFIX}/domoticz \ > -DUSE_BUILTIN_ZLIB="NO" \ >- -DUSE_STATIC_OPENZWAVE="NO" >+ -DUSE_STATIC_OPENZWAVE="NO" \ >+ -DUSE_BUILTIN_JSONCPP="NO" \ >+ -DUSE_BUILTIN_CEREAL="NO" > > .if ${PORT_OPTIONS:MSSSL} > CMAKE_ARGS+= -DUSE_OPENSSL_STATIC="YES" >@@ -64,7 +65,7 @@ > CMAKE_ARGS+= -DUSE_BUILTIN_LUA="YES" > .else > CMAKE_ARGS+= -DUSE_BUILTIN_LUA="NO" >-USES+= lua:52 >+USES+= lua:53 > .endif > > .if ${PORT_OPTIONS:MSMQTT} >@@ -90,7 +91,7 @@ > > .if ${PORT_OPTIONS:MPYTHON} > CMAKE_ARGS+= -DUSE_PYTHON="YES" >-USES+= python:3.6 >+USES+= python:3.7 > .else > CMAKE_ARGS+= -DUSE_PYTHON="NO" > .endif >@@ -99,15 +100,17 @@ > LIB_DEPENDS+= libtelldus-core.so:comms/telldus-core > .endif > >+.if ${PORT_OPTIONS:MPRECOMP} >+CMAKE_ARGS+= -DUSE_PRECOMPILED_HEADER="YES" >+.else >+CMAKE_ARGS+= -DUSE_PRECOMPILED_HEADER="NO" >+.endif >+ > post-patch: > @${REINPLACE_CMD} -e "s,\/opt,${PREFIX},g" ${WRKSRC}/CMakeLists.txt >- @${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 \"be79a17\"/" ${WRKSRC}/appversion.default >- @${REINPLACE_CMD} -e "s/\(#define APPDATE\)\(.*\)/\1 ${DOMOTICZ_TS}/" ${WRKSRC}/appversion.default >+ @${REINPLACE_CMD} -e "s,XXXPREFIXXXX,${PREFIX}/domoticz,g" ${WRKSRC}/CMakeLists.txt > > post-install: >- @${MKDIR} ${STAGEDIR}/var/db/domoticz ${STAGEDIR}/var/run/domoticz >+ ${MKDIR} ${STAGEDIR}/var/db/domoticz ${STAGEDIR}/var/run/domoticz > > .include <bsd.port.mk> >diff -u --new-file domoticz.orig/distinfo domoticz/distinfo >--- domoticz.orig/distinfo 2019-09-01 21:17:26.000000000 +0200 >+++ domoticz/distinfo 2020-03-22 21:03:19.000000000 +0100 >@@ -1,3 +1,3 @@ >-TIMESTAMP = 1565790643 >-SHA256 (domoticz-domoticz-4.10717_GH0.tar.gz) = c053a2161942529f56b748945ec297dcd67f449e68029fc886893a528891ad86 >-SIZE (domoticz-domoticz-4.10717_GH0.tar.gz) = 38159517 >+TIMESTAMP = 1584907399 >+SHA256 (domoticz-domoticz-2020.1_GH0.tar.gz) = d0c17b2082dad8a8caeed888b7d4c191975e74a2808b5d078305f5327b82442d >+SIZE (domoticz-domoticz-2020.1_GH0.tar.gz) = 19529292 >Common subdirectories: domoticz.orig/files and domoticz/files >diff -u --new-file domoticz.orig/pkg-plist domoticz/pkg-plist >--- domoticz.orig/pkg-plist 2019-09-01 21:17:26.000000000 +0200 >+++ domoticz/pkg-plist 2020-03-23 15:45:54.751441000 +0100 >@@ -19,19 +19,32 @@ > domoticz/Config/BeNext/SceneController.xml > domoticz/Config/BeNext/TagReader.xml > domoticz/Config/BeNext/TagReader500.xml >+domoticz/Config/BeNext/mydisplay.xml >+domoticz/Config/BeNext/mygate.xml >+domoticz/Config/Localization.xml >+domoticz/Config/Localization.xsd >+domoticz/Config/NotificationCCTypes.xml >+domoticz/Config/NotificationCCTypes.xsd >+domoticz/Config/SensorMultiLevelCCTypes.xml >+domoticz/Config/SensorMultiLevelCCTypes.xsd > domoticz/Config/act/lfm20.xml > domoticz/Config/act/zdm230.xml >+domoticz/Config/act/zdp100.xml > domoticz/Config/act/zdw103.xml > domoticz/Config/act/zdw232.xml > domoticz/Config/act/zir010.xml >+domoticz/Config/act/zrm230.xml >+domoticz/Config/act/zrp100.xml > domoticz/Config/act/zrp110.xml > domoticz/Config/act/zrw103.xml >+domoticz/Config/act/zrw230.xml > domoticz/Config/aeotec/dsa03202.xml > domoticz/Config/aeotec/dsa22.xml > domoticz/Config/aeotec/dsa38.xml > domoticz/Config/aeotec/dsb04100.xml > domoticz/Config/aeotec/dsb05.xml > domoticz/Config/aeotec/dsb09104.xml >+domoticz/Config/aeotec/dsb28-zweu.xml > domoticz/Config/aeotec/dsb28.xml > domoticz/Config/aeotec/dsb29.xml > domoticz/Config/aeotec/dsb45.xml >@@ -79,12 +92,20 @@ > domoticz/Config/aeotec/zw140.xml > domoticz/Config/aeotec/zw141.xml > domoticz/Config/aeotec/zw162.xml >+domoticz/Config/aeotec/zw164.xml >+domoticz/Config/aeotec/zw175.xml >+domoticz/Config/aeotec/zw187.xml >+domoticz/Config/aeotec/zw189.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/aeotec/zwa008.xml >+domoticz/Config/aeotec/zwa021.xml >+domoticz/Config/airlinemechanical/zds-ud10.xml >+domoticz/Config/alfred/DB2.xml > domoticz/Config/assa_abloy/ConexisL1.xml > domoticz/Config/assa_abloy/KeyfreeConnected-plus.xml > domoticz/Config/assa_abloy/KeyfreeConnected.xml >@@ -94,12 +115,17 @@ > domoticz/Config/assa_abloy/TouchLever.xml > domoticz/Config/assa_abloy/nexTouch.xml > domoticz/Config/august/asl-03.xml >+domoticz/Config/buffalo/hw-100v15a-zw.xml >+domoticz/Config/comfort/ucm.xml >+domoticz/Config/config-template.xml > domoticz/Config/cooper/RF9501.xml > domoticz/Config/cooper/RF9505-T.xml >+domoticz/Config/cooper/RF9505-T.xml.zip > domoticz/Config/cooper/RF9517.xml > domoticz/Config/cooper/RF9540-N.xml > domoticz/Config/cooper/RF9542-Z.xml > domoticz/Config/cooper/RFWC5.xml >+domoticz/Config/cooper/rf9534.xml > domoticz/Config/danfoss/living.xml > domoticz/Config/danfoss/rsroom.xml > domoticz/Config/danfoss/z.xml >@@ -118,6 +144,7 @@ > domoticz/Config/devolo/mt2653.xml > domoticz/Config/devolo/mt2756.xml > domoticz/Config/devolo/rs014G0159.xml >+domoticz/Config/diehlcontrols/766366.xml > domoticz/Config/dlink/dch-z110.xml > domoticz/Config/dlink/dch-z120.xml > domoticz/Config/dlink/dch-z510.xml >@@ -143,12 +170,18 @@ > domoticz/Config/duwi/05458.xml > domoticz/Config/duwi/ZWES1000.xml > domoticz/Config/duwi/ZWESJ300.xml >+domoticz/Config/duwi/zw-edan-300.xml >+domoticz/Config/duwi/zw-zdan-300.xml > domoticz/Config/duwi/zwfb.xml >+domoticz/Config/duwi/zwws.xml > domoticz/Config/ecolink/doorwindow.xml > domoticz/Config/ecolink/firefighter.xml >+domoticz/Config/ecolink/floodfreeze.xml > domoticz/Config/ecolink/motion.xml > domoticz/Config/ecolink/sensor.xml >+domoticz/Config/ecolink/tiltsensor.xml > domoticz/Config/electronicsolutions/dbmz.xml >+domoticz/Config/enblink/ss201-us-w_1308.xml > domoticz/Config/enerwave/zw15rmplus.xml > domoticz/Config/enerwave/zw15s.xml > domoticz/Config/enerwave/zw20r.xml >@@ -164,13 +197,17 @@ > domoticz/Config/everspring/ad146.xml > domoticz/Config/everspring/ad147.xml > domoticz/Config/everspring/an145.xml >+domoticz/Config/everspring/an157.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 > domoticz/Config/everspring/hac01.xml >+domoticz/Config/everspring/han01.xml >+domoticz/Config/everspring/han02-1.xml > domoticz/Config/everspring/hsp02.xml >+domoticz/Config/everspring/lptdm1u.xml > domoticz/Config/everspring/se812.xml > domoticz/Config/everspring/sf812.xml > domoticz/Config/everspring/sm103.xml >@@ -183,14 +220,17 @@ > domoticz/Config/everspring/st815.xml > domoticz/Config/everspring/tse03.xml > domoticz/Config/everspringct/hsm02.xml >+domoticz/Config/evolve/lfm-20.xml > domoticz/Config/evolve/lrm-as.xml > domoticz/Config/evolve/lsm-15.xml > domoticz/Config/evolve/ltm-5.xml >+domoticz/Config/fakro/arz.xml > domoticz/Config/fakro/zwp10.xml > domoticz/Config/fakro/zwrs.xml > domoticz/Config/fakro/zws12.xml > domoticz/Config/fakro/zws230.xml > domoticz/Config/fibaro/fgbs001.xml >+domoticz/Config/fibaro/fgbs222.xml > domoticz/Config/fibaro/fgcd001.xml > domoticz/Config/fibaro/fgd211.xml > domoticz/Config/fibaro/fgd212.xml >@@ -217,22 +257,32 @@ > domoticz/Config/fibaro/fgsd002.xml > domoticz/Config/fibaro/fgss101.xml > domoticz/Config/fibaro/fgt001.xml >+domoticz/Config/fibaro/fgwd111.xml >+domoticz/Config/fibaro/fgwds221.xml >+domoticz/Config/fibaro/fgwoe.xml > domoticz/Config/fibaro/fgwpe.xml > domoticz/Config/fibaro/fgwpfzw5.xml > domoticz/Config/fibaro/fgwpg111.xml >+domoticz/Config/fibaro/fgwr111.xml > domoticz/Config/firstalert/zcombo.xml >+domoticz/Config/followgood/swz-1002.xml > domoticz/Config/forest/fs2z5232000002.xml > domoticz/Config/fortrezz/fmi.xml >+domoticz/Config/fortrezz/gdc1_fortrezz_1501.xml > domoticz/Config/fortrezz/mimo2plus.xml > domoticz/Config/fortrezz/mimolite.xml > domoticz/Config/fortrezz/ssa2.xml > domoticz/Config/fortrezz/ssa3.xml > domoticz/Config/fortrezz/wv01.xml >+domoticz/Config/fortrezz/wwa-01aa.xml > domoticz/Config/fortrezz/wwa02.xml >+domoticz/Config/frostdale/fdn2311.xml > domoticz/Config/frostdale/fdn2nxx.xml > domoticz/Config/ge/12719-plugin-switch.xml > domoticz/Config/ge/12724-dimmer.xml >+domoticz/Config/ge/12727.xml > domoticz/Config/ge/14282-plugin-switch.xml >+domoticz/Config/ge/14284.xml > domoticz/Config/ge/14288-outlet.xml > domoticz/Config/ge/14291-switch.xml > domoticz/Config/ge/14292-toggle-switch.xml >@@ -242,6 +292,9 @@ > domoticz/Config/ge/26933-motion-dimmer.xml > domoticz/Config/ge/28167-plugin-dimmer.xml > domoticz/Config/ge/28169-plugin-switch.xml >+domoticz/Config/ge/45604.xml >+domoticz/Config/ge/46201-switch.xml >+domoticz/Config/ge/46203-dimmer.xml > domoticz/Config/ge/dimmer.xml > domoticz/Config/ge/dimmer_module.xml > domoticz/Config/ge/hinge-pin.xml >@@ -251,16 +304,23 @@ > domoticz/Config/ge/zw4001-switch.xml > domoticz/Config/ge/zw6302.xml > domoticz/Config/gocontrol/GC-TBZ48L.xml >+domoticz/Config/gr/gr-302n.xml > domoticz/Config/gr/gr105.xml > domoticz/Config/gr/gr105n.xml >+domoticz/Config/gr/grb3.xml > domoticz/Config/graber/brz1.xml >+domoticz/Config/graber/csz1.xml >+domoticz/Config/graber/rsz1.xml > domoticz/Config/graber/vcz1.xml >+domoticz/Config/greenwave/gs1110-1-gr-1.xml > domoticz/Config/greenwave/powernode1.xml > domoticz/Config/greenwave/powernode6.xml >+domoticz/Config/guardtec/gkw2000d.xml > 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-ms02-200.xml >+domoticz/Config/hank/hkzw-ms02-300.xml > domoticz/Config/hank/hkzw-rgb01.xml > domoticz/Config/hank/hkzw-so01-smartplug.xml > domoticz/Config/hank/hkzw-so03.xml >@@ -275,10 +335,15 @@ > domoticz/Config/heiman/HS1SA-Z.xml > domoticz/Config/heiman/HS1WL-Z.xml > domoticz/Config/heiman/HS2SK-Z.xml >+domoticz/Config/heiman/HS2WD-Z.xml >+domoticz/Config/heltun/he-zw-sw-5a-1.xml >+domoticz/Config/heltun/he-zw-therm-fc1.xml > domoticz/Config/heltun/he-zw-therm-fl2.xml > domoticz/Config/homeseer/ezmotionplus.xml >+domoticz/Config/homeseer/hs-ds100plus.xml > domoticz/Config/homeseer/hs-fc200plus.xml > domoticz/Config/homeseer/hs-fls100plus.xml >+domoticz/Config/homeseer/hs-fs100plus.xml > domoticz/Config/homeseer/hs-ls100plus.xml > domoticz/Config/homeseer/hs-ms100plus.xml > domoticz/Config/homeseer/hs-wd100plus.xml >@@ -288,12 +353,15 @@ > domoticz/Config/homeseer/hsm100.xml > domoticz/Config/homeseer/hsm200.xml > domoticz/Config/homeseer/ztroller.xml >+domoticz/Config/honeywell/39348-zw4008.xml > domoticz/Config/honeywell/39351-ZW3005.xml > domoticz/Config/honeywell/lynx-touch-l5100.xml >+domoticz/Config/honeywell/th6320zw2003.xml > domoticz/Config/honeywell/th8320zw1000.xml > domoticz/Config/horstmann/asrzw.xml > domoticz/Config/horstmann/hrt4zw.xml > domoticz/Config/horstmann/scsc17.xml >+domoticz/Config/horstmann/ses301.xml > domoticz/Config/horstmann/ses302.xml > domoticz/Config/horstmann/ses303.xml > domoticz/Config/horstmann/sir321.xml >@@ -301,9 +369,12 @@ > domoticz/Config/horstmann/srt323.xml > domoticz/Config/horstmann/ssr302.xml > domoticz/Config/horstmann/ssr303.xml >+domoticz/Config/icare/zw-66.xml > domoticz/Config/idlock/idlock101.xml > domoticz/Config/idlock/idlock150.xml > domoticz/Config/ingersoll/dwzwave1.xml >+domoticz/Config/inovelli/lzw30-sn.xml >+domoticz/Config/inovelli/lzw30.xml > domoticz/Config/inovelli/nzw1201.xml > domoticz/Config/inovelli/nzw30.xml > domoticz/Config/inovelli/nzw31.xml >@@ -315,18 +386,25 @@ > domoticz/Config/inovelli/simple_module.xml > domoticz/Config/intermatic/ca8900.xml > domoticz/Config/iris/rangeextender.xml >+domoticz/Config/iwatsu/ne-4ct-2p.xml >+domoticz/Config/iwatsu/ne-4ct.xml >+domoticz/Config/jasco/45601.xml > domoticz/Config/kaipule/im20.xml > domoticz/Config/kaipule/ix32.xml >+domoticz/Config/kwikset/914c.xml > domoticz/Config/kwikset/smartcode.xml > domoticz/Config/leviton/dz15s.xml > domoticz/Config/leviton/dz6hd.xml > domoticz/Config/leviton/dzpd3.xml > domoticz/Config/leviton/rzi10.xml > domoticz/Config/leviton/vrcpg.xml >+domoticz/Config/leviton/vrcs2.xml >+domoticz/Config/leviton/vrcz4.xml > domoticz/Config/leviton/vre06.xml > domoticz/Config/leviton/vrf01.xml > domoticz/Config/leviton/vri06.xml > domoticz/Config/leviton/vri10.xml >+domoticz/Config/leviton/vrs15.xml > domoticz/Config/linear/GC-TBZ48.xml > domoticz/Config/linear/LB60Z-1.xml > domoticz/Config/linear/PD300Z-2.xml >@@ -338,6 +416,8 @@ > domoticz/Config/linear/WD500Z5-1.xml > domoticz/Config/linear/WS15Z-1.xml > domoticz/Config/linear/WT00Z-1.xml >+domoticz/Config/linear/gd00z-7.xml >+domoticz/Config/linear/ngd00z.xml > domoticz/Config/logicsoft/ZHC5002.xml > domoticz/Config/logicsoft/ZHC5010.xml > domoticz/Config/manufacturer_specific.xml >@@ -347,14 +427,21 @@ > domoticz/Config/mcohome/mh8fceu.xml > domoticz/Config/mcohome/mh9co2.xml > domoticz/Config/mcohome/mhp210.xml >+domoticz/Config/mcohome/mhp220.xml >+domoticz/Config/mcohome/mhp511.xml > domoticz/Config/mcohome/mhs311.xml > domoticz/Config/mcohome/mhs312.xml > domoticz/Config/mcohome/mhs314.xml > domoticz/Config/mcohome/mhs411.xml > domoticz/Config/mcohome/mhs412.xml > domoticz/Config/mcohome/mhs513.xml >+domoticz/Config/merten/5044xx.xml >+domoticz/Config/merten/5046xx.xml >+domoticz/Config/merten/506004.xml > domoticz/Config/merten/507801.xml >+domoticz/Config/merten/508244.xml > domoticz/Config/merten/50x5xx.xml >+domoticz/Config/miyakawaelectric/me-d101.xml > domoticz/Config/nexia/db100z.xml > domoticz/Config/nodon/asp3100SmartPlug.xml > domoticz/Config/nodon/crc3100OctanRemote.xml >@@ -368,12 +455,16 @@ > domoticz/Config/oomi/ft111.xml > domoticz/Config/options.xml > domoticz/Config/options.xsd >+domoticz/Config/permundo/psc132zw.xml >+domoticz/Config/permundo/psc234zw.xml > domoticz/Config/philio/pad02.xml > domoticz/Config/philio/pan03.xml > domoticz/Config/philio/pan04.xml >+domoticz/Config/philio/pan05.xml > domoticz/Config/philio/pan06.xml > domoticz/Config/philio/pan07.xml > domoticz/Config/philio/pan08.xml >+domoticz/Config/philio/pan11-1.xml > domoticz/Config/philio/pan11.xml > domoticz/Config/philio/pan16.xml > domoticz/Config/philio/phpab01.xml >@@ -402,9 +493,13 @@ > domoticz/Config/popp/123658.xml > domoticz/Config/popp/700045.xml > domoticz/Config/popp/700168.xml >+domoticz/Config/popp/700397.xml >+domoticz/Config/popp/700793.xml >+domoticz/Config/popp/dwt.xml > domoticz/Config/popp/smoke-detector.xml > domoticz/Config/popp/solar-siren.xml > domoticz/Config/popp/zweather.xml >+domoticz/Config/prowell/zw-702.xml > domoticz/Config/qees/reto-dimmer-plus.xml > domoticz/Config/qees/reto-plugin-switch.xml > domoticz/Config/qubino/ZMNHAA2.xml >@@ -415,6 +510,7 @@ > domoticz/Config/qubino/ZMNHCDx.xml > domoticz/Config/qubino/ZMNHDA2.xml > domoticz/Config/qubino/ZMNHDDx.xml >+domoticz/Config/qubino/ZMNHHDx.xml > domoticz/Config/qubino/ZMNHIA2.xml > domoticz/Config/qubino/ZMNHIDxS1.xml > domoticz/Config/qubino/ZMNHIDxS2.xml >@@ -425,6 +521,7 @@ > domoticz/Config/qubino/ZMNHLDx.xml > domoticz/Config/qubino/ZMNHNDx.xml > domoticz/Config/qubino/ZMNHODx.xml >+domoticz/Config/qubino/ZMNHQDx.xml > domoticz/Config/qubino/ZMNHSDx.xml > domoticz/Config/qubino/ZMNHTDx.xml > domoticz/Config/qubino/ZMNHTDxS3.xml >@@ -434,25 +531,34 @@ > domoticz/Config/qubino/ZMNHXDx.xml > domoticz/Config/qubino/ZMNHYDx.xml > domoticz/Config/qubino/ZMNHZDx.xml >+domoticz/Config/qubino/ZMNKIDx.xml >+domoticz/Config/quby/qb2.xml > domoticz/Config/rcs/em52-zw.xml > domoticz/Config/rcs/pm12-zw.xml > domoticz/Config/rcs/therm0005.xml > domoticz/Config/rcs/therm0007.xml > domoticz/Config/rcs/therm0009.xml >+domoticz/Config/remotec/bw8120eu.xml > domoticz/Config/remotec/zfm-80.xml >+domoticz/Config/remotec/zrc-100eu.xml > domoticz/Config/remotec/zrc-90.xml > domoticz/Config/remotec/zts-110.xml > domoticz/Config/remotec/zts-500.xml > domoticz/Config/remotec/zurc.xml > domoticz/Config/remotec/zxt-120.xml >+domoticz/Config/remotec/zxt-310.xml > domoticz/Config/remotec/zxt-600.xml > domoticz/Config/schlage/BE468.xml >+domoticz/Config/schlage/BE468ZP.xml > domoticz/Config/schlage/BE469.xml > domoticz/Config/schlage/BE469ZP.xml >+domoticz/Config/schlage/fe599.xml >+domoticz/Config/schlagelink/41.xml > domoticz/Config/schlagelink/itemp.xml > domoticz/Config/schlagelink/minikeypad.xml > domoticz/Config/sensative/strips.xml > domoticz/Config/sensative/stripscomfort.xml >+domoticz/Config/sercomm/sw-clp01-eu.xml > domoticz/Config/shenzen_neo/ls01ch.xml > domoticz/Config/shenzen_neo/ls02ch.xml > domoticz/Config/shenzen_neo/nas-ab01z.xml >@@ -465,39 +571,63 @@ > domoticz/Config/shenzen_neo/nas-ws02z.xml > domoticz/Config/simon/10002034-13X.xml > domoticz/Config/simon/10002041-13X.xml >+domoticz/Config/smartthings/pgc401m.xml >+domoticz/Config/smartthings/sth-eth200.xml >+domoticz/Config/somfy/1811265_ZRTSI.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/sunricher/srzv9001k8.xml >+domoticz/Config/sunricher/srzv9001t4dimeu.xml >+domoticz/Config/sunricher/srzv9003t4rgbweu.xml >+domoticz/Config/sunricher/srzv9101sachpeu.xml >+domoticz/Config/sunricher/zv9101.xml > domoticz/Config/swiid/swiidinter.xml > domoticz/Config/swiid/swiidplug.xml > domoticz/Config/telldus/TZWP102.xml > domoticz/Config/telldus/tzdw100.xml > domoticz/Config/telldus/tzwp100.xml >+domoticz/Config/there/800z.xml > domoticz/Config/thermofloor/heatit021.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 >-domoticz/Config/tronika/zsc01d.xml >+domoticz/Config/vera/vera2.xml >+domoticz/Config/vision/1701.xml >+domoticz/Config/vision/brg1-433.xml > domoticz/Config/vision/zd2102.xml > domoticz/Config/vision/zd2105us5.xml > domoticz/Config/vision/zd2201.xml > domoticz/Config/vision/zd2301.xml > domoticz/Config/vision/zf5201.xml > domoticz/Config/vision/zg8101.xml >+domoticz/Config/vision/zl7101us.xml >+domoticz/Config/vision/zl7201us.xml > domoticz/Config/vision/zl7261.xml > domoticz/Config/vision/zl7431.xml >+domoticz/Config/vision/zl7432us.xml > domoticz/Config/vision/zm1601eu.xml > domoticz/Config/vision/zm1601eu5.xml > domoticz/Config/vision/zm1602eu.xml > domoticz/Config/vision/zm1602eu5.xml > domoticz/Config/vision/zp3102.xml > domoticz/Config/vision/zp3111.xml >+domoticz/Config/vision/zr1202us.xml > domoticz/Config/vision/zs5101eu.xml >-domoticz/Config/vitrum/vitrumBS.xml >+domoticz/Config/vision/zs610eu.xml >+domoticz/Config/vision/zu1401jp.xml >+domoticz/Config/vitrum/vitrumI-Dimmer.xml >+domoticz/Config/vitrum/vitrumI-Switch.xml >+domoticz/Config/vitrum/vitrumII-Dimmer.xml >+domoticz/Config/vitrum/vitrumII-RollerBlind.xml >+domoticz/Config/vitrum/vitrumII-Switch.xml >+domoticz/Config/vitrum/vitrumIII-Dimmer.xml >+domoticz/Config/vitrum/vitrumIII-Switch.xml >+domoticz/Config/vitrum/vitrumIV-Switch.xml >+domoticz/Config/vitrum/vitrumVI-Switch.xml > domoticz/Config/waynedalton/WDTC-20.xml > domoticz/Config/wenzhou/sm103.xml > domoticz/Config/wenzhou/tsp01.xml >@@ -513,6 +643,7 @@ > domoticz/Config/wenzhou/tz74.xml > domoticz/Config/wenzhou/tz79.xml > domoticz/Config/wenzhou/tz88.xml >+domoticz/Config/widom/DRY.xml > domoticz/Config/widom/UBS104.xml > domoticz/Config/widom/UME304C_S.xml > domoticz/Config/widom/WDS.xml >@@ -528,19 +659,23 @@ > domoticz/Config/zooz/zen20.xml > domoticz/Config/zooz/zen20v2.xml > domoticz/Config/zooz/zen21.xml >+domoticz/Config/zooz/zen21v2.xml > domoticz/Config/zooz/zen22.xml > domoticz/Config/zooz/zen22v2.xml > domoticz/Config/zooz/zen23.xml > domoticz/Config/zooz/zen24.xml >+domoticz/Config/zooz/zen25.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/zse29.xml > domoticz/Config/zooz/zse30.xml > domoticz/Config/zooz/zse33.xml > domoticz/Config/zooz/zse40.xml >+domoticz/Config/zwave.me/004001.xml > domoticz/Config/zwave.me/ZME_05431.xml > domoticz/Config/zwave.me/ZME_05461.xml > domoticz/Config/zwave.me/ZME_06433.xml >@@ -555,8 +690,10 @@ > domoticz/Config/zwave.me/iTemp.xml > domoticz/Config/zwave.me/kfob.xml > domoticz/Config/zwave.me/popp_kfob-c.xml >+domoticz/Config/zwave.me/zme_raz5.xml > domoticz/Config/zwave.me/zweather.xml > domoticz/Config/zwcfg.xsd >+domoticz/Config/zwp/PA-100.xml > domoticz/Config/zwp/WD-100.xml > domoticz/Config/zwscene.xsd > domoticz/History.txt >@@ -569,18 +706,21 @@ > domoticz/dzVents/documentation/history.md > domoticz/dzVents/documentation/pandoc.md > domoticz/dzVents/runtime/Camera.lua >+domoticz/dzVents/runtime/CustomEvent.lua > domoticz/dzVents/runtime/Device.lua > domoticz/dzVents/runtime/Domoticz.lua > domoticz/dzVents/runtime/EventHelpers.lua > domoticz/dzVents/runtime/HTTPResponse.lua > domoticz/dzVents/runtime/HistoricalStorage.lua > domoticz/dzVents/runtime/Security.lua >+domoticz/dzVents/runtime/SystemEvent.lua > domoticz/dzVents/runtime/Time.lua > domoticz/dzVents/runtime/TimedCommand.lua > domoticz/dzVents/runtime/TimedCommandOptions.lua > domoticz/dzVents/runtime/Timer.lua > domoticz/dzVents/runtime/Utils.lua > domoticz/dzVents/runtime/Variable.lua >+domoticz/dzVents/runtime/constants.lua > domoticz/dzVents/runtime/device-adapters/Adapters.lua > domoticz/dzVents/runtime/device-adapters/airquality_device.lua > domoticz/dzVents/runtime/device-adapters/alert_device.lua >@@ -611,6 +751,7 @@ > domoticz/dzVents/runtime/device-adapters/scaleweight_device.lua > domoticz/dzVents/runtime/device-adapters/scene_device.lua > domoticz/dzVents/runtime/device-adapters/security_device.lua >+domoticz/dzVents/runtime/device-adapters/smoke_detector_device.lua > domoticz/dzVents/runtime/device-adapters/soilmoisture_device.lua > domoticz/dzVents/runtime/device-adapters/solar_radiation_device.lua > domoticz/dzVents/runtime/device-adapters/soundlevel_device.lua >@@ -628,8 +769,9 @@ > domoticz/dzVents/runtime/device-adapters/wind_device.lua > domoticz/dzVents/runtime/device-adapters/youless_device.lua > domoticz/dzVents/runtime/device-adapters/zone_heating_device.lua >-domoticz/dzVents/runtime/device-adapters/zwave_thermostat_mode_device.lua >+domoticz/dzVents/runtime/device-adapters/zwave_mode_type_device.lua > domoticz/dzVents/runtime/dzVents.lua >+domoticz/dzVents/runtime/eventItemIdentifier.lua > domoticz/dzVents/runtime/integration-tests/File.lua > domoticz/dzVents/runtime/integration-tests/IconScript.lua > domoticz/dzVents/runtime/integration-tests/README.md >@@ -638,12 +780,18 @@ > domoticz/dzVents/runtime/integration-tests/global_data.lua > domoticz/dzVents/runtime/integration-tests/httpResponseScript.lua > domoticz/dzVents/runtime/integration-tests/package.json >+domoticz/dzVents/runtime/integration-tests/quiet.lua > domoticz/dzVents/runtime/integration-tests/scCancelledScene.lua > domoticz/dzVents/runtime/integration-tests/scScene.lua > domoticz/dzVents/runtime/integration-tests/scriptContactDoorLockInvertedSwitch.lua > domoticz/dzVents/runtime/integration-tests/scriptDelayedVariableScene.lua > domoticz/dzVents/runtime/integration-tests/scriptSelectorSwitch.lua >+domoticz/dzVents/runtime/integration-tests/scriptTestCustomAndSystemEventsScript.lua > domoticz/dzVents/runtime/integration-tests/scriptTestEventState.lua >+domoticz/dzVents/runtime/integration-tests/scriptTestProtect.lua >+domoticz/dzVents/runtime/integration-tests/scriptTestRename.lua >+domoticz/dzVents/runtime/integration-tests/scriptTestUpdatedDocumentation.lua >+domoticz/dzVents/runtime/integration-tests/scriptTestWildcards.lua > domoticz/dzVents/runtime/integration-tests/secArmedAway.lua > domoticz/dzVents/runtime/integration-tests/server.js > domoticz/dzVents/runtime/integration-tests/silent.lua >@@ -655,6 +803,7 @@ > domoticz/dzVents/runtime/integration-tests/testEventState.lua > domoticz/dzVents/runtime/integration-tests/testIntegration.lua > domoticz/dzVents/runtime/integration-tests/testSelectorSwitch.lua >+domoticz/dzVents/runtime/integration-tests/testSystemAndCustomEvents.lua > domoticz/dzVents/runtime/integration-tests/varCancelled.lua > domoticz/dzVents/runtime/integration-tests/varString.lua > domoticz/dzVents/runtime/integration-tests/vdCancelledRepeatSwitch.lua >@@ -710,6 +859,7 @@ > domoticz/dzVents/runtime/tests/scripts/script_variable3.lua > domoticz/dzVents/runtime/tests/scripts/script_wildcard1.lua > domoticz/dzVents/runtime/tests/scripts/script_wildcard2.lua >+domoticz/dzVents/runtime/tests/scripts/script_wildcard3.lua > domoticz/dzVents/runtime/tests/scripts/script_with_active_method.lua > domoticz/dzVents/runtime/tests/scripts/script_with_time-contrained_device.lua > domoticz/dzVents/runtime/tests/testDevice.lua >@@ -717,6 +867,7 @@ > domoticz/dzVents/runtime/tests/testEventHelpers.lua > domoticz/dzVents/runtime/tests/testEventHelpersStorage.lua > domoticz/dzVents/runtime/tests/testHTTPResponse.lua >+domoticz/dzVents/runtime/tests/testLodash.lua > domoticz/dzVents/runtime/tests/testScriptdzVentsDispatching.lua > domoticz/dzVents/runtime/tests/testTime.lua > domoticz/dzVents/runtime/tests/testTimedCommand.lua >@@ -746,6 +897,7 @@ > domoticz/scripts/domoticz.conf > domoticz/scripts/download_update.sh > domoticz/scripts/dzVents/data/README.md >+domoticz/scripts/dzVents/dumps/.gitignore > domoticz/scripts/dzVents/examples/calc temp delta.lua > domoticz/scripts/dzVents/examples/check battery levels.lua > domoticz/scripts/dzVents/examples/check dead devices by desc.lua >@@ -776,10 +928,16 @@ > domoticz/scripts/dzVents/examples/templates/variable.lua > domoticz/scripts/dzVents/generated_scripts/README.md > domoticz/scripts/dzVents/scripts/README.md >+domoticz/scripts/install.sh > domoticz/scripts/logrotate/domoticz > domoticz/scripts/lua/JSON.lua >+domoticz/scripts/lua/XmlParser.lua > domoticz/scripts/lua/script_device_demo.lua > domoticz/scripts/lua/script_time_demo.lua >+domoticz/scripts/lua/xml2lua.lua >+domoticz/scripts/lua/xmlhandler/dom.lua >+domoticz/scripts/lua/xmlhandler/print.lua >+domoticz/scripts/lua/xmlhandler/tree.lua > domoticz/scripts/lua_parsers/example.lua > domoticz/scripts/lua_parsers/example_json.lua > domoticz/scripts/lua_parsers/example_owm.lua >@@ -795,6 +953,7 @@ > domoticz/scripts/templates/All.Python > domoticz/scripts/templates/All.dzVents > domoticz/scripts/templates/Bare.dzVents >+domoticz/scripts/templates/CustomEvents.dzVents > domoticz/scripts/templates/Device.Lua > domoticz/scripts/templates/Device.dzVents > domoticz/scripts/templates/Group.dzVents >@@ -802,8 +961,9 @@ > domoticz/scripts/templates/Scene.dzVents > domoticz/scripts/templates/Security.Lua > domoticz/scripts/templates/Security.dzVents >+domoticz/scripts/templates/System.dzVents > domoticz/scripts/templates/Time.Lua >-domoticz/scripts/templates/Timer.dzvents >+domoticz/scripts/templates/Timer.dzVents > domoticz/scripts/templates/UserVariable.Lua > domoticz/scripts/templates/UserVariable.dzVents > domoticz/scripts/templates/global_data.dzVents >@@ -833,13 +993,13 @@ > domoticz/www/app/OfflineController.js > domoticz/www/app/RFXComFirmwareController.js > domoticz/www/app/RestoreDatabaseController.js >-domoticz/www/app/RoomplanController.js > domoticz/www/app/ScenesController.js > domoticz/www/app/SetupController.js > domoticz/www/app/TemperatureController.js > domoticz/www/app/TemperatureCustomLogController.js > domoticz/www/app/TimerplanController.js > domoticz/www/app/UpdateController.js >+domoticz/www/app/UpdateController2.js > domoticz/www/app/UserVariablesController.js > domoticz/www/app/UsersController.js > domoticz/www/app/UtilityController.js >@@ -847,6 +1007,7 @@ > domoticz/www/app/ZWaveTopologyController.js > domoticz/www/app/app.constants.js > domoticz/www/app/app.js >+domoticz/www/app/app.notifications.js > domoticz/www/app/app.permissions.js > domoticz/www/app/app.routes.js > domoticz/www/app/components/rgbw-picker/RgbwPicker.html >@@ -886,6 +1047,7 @@ > domoticz/www/app/hardware/setup/WakeOnLan.js > domoticz/www/app/hardware/setup/ZWave.html > domoticz/www/app/hardware/setup/ZWave.js >+domoticz/www/app/livesocket.js > domoticz/www/app/log/DeviceLog.html > domoticz/www/app/log/DeviceLog.js > domoticz/www/app/log/GraphLog.js >@@ -904,6 +1066,8 @@ > domoticz/www/app/notifications/DeviceNotifications.js > domoticz/www/app/notifications/constants.js > domoticz/www/app/notifications/factories.js >+domoticz/www/app/plans/RoomPlans.html >+domoticz/www/app/plans/RoomPlans.js > domoticz/www/app/report/CounterReport.html > domoticz/www/app/report/CounterReport.js > domoticz/www/app/report/DeviceReport.html >@@ -1096,10 +1260,15 @@ > domoticz/www/images/RGB48_Off.png > domoticz/www/images/RGB48_On.png > domoticz/www/images/RGB48_Sel.png >+domoticz/www/images/Rain48_Off.png >+domoticz/www/images/Rain48_On.png > domoticz/www/images/Speaker.png > domoticz/www/images/Speaker48_Off.png > domoticz/www/images/Speaker48_On.png > domoticz/www/images/Stop48.png >+domoticz/www/images/Sun.png >+domoticz/www/images/Sun48_Off.png >+domoticz/www/images/Sun48_On.png > domoticz/www/images/TV.png > domoticz/www/images/TV48_Off.png > domoticz/www/images/TV48_On.png >@@ -1200,6 +1369,7 @@ > domoticz/www/images/evohome/HeatingOff.png > domoticz/www/images/evohome/HeatingOffInv.png > domoticz/www/images/evohome/Off.png >+domoticz/www/images/evohome/Offline.png > domoticz/www/images/evohome/On.png > domoticz/www/images/evohome/OpenWindow.png > domoticz/www/images/evohome/PermanentOverride.png >@@ -1233,6 +1403,7 @@ > domoticz/www/images/leaf48.png > domoticz/www/images/lightbulb.png > domoticz/www/images/lightbulboff.png >+domoticz/www/images/location.png > domoticz/www/images/lock_closed.png > domoticz/www/images/lock_open.png > domoticz/www/images/log.png >@@ -1285,7 +1456,6 @@ > domoticz/www/images/radiation.png > domoticz/www/images/radiation48.png > domoticz/www/images/rain.png >-domoticz/www/images/rain48.png > domoticz/www/images/rainraining.png > domoticz/www/images/remote.png > domoticz/www/images/remote48.png >@@ -1430,13 +1600,13 @@ > 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/base64.min.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/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 >@@ -1446,23 +1616,15 @@ > domoticz/www/js/export-csv.js.gz > domoticz/www/js/highcharts-ng.min.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/dependency-wheel.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/sankey.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-3.4.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.ddslick.min.js.gz >@@ -1477,21 +1639,9 @@ > domoticz/www/js/ng-grid.min.js.gz > domoticz/www/js/ngDraggable.js.gz > domoticz/www/js/ngload.min.js.gz >-domoticz/www/js/noty/jquery.noty.js.gz >-domoticz/www/js/noty/layouts/bottom.js.gz >-domoticz/www/js/noty/layouts/bottomCenter.js.gz >-domoticz/www/js/noty/layouts/bottomLeft.js.gz >-domoticz/www/js/noty/layouts/bottomRight.js.gz >-domoticz/www/js/noty/layouts/center.js.gz >-domoticz/www/js/noty/layouts/centerLeft.js.gz >-domoticz/www/js/noty/layouts/centerRight.js.gz >-domoticz/www/js/noty/layouts/inline.js.gz >-domoticz/www/js/noty/layouts/top.js.gz >-domoticz/www/js/noty/layouts/topCenter.js.gz >-domoticz/www/js/noty/layouts/topLeft.js.gz >-domoticz/www/js/noty/layouts/topRight.js.gz >-domoticz/www/js/noty/promise.js.gz >-domoticz/www/js/noty/themes/default.js.gz >+domoticz/www/js/noty/noty.css >+domoticz/www/js/noty/noty.min.js.gz >+domoticz/www/js/noty/relax.css > domoticz/www/js/require.js.gz > domoticz/www/js/respond.min.js.gz > domoticz/www/js/ui-bootstrap.min.js.gz >@@ -1604,7 +1754,6 @@ > domoticz/www/views/offline.html > domoticz/www/views/restoredatabase.html > domoticz/www/views/rfxcomfirmware.html >-domoticz/www/views/roomplan.html > domoticz/www/views/scenes.html > domoticz/www/views/setup.html > domoticz/www/views/temperature.html >@@ -1613,11 +1762,11 @@ > domoticz/www/views/timerplan.html > domoticz/www/views/timers.html > domoticz/www/views/update.html >+domoticz/www/views/update2.html > domoticz/www/views/users.html > domoticz/www/views/uservariables.html > domoticz/www/views/utility.html > domoticz/www/views/weather.html > domoticz/www/views/weather_widget.html >-domoticz/www/zwavetopology.html > @dir(domoticz,domoticz) /var/db/domoticz > @dir(domoticz,domoticz) /var/run/domoticz
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
Flags:
kiwi
:
maintainer-approval+
Actions:
View
|
Diff
Attachments on
bug 245007
:
212644
| 212669