Skip to content

Commit

Permalink
0.9.3
Browse files Browse the repository at this point in the history
### Fixed
- Icon not displaying in IE due to binding css issue (#44).
  • Loading branch information
jneilliii authored Feb 3, 2018
1 parent 5a86d3a commit f7b1e9a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.9.2]
## [0.9.2] - 2018-02-03
### Fixed
- Icon not displaying in IE due to binding css issue.

## [0.9.2] - 2018-01-31
### Notes
- **Previously configured plugs will be erased upon upgrade to account for new data structure.**

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- ko foreach: settings.settings.plugins.tplinksmartplug.arrSmartplugs -->
<a class="pull-right" href=#" data-bind="click: $root.toggleRelay,visible: $root.loginState.loggedIn(),attr: {title: $data.label}" style="display: none;float: left;"><i class="icon" data-bind="css: [currentState(), icon(),($root.processing().includes(ip()) ? 'icon-spin' : '')].join(' ')"></i></a>
<a class="pull-right" href=#" data-bind="click: $root.toggleRelay,visible: $root.loginState.loggedIn(),attr: {title: $data.label}" style="display: none;float: left;"><i class="icon" data-bind="css: [currentState(), icon(),(($root.processing().indexOf(ip()) > -1) ? 'icon-spin' : '')].join(' ')"></i></a>
<!-- /ko -->

<div id="TPLinkSmartPlugWarning" data-bind="with: selectedPlug" class="modal hide fade">
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
plugin_name = "OctoPrint-TPLinkSmartplug"

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "0.9.2"
plugin_version = "0.9.3"

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
Expand Down

0 comments on commit f7b1e9a

Please sign in to comment.