Skip to content

Commit dd15384

Browse files
committed
0.8.1
1 parent 8183a86 commit dd15384

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [0.8.1] - 2018-02-03
8+
### Fixed
9+
- Icon not displaying in IE due to binding css issue.
10+
711
## [0.8.0] - 2018-02-02
812
### Changed
913
- Improved settings layout to reduce clutter.
@@ -59,6 +63,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
5963
### Added
6064
- Initial release.
6165

66+
[0.8.1]: https://github.com/jneilliii/OctoPrint-Tasmota/tree/0.8.1
6267
[0.8.0]: https://github.com/jneilliii/OctoPrint-Tasmota/tree/0.8.0
6368
[0.7.0]: https://github.com/jneilliii/OctoPrint-Tasmota/tree/0.7.0
6469
[0.6.0]: https://github.com/jneilliii/OctoPrint-Tasmota/tree/0.6.0

octoprint_tasmota/templates/tasmota_navbar.jinja2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- ko foreach: settings.settings.plugins.tasmota.arrSmartplugs -->
2-
<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>
2+
<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>
33
<!-- /ko -->
44
<div id="TasmotaWarning" data-bind="with: selectedPlug" class="modal hide fade">
55
<div class="modal-header">

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
plugin_name = "OctoPrint-Tasmota"
1515

1616
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
17-
plugin_version = "0.8.0"
17+
plugin_version = "0.8.1"
1818

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

0 commit comments

Comments
 (0)