Skip to content

Commit

Permalink
[1.0.7] - Initial Controls Implementation and [1.0.6] Custom Status Text
Browse files Browse the repository at this point in the history
Added Initial Control Substructure

Progressing Controls Subsystem. Handler template & loading modal done.

[1.0.7] - Initial Controls Implementation

Resize gif
  • Loading branch information
shbatm committed Apr 27, 2018
1 parent 6239084 commit 4bbf2be
Show file tree
Hide file tree
Showing 28 changed files with 1,355 additions and 125 deletions.
16 changes: 0 additions & 16 deletions .eslintrc.json

This file was deleted.

5 changes: 0 additions & 5 deletions .stylelintrc

This file was deleted.

18 changes: 18 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,21 @@
## [1.0.7] - Initial Controls Implementation

Added:

* Initial implementation of a control system using Bootstrap 4 to display tooltip style popups when devices are clicked.
* Current Devices with working controls:
* Dimmable Insteon Lights
* On/Off Insteon Lights
* On/Off Insteon Outlets
* Insteon FanLink
* Hue Bulbs via Hue Polyglot Node Server (if reported with nodeDefId as ECOLOR_LIGHT or COLOR_LIGHT)

## [1.0.6] - Added Custom Status Text Option

Added:

* In the module config you can provide a `customStatusText` object for a node and the module will update an appropriately tagged text span in the SVG with the status whenever that device changes.

## [1.0.5] - Advanced Node Server Functions

Changed:
Expand Down
66 changes: 0 additions & 66 deletions Gruntfile.js

This file was deleted.

11 changes: 10 additions & 1 deletion MMM-ISY.css
Expand Up @@ -9,6 +9,7 @@
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
cursor: pointer;
}

.isyInnerWrapper {
Expand All @@ -17,7 +18,15 @@
text-align: center;
display: inline-block;
width: 100%;
padding-bottom: 45%;
padding-bottom: 40.8%; /* Override this with 100% * Height / Width (of SVG) */

-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}


Expand Down

0 comments on commit 4bbf2be

Please sign in to comment.