├── src ├── app │ ├── widgets │ │ ├── button │ │ │ └── button.scss │ │ ├── knob │ │ │ ├── knob.scss │ │ │ └── knob.tpl.html │ │ ├── label │ │ │ ├── label.scss │ │ │ └── label.tpl.html │ │ ├── dummy │ │ │ └── dummy.scss │ │ ├── image │ │ │ ├── image.scss │ │ │ └── image.tpl.html │ │ ├── switch │ │ │ └── switch.scss │ │ ├── clock │ │ │ └── clock.scss │ │ ├── template │ │ │ └── template.scss │ │ ├── frame │ │ │ ├── frame.scss │ │ │ └── frame.tpl.html │ │ ├── chart │ │ │ ├── chart.scss │ │ │ └── chart.tpl.html │ │ ├── slider │ │ │ └── slider.tpl.html │ │ └── timeline │ │ │ └── timeline.tpl.html │ └── services │ │ └── services.js ├── vendor │ └── global.js ├── tile.png ├── favicon.ico ├── assets │ ├── icons │ │ ├── eclipse-smarthome-classic │ │ │ ├── none.svg │ │ │ ├── bath.png │ │ │ ├── door.png │ │ │ ├── fan.png │ │ │ ├── fire.png │ │ │ ├── flow.png │ │ │ ├── gas.png │ │ │ ├── line.png │ │ │ ├── lock.png │ │ │ ├── moon.png │ │ │ ├── none.png │ │ │ ├── oil.png │ │ │ ├── pie.png │ │ │ ├── pump.png │ │ │ ├── rain.png │ │ │ ├── rgb.png │ │ │ ├── sofa.png │ │ │ ├── sun.png │ │ │ ├── text.png │ │ │ ├── wind.png │ │ │ ├── zoom.png │ │ │ ├── alarm.png │ │ │ ├── attic.png │ │ │ ├── baby_1.png │ │ │ ├── baby_2.png │ │ │ ├── baby_3.png │ │ │ ├── baby_4.png │ │ │ ├── baby_5.png │ │ │ ├── baby_6.png │ │ │ ├── blinds.png │ │ │ ├── boy_1.png │ │ │ ├── boy_2.png │ │ │ ├── boy_3.png │ │ │ ├── boy_4.png │ │ │ ├── boy_5.png │ │ │ ├── boy_6.png │ │ │ ├── camera.png │ │ │ ├── cellar.png │ │ │ ├── chart.png │ │ │ ├── cinema.png │ │ │ ├── clock.png │ │ │ ├── dryer.png │ │ │ ├── energy.png │ │ │ ├── error.png │ │ │ ├── faucet.png │ │ │ ├── garage.png │ │ │ ├── garden.png │ │ │ ├── girl_1.png │ │ │ ├── girl_2.png │ │ │ ├── girl_3.png │ │ │ ├── girl_4.png │ │ │ ├── girl_5.png │ │ │ ├── girl_6.png │ │ │ ├── grass.png │ │ │ ├── group.png │ │ │ ├── house.png │ │ │ ├── light.png │ │ │ ├── man_1.png │ │ │ ├── man_2.png │ │ │ ├── man_3.png │ │ │ ├── man_4.png │ │ │ ├── man_5.png │ │ │ ├── man_6.png │ │ │ ├── motion.png │ │ │ ├── niveau.png │ │ │ ├── office.png │ │ │ ├── pantry.png │ │ │ ├── party.png │ │ │ ├── player.png │ │ │ ├── shield.png │ │ │ ├── signal.png │ │ │ ├── siren.png │ │ │ ├── slider.png │ │ │ ├── smiley.png │ │ │ ├── smoke.png │ │ │ ├── status.png │ │ │ ├── sunset.png │ │ │ ├── switch.png │ │ │ ├── toilet.png │ │ │ ├── video.png │ │ │ ├── water.png │ │ │ ├── window.png │ │ │ ├── battery-0.png │ │ │ ├── battery.png │ │ │ ├── bedroom.png │ │ │ ├── blinds-0.png │ │ │ ├── blinds-10.png │ │ │ ├── blinds-20.png │ │ │ ├── blinds-30.png │ │ │ ├── blinds-40.png │ │ │ ├── blinds-50.png │ │ │ ├── blinds-60.png │ │ │ ├── blinds-70.png │ │ │ ├── blinds-80.png │ │ │ ├── blinds-90.png │ │ │ ├── bluetooth.png │ │ │ ├── calendar.png │ │ │ ├── cistern-0.png │ │ │ ├── cistern.png │ │ │ ├── climate.png │ │ │ ├── clock-on.png │ │ │ ├── contact.png │ │ │ ├── corridor.png │ │ │ ├── door-open.png │ │ │ ├── dryer-0.png │ │ │ ├── dryer-1.png │ │ │ ├── dryer-2.png │ │ │ ├── dryer-3.png │ │ │ ├── dryer-4.png │ │ │ ├── dryer-5.png │ │ │ ├── fan_box.png │ │ │ ├── favicon.ico │ │ │ ├── fire-off.png │ │ │ ├── fire-on.png │ │ │ ├── flowpipe.png │ │ │ ├── frontdoor.png │ │ │ ├── heating-0.png │ │ │ ├── heating.png │ │ │ ├── humidity.png │ │ │ ├── incline.png │ │ │ ├── keyring.png │ │ │ ├── kitchen.png │ │ │ ├── light-off.png │ │ │ ├── light-on.png │ │ │ ├── lock-open.png │ │ │ ├── network.png │ │ │ ├── piggybank.png │ │ │ ├── present.png │ │ │ ├── pressure.png │ │ │ ├── radiator.png │ │ │ ├── receiver.png │ │ │ ├── recorder.png │ │ │ ├── settings.png │ │ │ ├── sewerage.png │ │ │ ├── shield-0.png │ │ │ ├── shield-1.png │ │ │ ├── signal-0.png │ │ │ ├── signal-1.png │ │ │ ├── signal-2.png │ │ │ ├── signal-3.png │ │ │ ├── signal-4.png │ │ │ ├── siren-off.png │ │ │ ├── siren-on.png │ │ │ ├── slider-0.png │ │ │ ├── slider-10.png │ │ │ ├── slider-20.png │ │ │ ├── slider-30.png │ │ │ ├── slider-40.png │ │ │ ├── slider-50.png │ │ │ ├── slider-60.png │ │ │ ├── slider-70.png │ │ │ ├── slider-80.png │ │ │ ├── slider-90.png │ │ │ ├── softener.png │ │ │ ├── suitcase.png │ │ │ ├── sunrise.png │ │ │ ├── switch-on.png │ │ │ ├── terrace.png │ │ │ ├── vacation.png │ │ │ ├── wardrobe.png │ │ │ ├── woman_1.png │ │ │ ├── woman_2.png │ │ │ ├── woman_3.png │ │ │ ├── woman_4.png │ │ │ ├── woman_5.png │ │ │ ├── woman_6.png │ │ │ ├── battery-10.png │ │ │ ├── battery-100.png │ │ │ ├── battery-20.png │ │ │ ├── battery-30.png │ │ │ ├── battery-40.png │ │ │ ├── battery-50.png │ │ │ ├── battery-60.png │ │ │ ├── battery-70.png │ │ │ ├── battery-80.png │ │ │ ├── battery-90.png │ │ │ ├── battery-off.png │ │ │ ├── battery-on.png │ │ │ ├── bedroom_red.png │ │ │ ├── blinds-100.png │ │ │ ├── cistern-10.png │ │ │ ├── cistern-100.png │ │ │ ├── cistern-20.png │ │ │ ├── cistern-30.png │ │ │ ├── cistern-40.png │ │ │ ├── cistern-50.png │ │ │ ├── cistern-60.png │ │ │ ├── cistern-70.png │ │ │ ├── cistern-80.png │ │ │ ├── cistern-90.png │ │ │ ├── climate-on.png │ │ │ ├── colorlight.png │ │ │ ├── colorpicker.png │ │ │ ├── colorwheel.png │ │ │ ├── door-closed.png │ │ │ ├── fan_ceiling.png │ │ │ ├── firstfloor.png │ │ │ ├── garagedoor.png │ │ │ ├── greenhouse.png │ │ │ ├── groundfloor.png │ │ │ ├── heating-100.png │ │ │ ├── heating-20.png │ │ │ ├── heating-40.png │ │ │ ├── heating-60.png │ │ │ ├── heating-80.png │ │ │ ├── heating-off.png │ │ │ ├── heating-on.png │ │ │ ├── humidity-0.png │ │ │ ├── humidity-10.png │ │ │ ├── humidity-20.png │ │ │ ├── humidity-30.png │ │ │ ├── humidity-40.png │ │ │ ├── humidity-50.png │ │ │ ├── humidity-60.png │ │ │ ├── humidity-70.png │ │ │ ├── humidity-80.png │ │ │ ├── humidity-90.png │ │ │ ├── lock-closed.png │ │ │ ├── microphone.png │ │ │ ├── movecontrol.png │ │ │ ├── network-off.png │ │ │ ├── network-on.png │ │ │ ├── parents-off.png │ │ │ ├── parents_1_1.png │ │ │ ├── parents_1_2.png │ │ │ ├── parents_1_3.png │ │ │ ├── parents_1_4.png │ │ │ ├── parents_1_5.png │ │ │ ├── parents_1_6.png │ │ │ ├── parents_2_1.png │ │ │ ├── parents_2_2.png │ │ │ ├── parents_2_3.png │ │ │ ├── parents_2_4.png │ │ │ ├── parents_2_5.png │ │ │ ├── parents_2_6.png │ │ │ ├── parents_3_1.png │ │ │ ├── parents_3_2.png │ │ │ ├── parents_3_3.png │ │ │ ├── parents_3_4.png │ │ │ ├── parents_3_5.png │ │ │ ├── parents_3_6.png │ │ │ ├── parents_4_1.png │ │ │ ├── parents_4_2.png │ │ │ ├── parents_4_3.png │ │ │ ├── parents_4_4.png │ │ │ ├── parents_4_5.png │ │ │ ├── parents_4_6.png │ │ │ ├── parents_5_1.png │ │ │ ├── parents_5_2.png │ │ │ ├── parents_5_3.png │ │ │ ├── parents_5_4.png │ │ │ ├── parents_5_5.png │ │ │ ├── parents_5_6.png │ │ │ ├── parents_6_1.png │ │ │ ├── parents_6_2.png │ │ │ ├── parents_6_3.png │ │ │ ├── parents_6_4.png │ │ │ ├── parents_6_5.png │ │ │ ├── parents_6_6.png │ │ │ ├── poweroutlet.png │ │ │ ├── present-off.png │ │ │ ├── receiver-on.png │ │ │ ├── returnpipe.png │ │ │ ├── sewerage-0.png │ │ │ ├── sewerage-10.png │ │ │ ├── sewerage-20.png │ │ │ ├── sewerage-30.png │ │ │ ├── sewerage-40.png │ │ │ ├── sewerage-50.png │ │ │ ├── sewerage-60.png │ │ │ ├── sewerage-70.png │ │ │ ├── sewerage-80.png │ │ │ ├── sewerage-90.png │ │ │ ├── slider-100.png │ │ │ ├── solarplant.png │ │ │ ├── soundvolume.png │ │ │ ├── sun_clouds.png │ │ │ ├── switch-off.png │ │ │ ├── television.png │ │ │ ├── temperature.png │ │ │ ├── wallswitch.png │ │ │ ├── window-ajar.png │ │ │ ├── window-open.png │ │ │ ├── bedroom_blue.png │ │ │ ├── bedroom_orange.png │ │ │ ├── carbondioxide.png │ │ │ ├── cinemascreen-0.png │ │ │ ├── cinemascreen.png │ │ │ ├── contact-ajar.png │ │ │ ├── contact-closed.png │ │ │ ├── contact-open.png │ │ │ ├── dimmablelight.png │ │ │ ├── frontdoor-open.png │ │ │ ├── garagedoor-0.png │ │ │ ├── garagedoor-10.png │ │ │ ├── garagedoor-100.png │ │ │ ├── garagedoor-20.png │ │ │ ├── garagedoor-30.png │ │ │ ├── garagedoor-40.png │ │ │ ├── garagedoor-50.png │ │ │ ├── garagedoor-60.png │ │ │ ├── garagedoor-70.png │ │ │ ├── garagedoor-80.png │ │ │ ├── garagedoor-90.png │ │ │ ├── humidity-100.png │ │ │ ├── line-decline.png │ │ │ ├── line-incline.png │ │ │ ├── outdoorlight.png │ │ │ ├── poweroutlet-on.png │ │ │ ├── poweroutlet_au.png │ │ │ ├── poweroutlet_eu.png │ │ │ ├── poweroutlet_uk.png │ │ │ ├── poweroutlet_us.png │ │ │ ├── projector_benq.png │ │ │ ├── receiver-off.png │ │ │ ├── rollershutter.png │ │ │ ├── sewerage-100.png │ │ │ ├── soundvolume-0.png │ │ │ ├── soundvolume-33.png │ │ │ ├── soundvolume-66.png │ │ │ ├── television-off.png │ │ │ ├── television-on.png │ │ │ ├── wallswitch-off.png │ │ │ ├── wallswitch-on.png │ │ │ ├── washingmachine.png │ │ │ ├── window-closed.png │ │ │ ├── boiler_viessmann.png │ │ │ ├── cinemascreen-10.png │ │ │ ├── cinemascreen-100.png │ │ │ ├── cinemascreen-20.png │ │ │ ├── cinemascreen-30.png │ │ │ ├── cinemascreen-40.png │ │ │ ├── cinemascreen-50.png │ │ │ ├── cinemascreen-60.png │ │ │ ├── cinemascreen-70.png │ │ │ ├── cinemascreen-80.png │ │ │ ├── cinemascreen-90.png │ │ │ ├── dimmablelight-0.png │ │ │ ├── dimmablelight-10.png │ │ │ ├── dimmablelight-20.png │ │ │ ├── dimmablelight-30.png │ │ │ ├── dimmablelight-40.png │ │ │ ├── dimmablelight-50.png │ │ │ ├── dimmablelight-60.png │ │ │ ├── dimmablelight-70.png │ │ │ ├── dimmablelight-80.png │ │ │ ├── dimmablelight-90.png │ │ │ ├── frontdoor-closed.png │ │ │ ├── garage_detached.png │ │ │ ├── garagedoor-ajar.png │ │ │ ├── garagedoor-open.png │ │ │ ├── line-stagnation.png │ │ │ ├── poweroutlet-off.png │ │ │ ├── qualityofservice.png │ │ │ ├── rollershutter-0.png │ │ │ ├── rollershutter-10.png │ │ │ ├── rollershutter-20.png │ │ │ ├── rollershutter-30.png │ │ │ ├── rollershutter-40.png │ │ │ ├── rollershutter-50.png │ │ │ ├── rollershutter-60.png │ │ │ ├── rollershutter-70.png │ │ │ ├── rollershutter-80.png │ │ │ ├── rollershutter-90.png │ │ │ ├── soundvolume-100.png │ │ │ ├── soundvolume_mute.png │ │ │ ├── temperature_cold.png │ │ │ ├── temperature_hot.png │ │ │ ├── washingmachine_2.png │ │ │ ├── dimmablelight-100.png │ │ │ ├── garagedoor-closed.png │ │ │ ├── qualityofservice-0.png │ │ │ ├── qualityofservice-1.png │ │ │ ├── qualityofservice-2.png │ │ │ ├── qualityofservice-3.png │ │ │ ├── qualityofservice-4.png │ │ │ ├── rollershutter-100.png │ │ │ ├── washingmachine_2-0.png │ │ │ ├── washingmachine_2-1.png │ │ │ ├── washingmachine_2-2.png │ │ │ ├── washingmachine_2-3.png │ │ │ ├── garage_detached_selected.png │ │ │ ├── cinemascreen-0.svg │ │ │ ├── signal-0.svg │ │ │ ├── qualityofservice-0.svg │ │ │ ├── garagedoor-0.svg │ │ │ ├── garagedoor-open.svg │ │ │ ├── flow.svg │ │ │ ├── cinemascreen-10.svg │ │ │ ├── cinemascreen-20.svg │ │ │ ├── cinemascreen-30.svg │ │ │ ├── cinemascreen.svg │ │ │ ├── cinemascreen-100.svg │ │ │ ├── cinemascreen-40.svg │ │ │ ├── cinemascreen-50.svg │ │ │ ├── cinemascreen-60.svg │ │ │ ├── cinemascreen-70.svg │ │ │ ├── cinemascreen-80.svg │ │ │ ├── cinemascreen-90.svg │ │ │ ├── signal-1.svg │ │ │ ├── qualityofservice-1.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── lock-closed.svg │ │ │ ├── smiley.svg │ │ │ ├── movecontrol.svg │ │ │ ├── signal-2.svg │ │ │ ├── qualityofservice-2.svg │ │ │ ├── smoke.svg │ │ │ ├── signal-3.svg │ │ │ ├── carbondioxide.svg │ │ │ ├── qualityofservice-3.svg │ │ │ ├── garage_detached.svg │ │ │ ├── garage_detached_selected.svg │ │ │ ├── bluetooth.svg │ │ │ ├── signal-4.svg │ │ │ ├── signal.svg │ │ │ ├── chart.svg │ │ │ ├── qualityofservice-4.svg │ │ │ ├── qualityofservice.svg │ │ │ ├── sunset.svg │ │ │ ├── door-closed.svg │ │ │ ├── sun.svg │ │ │ ├── sunrise.svg │ │ │ ├── fire-on.svg │ │ │ ├── fire.svg │ │ │ ├── wardrobe.svg │ │ │ ├── blinds-0.svg │ │ │ ├── door.svg │ │ │ ├── fire-off.svg │ │ │ ├── door-open.svg │ │ │ ├── rollershutter-0.svg │ │ │ ├── status.svg │ │ │ ├── line-decline.svg │ │ │ ├── line-incline.svg │ │ │ ├── line-stagnation.svg │ │ │ ├── temperature_hot.svg │ │ │ ├── poweroutlet_uk.svg │ │ │ ├── battery.svg │ │ │ ├── temperature.svg │ │ │ ├── battery-0.svg │ │ │ ├── temperature_cold.svg │ │ │ ├── energy.svg │ │ │ ├── line.svg │ │ │ ├── garagedoor-10.svg │ │ │ ├── window.svg │ │ │ ├── contact.svg │ │ │ ├── garagedoor-20.svg │ │ │ ├── contact-closed.svg │ │ │ └── window-closed.svg │ │ └── regenerate-esh-classic.sh │ ├── manifest │ │ ├── logo144.png │ │ ├── logo192.png │ │ ├── logo340.png │ │ ├── logo36.png │ │ ├── logo48.png │ │ ├── logo72.png │ │ ├── logo96.png │ │ └── apple-icon.png │ ├── styles │ │ ├── local-config.scss │ │ ├── themes │ │ │ ├── default │ │ │ │ └── default.scss │ │ │ ├── translucent │ │ │ │ └── translucent.scss │ │ │ ├── material-dark │ │ │ │ └── material-dark.scss │ │ │ └── themes.json │ │ └── reset.scss │ └── i18n │ │ ├── admin │ │ ├── ja.json │ │ ├── ko.json │ │ ├── vi.json │ │ ├── af.json │ │ ├── bg.json │ │ └── ar.json │ │ ├── main │ │ ├── ja.json │ │ ├── vi.json │ │ └── bg.json │ │ └── widgets │ │ ├── ko.json │ │ ├── ja.json │ │ ├── vi.json │ │ ├── af.json │ │ ├── bg.json │ │ └── lt.json ├── service-worker.js ├── fonts │ ├── roboto │ │ ├── Roboto-Regular.eot │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ └── Roboto-Regular.woff2 │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 └── .csscomb.json ├── admin └── habpanel.png ├── .releaseconfig.json ├── .gitignore ├── doc └── images │ ├── habpanel_concepts.png │ ├── habpanel_add-widget.png │ ├── habpanel_screenshot0.png │ ├── habpanel_screenshot1.png │ ├── habpanel_screenshot2.png │ ├── habpanel_screenshot3.png │ ├── habpanel_screenshot4.png │ ├── habpanel_screenshot5.png │ ├── habpanel_screenshot6.png │ ├── habpanel_side-drawer.png │ ├── habpanel_widget-chart.png │ ├── habpanel_widget-clock.png │ ├── habpanel_widget-dummy.png │ ├── habpanel_widget-frame.png │ ├── habpanel_widget-image.png │ ├── habpanel_widget-knob.png │ ├── habpanel_widget-label.png │ ├── habpanel_main-menu-edit.png │ ├── habpanel_main-menu-run.png │ ├── habpanel_widget-button.png │ ├── habpanel_widget-slider.png │ ├── habpanel_widget-switch.png │ ├── habpanel_running-dashboard.png │ ├── habpanel_widget-selection.png │ ├── habpanel_widget-timeline.png │ ├── habpanel_dashboard-designer.png │ ├── habpanel_widget-colorpicker.png │ └── habpanel_dashboard-designer-placeholder-menu.png ├── crowdin.yml └── .github ├── dependabot.yml ├── ISSUE_TEMPLATE └── feature_request.md └── auto-merge.yml /src/app/widgets/button/button.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/widgets/knob/knob.scss: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/vendor/global.js: -------------------------------------------------------------------------------- 1 | systemLang = 'de'; 2 | 3 | function _(a) {return a;} 4 | -------------------------------------------------------------------------------- /src/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/tile.png -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /admin/habpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/admin/habpanel.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/none.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.releaseconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["iobroker", "license"], 3 | "exec": { 4 | "before_commit": "npm run build" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/app/widgets/label/label.scss: -------------------------------------------------------------------------------- 1 | .labelwidget { 2 | display: flex; 3 | } 4 | 5 | .labelwidget-content { 6 | margin: auto; 7 | } 8 | -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- 1 | /* 2 | Dummy service worker to enable app install banner 3 | in Chrome on Android when using HTTPS. 4 | */ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | bower_components 4 | www 5 | #ignore .commitinfo created by ioBroker release script 6 | .commitinfo 7 | -------------------------------------------------------------------------------- /src/assets/manifest/logo144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo144.png -------------------------------------------------------------------------------- /src/assets/manifest/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo192.png -------------------------------------------------------------------------------- /src/assets/manifest/logo340.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo340.png -------------------------------------------------------------------------------- /src/assets/manifest/logo36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo36.png -------------------------------------------------------------------------------- /src/assets/manifest/logo48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo48.png -------------------------------------------------------------------------------- /src/assets/manifest/logo72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo72.png -------------------------------------------------------------------------------- /src/assets/manifest/logo96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo96.png -------------------------------------------------------------------------------- /doc/images/habpanel_concepts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_concepts.png -------------------------------------------------------------------------------- /src/app/services/services.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 'use strict'; 3 | 4 | angular.module('app.services', [ 5 | 6 | ]); 7 | })(); -------------------------------------------------------------------------------- /doc/images/habpanel_add-widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_add-widget.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot0.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot1.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot2.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot3.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot4.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot5.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot6.png -------------------------------------------------------------------------------- /doc/images/habpanel_side-drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_side-drawer.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-chart.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-clock.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-dummy.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-frame.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-image.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-knob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-knob.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-label.png -------------------------------------------------------------------------------- /src/assets/manifest/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/apple-icon.png -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /doc/images/habpanel_main-menu-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_main-menu-edit.png -------------------------------------------------------------------------------- /doc/images/habpanel_main-menu-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_main-menu-run.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-button.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-slider.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-switch.png -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /doc/images/habpanel_running-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_running-dashboard.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-selection.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-timeline.png -------------------------------------------------------------------------------- /doc/images/habpanel_dashboard-designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_dashboard-designer.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-colorpicker.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/bath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/bath.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/door.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/fan.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/fire.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/flow.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/gas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/gas.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/line.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/lock.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/moon.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/none.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/oil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/oil.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/pie.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/pump.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rain.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rgb.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sofa.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sun.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/text.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/wind.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/zoom.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/alarm.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/attic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/attic.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/baby_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/baby_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/baby_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/baby_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/baby_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/baby_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/baby_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/baby_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/baby_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/baby_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/baby_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/baby_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boy_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boy_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boy_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boy_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boy_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boy_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boy_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boy_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boy_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boy_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boy_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boy_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/camera.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cellar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cellar.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/chart.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinema.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/clock.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/energy.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/error.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/faucet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/faucet.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garage.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garden.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/girl_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/girl_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/girl_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/girl_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/girl_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/girl_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/girl_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/girl_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/girl_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/girl_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/girl_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/girl_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/grass.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/group.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/house.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/light.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/man_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/man_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/man_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/man_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/man_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/man_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/man_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/man_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/man_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/man_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/man_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/man_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/motion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/motion.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/niveau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/niveau.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/office.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/pantry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/pantry.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/party.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/player.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/shield.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/signal.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/siren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/siren.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/smiley.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/smoke.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/status.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sunset.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/switch.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/toilet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/toilet.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/video.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/water.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/window.png -------------------------------------------------------------------------------- /src/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/bedroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/bedroom.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/bluetooth.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/calendar.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/climate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/climate.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/clock-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/clock-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/contact.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/corridor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/corridor.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/door-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/door-open.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer-1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer-2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer-3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer-4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer-5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fan_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/fan_box.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/favicon.ico -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fire-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/fire-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fire-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/fire-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/flowpipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/flowpipe.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/frontdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/frontdoor.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/incline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/incline.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/keyring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/keyring.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/kitchen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/kitchen.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/light-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/light-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/light-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/light-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/lock-open.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/network.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/piggybank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/piggybank.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/present.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/present.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/pressure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/pressure.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/radiator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/radiator.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/receiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/receiver.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/recorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/recorder.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/settings.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/shield-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/shield-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/shield-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/shield-1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/signal-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/signal-1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/signal-2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/signal-3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/signal-4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/siren-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/siren-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/siren-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/siren-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/softener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/softener.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/suitcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/suitcase.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sunrise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sunrise.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/switch-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/switch-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/terrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/terrace.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/vacation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/vacation.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/wardrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/wardrobe.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/woman_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/woman_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/woman_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/woman_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/woman_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/woman_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/woman_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/woman_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/woman_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/woman_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/woman_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/woman_6.png -------------------------------------------------------------------------------- /src/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/bedroom_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/bedroom_red.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/climate-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/climate-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/colorlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/colorlight.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/colorpicker.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/colorwheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/colorwheel.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/door-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/door-closed.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fan_ceiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/fan_ceiling.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/firstfloor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/firstfloor.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/greenhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/greenhouse.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/groundfloor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/groundfloor.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/lock-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/lock-closed.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/microphone.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/movecontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/movecontrol.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/network-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/network-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/network-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/network-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_1_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_1_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_1_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_1_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_1_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_1_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_2_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_2_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_2_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_2_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_2_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_2_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_2_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_3_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_3_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_3_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_3_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_3_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_3_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_3_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_3_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_4_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_4_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_4_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_4_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_4_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_4_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_4_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_4_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_5_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_5_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_5_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_5_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_5_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_5_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_5_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_5_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_5_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_5_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_5_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_6_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_6_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_6_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_6_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_6_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_6_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_6_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_6_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_6_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/present-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/present-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/receiver-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/receiver-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/returnpipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/returnpipe.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/solarplant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/solarplant.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/soundvolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/soundvolume.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sun_clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sun_clouds.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/switch-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/switch-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/television.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/television.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/temperature.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/wallswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/wallswitch.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/window-ajar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/window-ajar.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/window-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/window-open.png -------------------------------------------------------------------------------- /doc/images/habpanel_dashboard-designer-placeholder-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_dashboard-designer-placeholder-menu.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/bedroom_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/bedroom_blue.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/bedroom_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/bedroom_orange.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/carbondioxide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/carbondioxide.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/contact-ajar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/contact-ajar.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/contact-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/contact-closed.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/contact-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/contact-open.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/frontdoor-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/frontdoor-open.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/line-decline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/line-decline.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/line-incline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/line-incline.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/outdoorlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/outdoorlight.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet_au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet_au.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet_eu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet_eu.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet_uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet_uk.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet_us.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/projector_benq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/projector_benq.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/receiver-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/receiver-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/soundvolume-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/soundvolume-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/soundvolume-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/soundvolume-33.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/soundvolume-66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/soundvolume-66.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/television-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/television-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/television-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/television-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/wallswitch-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/wallswitch-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/wallswitch-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/wallswitch-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/washingmachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/washingmachine.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/window-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/window-closed.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boiler_viessmann.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boiler_viessmann.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/frontdoor-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/frontdoor-closed.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garage_detached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garage_detached.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-ajar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-ajar.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-open.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/line-stagnation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/line-stagnation.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/qualityofservice.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/soundvolume-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/soundvolume-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/soundvolume_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/soundvolume_mute.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/temperature_cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/temperature_cold.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/temperature_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/temperature_hot.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/washingmachine_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/washingmachine_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-closed.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/qualityofservice-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/qualityofservice-1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/qualityofservice-2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/qualityofservice-3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/qualityofservice-4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/washingmachine_2-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/washingmachine_2-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/washingmachine_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/washingmachine_2-1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/washingmachine_2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/washingmachine_2-2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/washingmachine_2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/washingmachine_2-3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garage_detached_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garage_detached_selected.png -------------------------------------------------------------------------------- /src/app/widgets/dummy/dummy.scss: -------------------------------------------------------------------------------- 1 | .dummy { 2 | display: flex; 3 | } 4 | 5 | .dummy-content { 6 | margin: auto; 7 | text-align: center; 8 | width: 100%; 9 | } 10 | 11 | .dummy-value-right { 12 | float: right; 13 | text-align: right; 14 | } 15 | -------------------------------------------------------------------------------- /src/app/widgets/label/label.tpl.html: -------------------------------------------------------------------------------- 1 |
2 |
{{vm.ngModel.name}}
3 |
4 | -------------------------------------------------------------------------------- /src/app/widgets/image/image.scss: -------------------------------------------------------------------------------- 1 | .image { 2 | display: flex; 3 | border: 1px solid #456; 4 | border: 1px solid var(--image-border, #456); 5 | } 6 | 7 | .image-content { 8 | margin: auto; 9 | } 10 | 11 | .image-content img { 12 | zoom: 15; 13 | width: 100%; 14 | height: 100%; 15 | } -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-0.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/app/widgets/switch/switch.scss: -------------------------------------------------------------------------------- 1 | .switch { 2 | display: flex; 3 | cursor: pointer; 4 | } 5 | 6 | .switch-content { 7 | margin: auto; 8 | text-align: center; 9 | } 10 | 11 | .switch-off { 12 | color: #89a; 13 | color: var(--switch-off-color, #89a); 14 | } 15 | 16 | .switch-icon { 17 | font-size: 24px; 18 | } -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /web/assets/i18n/main/main.pot 3 | translation: /web/assets/i18n/main/%two_letters_code%.po 4 | - source: /web/assets/i18n/admin/admin.pot 5 | translation: /web/assets/i18n/admin/%two_letters_code%.po 6 | - source: /web/assets/i18n/widgets/widgets.pot 7 | translation: /web/assets/i18n/widgets/%two_letters_code%.po 8 | -------------------------------------------------------------------------------- /src/assets/styles/local-config.scss: -------------------------------------------------------------------------------- 1 | .localconfig { 2 | position: absolute; 3 | top: 64px; 4 | left: 10px; 5 | width: calc(100% - 20px); 6 | height: calc(100% - 76px); 7 | } 8 | 9 | .localconfig .CodeMirror { 10 | position: absolute; 11 | top: 130px; 12 | left: 10px; 13 | height: calc(100% - 150px); 14 | width: calc(100% - 20px); 15 | } 16 | -------------------------------------------------------------------------------- /src/app/widgets/image/image.tpl.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 | 7 |
8 |
9 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-0.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-0.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/app/widgets/clock/clock.scss: -------------------------------------------------------------------------------- 1 | .clock { 2 | display: flex; 3 | cursor: pointer; 4 | } 5 | 6 | .clock-content { 7 | margin: auto; 8 | text-align: center; 9 | width: 100%; 10 | } 11 | 12 | .clock-value-right { 13 | float: right; 14 | text-align: right; 15 | } 16 | 17 | .widget-clock .time { 18 | font-family: Roboto; 19 | font-size: 100%; 20 | margin: auto; 21 | } 22 | 23 | -------------------------------------------------------------------------------- /src/app/widgets/template/template.scss: -------------------------------------------------------------------------------- 1 | .template-container { 2 | display: flex; 3 | width: 100%; 4 | } 5 | 6 | .template-contents { 7 | display: block; 8 | margin: auto; 9 | text-align: center; 10 | width: 100%; 11 | } 12 | 13 | .cm-template-expression { 14 | color: #0ca; 15 | } 16 | 17 | .cm-habpanel-function { 18 | color: #a0c; 19 | font-weight: bold; 20 | font-style: italic; 21 | } -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-0.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-open.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/app/widgets/frame/frame.scss: -------------------------------------------------------------------------------- 1 | .frame-content, 2 | .frame-content-frameless, 3 | .frame-container { 4 | position: relative; 5 | height: 100%; 6 | display: flex; 7 | flex-direction: column; 8 | } 9 | 10 | .frame .frame-label { 11 | padding-bottom: 10px; 12 | } 13 | 14 | .frame-content-frameless { 15 | position: absolute; 16 | top: 0; 17 | right: 0; 18 | bottom: 0; 19 | left: 0; 20 | } 21 | -------------------------------------------------------------------------------- /src/assets/styles/themes/default/default.scss: -------------------------------------------------------------------------------- 1 | @import "_variables.scss"; 2 | @import "../../../../../bower_components/bootstrap-sass/assets/stylesheets/bootstrap.scss"; 3 | 4 | 5 | @import "../../common.scss"; 6 | @import "../../dashboard.scss"; 7 | @import "../../widgets.scss"; 8 | @import "../../local-config.scss"; 9 | @import "../../widgetdesigner.scss"; 10 | 11 | @import "../../../../app/widgets/**/*.scss"; 12 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/flow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-10.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-20.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-30.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-100.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-40.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-50.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-60.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-70.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-80.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-90.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/lock-open.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/lock-closed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/smiley.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/movecontrol.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/smoke.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/app/widgets/knob/knob.tpl.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | 9 |
10 |
11 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/carbondioxide.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/app/widgets/chart/chart.scss: -------------------------------------------------------------------------------- 1 | .chart-content .chart .grid .tick>line { 2 | stroke: #456; 3 | stroke: var(--chart-stroke, #456); 4 | } 5 | 6 | .chart-content .chart .axis>.tick>text { 7 | fill: #89a; 8 | fill: var(--chart-fill, #89a); 9 | font-family: $font-family-base; 10 | } 11 | 12 | .chart-content .legend-label { 13 | color: #def; 14 | color: var(--widget-text-color, #def); 15 | } 16 | 17 | .chart-content .chart-tooltip { 18 | background-color: #123; 19 | background-color: var(--chart-tooltip, #123); 20 | } 21 | 22 | .chart .axis { 23 | font-size: 0.72em; 24 | } -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # Dependabot will run on day 14 of each month at 01:58 (Europe/Berlin timezone) 2 | version: 2 3 | updates: 4 | 5 | - package-ecosystem: "npm" 6 | directory: "/" 7 | schedule: 8 | interval: "cron" 9 | timezone: "Europe/Berlin" 10 | cronjob: "58 1 14 * *" 11 | open-pull-requests-limit: 15 12 | versioning-strategy: "increase" 13 | 14 | - package-ecosystem: "github-actions" 15 | directory: "/" 16 | schedule: 17 | interval: "cron" 18 | timezone: "Europe/Berlin" 19 | cronjob: "58 1 14 * *" 20 | open-pull-requests-limit: 15 21 | -------------------------------------------------------------------------------- /src/assets/styles/themes/translucent/translucent.scss: -------------------------------------------------------------------------------- 1 | @import "_variables.scss"; 2 | @import "../../../../../bower_components/bootstrap-sass/assets/stylesheets/bootstrap.scss"; 3 | 4 | 5 | @import "../../common.scss"; 6 | @import "../../dashboard.scss"; 7 | @import "../../widgets.scss"; 8 | @import "../../local-config.scss"; 9 | @import "../../widgetdesigner.scss"; 10 | 11 | @import "../../../../app/widgets/**/*.scss"; 12 | 13 | .header { 14 | background: none; 15 | 16 | h2, .btn.btn:not(.btn-default):not(.btn-primary):not(.btn-success) { 17 | text-shadow: 0 0 6px $body-bg; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/assets/styles/themes/material-dark/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import "_variables.scss"; 2 | @import "../../../../../bower_components/bootstrap-sass/assets/stylesheets/bootstrap.scss"; 3 | 4 | 5 | @import "../../common.scss"; 6 | @import "../../dashboard.scss"; 7 | @import "../../widgets.scss"; 8 | @import "../../local-config.scss"; 9 | @import "../../widgetdesigner.scss"; 10 | 11 | @import "../../../../app/widgets/**/*.scss"; 12 | 13 | // Final overrides 14 | 15 | .box { 16 | border-radius: 2px; 17 | box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12); 18 | } 19 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garage_detached.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garage_detached_selected.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/bluetooth.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/assets/styles/themes/themes.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "default", 4 | "name": "Default" 5 | }, 6 | { 7 | "id": "material", 8 | "name": "Material" 9 | }, 10 | { 11 | "id": "material-dark", 12 | "name": "Material dark" 13 | }, 14 | { 15 | "id": "paleblue", 16 | "name": "Pale blue" 17 | }, 18 | { 19 | "id": "translucent", 20 | "name": "Translucent" 21 | }, 22 | { 23 | "id": "madras", 24 | "name": "Madras" 25 | }, 26 | { 27 | "id": "orange-tree", 28 | "name": "Orange Tree" 29 | } 30 | ] -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/chart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sunset.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/door-closed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sun.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/app/widgets/chart/chart.tpl.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 | 7 |
8 |
9 | 10 |
11 |
12 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sunrise.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fire-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fire.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/wardrobe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-0.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/door.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fire-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/door-open.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-0.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/app/widgets/slider/slider.tpl.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
{{vm.widget.name}}
5 |
6 | 7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/status.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/styles/reset.scss: -------------------------------------------------------------------------------- 1 | // Overwrite Bootstrap variables here 2 | // $brand-primary: $primary-color; 3 | $brand-success: #5cb85c; 4 | $brand-info: #5bc0de; 5 | $brand-warning: #f0ad4e; 6 | $brand-danger: #d9534f; 7 | $link-color: #abc; // Bootstrap variable 8 | $link-hover-decoration: none; 9 | $icon-font-path: '../fonts/bootstrap/'; 10 | $font-family-base: "Roboto", 11 | -apple-system, 12 | BlinkMacSystemFont, 13 | "Segoe UI", 14 | Helvetica, 15 | Arial, 16 | sans-serif, 17 | "Apple Color Emoji", 18 | "Segoe UI Emoji", 19 | "Segoe UI Symbol"; 20 | $nav-tabs-active-link-hover-bg: #fff; 21 | $border-radius-base: 0; 22 | $border-radius-large: $border-radius-base; 23 | $border-radius-small: $border-radius-base; 24 | $text-muted: var(--body-color, #ccc); -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/line-decline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /.github/auto-merge.yml: -------------------------------------------------------------------------------- 1 | # Configure here which dependency updates should be merged automatically. 2 | # The recommended configuration is the following: 3 | - match: 4 | # Only merge patches for production dependencies 5 | dependency_type: production 6 | update_type: "semver:patch" 7 | - match: 8 | # Except for security fixes, here we allow minor patches 9 | dependency_type: production 10 | update_type: "security:minor" 11 | - match: 12 | # and development dependencies can have a minor update, too 13 | dependency_type: development 14 | update_type: "semver:minor" 15 | 16 | # The syntax is based on the legacy dependabot v1 automerged_updates syntax, see: 17 | # https://dependabot.com/docs/config-file/#automerged_updates -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/line-incline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/line-stagnation.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/temperature_hot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/app/widgets/timeline/timeline.tpl.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{vm.widget.name}} 4 |
5 | {{starting_time | date: 'EEE'}} {{starting_time | date: 'medium'}} - {{ending_time | date: 'EEE'}} {{ending_time | date:'medium'}} 6 |          {{item}}    {{state}} 7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet_uk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/icons/regenerate-esh-classic.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Regenerates ESH Classic Icon Set 3 | 4 | head -4 eclipse-smarthome-classic.list.json | tac | tac > eclipse-smarthome-classic.list.json.tmp 5 | 6 | curl 'https://docs.openhab.org/addons/iconsets/classic/readme.html' | grep -i 'icons/.*\.png' | tac | tac | sed 's/^.*src="icons\/\(.*\)\.png".*$/ "\1",/g' >> eclipse-smarthome-classic.list.json.tmp 7 | 8 | sed -i '$ s/.$//' eclipse-smarthome-classic.list.json.tmp 9 | 10 | echo " ]" >> eclipse-smarthome-classic.list.json.tmp 11 | 12 | echo "}" >> eclipse-smarthome-classic.list.json.tmp 13 | 14 | # Remove duplicates 15 | awk '!seen[$0]++' eclipse-smarthome-classic.list.json.tmp > eclipse-smarthome-classic.list.json 16 | 17 | rm -f eclipse-smarthome-classic.list.json.tmp 18 | 19 | -------------------------------------------------------------------------------- /src/assets/i18n/admin/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-18 13:21-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "ja_JP", 9 | "Language-Team": "Japanese", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=1; plural=0;", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "ja", 16 | "X-Crowdin-File": "/master/web/assets/i18n/admin/admin.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/i18n/admin/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-18 13:21-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "ko_KR", 9 | "Language-Team": "Korean", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=1; plural=0;", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "ko", 16 | "X-Crowdin-File": "/master/web/assets/i18n/admin/admin.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/i18n/main/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-18 13:21-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "ja_JP", 9 | "Language-Team": "Japanese", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=1; plural=0;", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "ja", 16 | "X-Crowdin-File": "/master/web/assets/i18n/main/main.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/i18n/main/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-18 13:21-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "vi_VN", 9 | "Language-Team": "Vietnamese", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=1; plural=0;", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "vi", 16 | "X-Crowdin-File": "/master/web/assets/i18n/main/main.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/i18n/admin/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-18 13:21-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "vi_VN", 9 | "Language-Team": "Vietnamese", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=1; plural=0;", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "vi", 16 | "X-Crowdin-File": "/master/web/assets/i18n/admin/admin.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/i18n/main/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-19 07:11-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "bg_BG", 9 | "Language-Team": "Bulgarian", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=2; plural=(n != 1);", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "bg", 16 | "X-Crowdin-File": "/master/web/assets/i18n/main/main.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/i18n/widgets/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-18 13:21-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "ko_KR", 9 | "Language-Team": "Korean", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=1; plural=0;", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "ko", 16 | "X-Crowdin-File": "/master/web/assets/i18n/widgets/widgets.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/i18n/admin/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-18 13:21-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "af_ZA", 9 | "Language-Team": "Afrikaans", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=2; plural=(n != 1);", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "af", 16 | "X-Crowdin-File": "/master/web/assets/i18n/admin/admin.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/i18n/admin/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-19 07:11-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "bg_BG", 9 | "Language-Team": "Bulgarian", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=2; plural=(n != 1);", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "bg", 16 | "X-Crowdin-File": "/master/web/assets/i18n/admin/admin.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/i18n/widgets/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-18 13:21-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "ja_JP", 9 | "Language-Team": "Japanese", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=1; plural=0;", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "ja", 16 | "X-Crowdin-File": "/master/web/assets/i18n/widgets/widgets.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/i18n/widgets/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-18 13:32-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "vi_VN", 9 | "Language-Team": "Vietnamese", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=1; plural=0;", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "vi", 16 | "X-Crowdin-File": "/master/web/assets/i18n/widgets/widgets.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/i18n/widgets/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-18 13:22-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "af_ZA", 9 | "Language-Team": "Afrikaans", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=2; plural=(n != 1);", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "af", 16 | "X-Crowdin-File": "/master/web/assets/i18n/widgets/widgets.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/i18n/widgets/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-19 07:11-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "bg_BG", 9 | "Language-Team": "Bulgarian", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=2; plural=(n != 1);", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "bg", 16 | "X-Crowdin-File": "/master/web/assets/i18n/widgets/widgets.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/temperature.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-0.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/temperature_cold.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/app/widgets/frame/frame.tpl.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
{{vm.widget.name}}
4 |
5 | 6 |
7 |
8 | 9 |
10 |
11 |
12 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/energy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-10.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/window.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/contact.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-20.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/i18n/widgets/lt.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-18 13:51-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "lt_LT", 9 | "Language-Team": "Lithuanian", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "lt", 16 | "X-Crowdin-File": "/master/web/assets/i18n/widgets/widgets.pot" 17 | } 18 | } -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/contact-closed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/window-closed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/.csscomb.json: -------------------------------------------------------------------------------- 1 | { 2 | "remove-empty-rulesets": true, 3 | "always-semicolon": true, 4 | "color-case": "lower", 5 | "block-indent": " ", 6 | "color-shorthand": true, 7 | "element-case": "lower", 8 | "eof-newline": true, 9 | "leading-zero": false, 10 | "quotes": "double", 11 | "sort-order-fallback": "abc", 12 | "space-before-colon": "", 13 | "space-after-colon": " ", 14 | "space-before-combinator": " ", 15 | "space-after-combinator": " ", 16 | "space-between-declarations": "\n", 17 | "space-before-opening-brace": " ", 18 | "space-after-opening-brace": "\n", 19 | "space-after-selector-delimiter": "\n", 20 | "space-before-selector-delimiter": "", 21 | "space-before-closing-brace": "\n", 22 | "strip-spaces": true, 23 | "tab-size": true, 24 | "unitless-zero": true, 25 | "vendor-prefix-align": true 26 | } -------------------------------------------------------------------------------- /src/assets/i18n/admin/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "Project-Id-Version": "openhab-habpanel", 4 | "Report-Msgid-Bugs-To": "https://github.com/openhab/org.openhab.ui.habpanel/issues", 5 | "POT-Creation-Date": "", 6 | "PO-Revision-Date": "2018-01-18 13:31-0500", 7 | "Last-Translator": "openhab-bot ", 8 | "Language": "ar_SA", 9 | "Language-Team": "Arabic", 10 | "Content-Type": "text/plain; charset=UTF-8", 11 | "Content-Transfer-Encoding": "", 12 | "Plural-Forms": "nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);", 13 | "X-Generator": "crowdin.com", 14 | "X-Crowdin-Project": "openhab-habpanel", 15 | "X-Crowdin-Language": "ar", 16 | "X-Crowdin-File": "/master/web/assets/i18n/admin/admin.pot" 17 | } 18 | } --------------------------------------------------------------------------------