Skip to content

Commit

Permalink
0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jneilliii committed Jan 31, 2018
1 parent ed14659 commit 5a86d3a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ 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]
### Notes
- **Previously configured plugs will be erased upon upgrade to account for new data structure.**

### Added
- Button labeling.
- Button icons configurable via fontawesome class names found [here](http://fontawesome.io/3.2.1/cheatsheet/).
- Spinning icon while awaiting response from server.

### Changed
- Improved settings layout, less clutter.

## [0.9.1] - 2018-01-30
### Notes
- **Previously configured plugs will be erased upon upgrade to account for new data structure.**
Expand Down Expand Up @@ -104,6 +116,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- Initial release.

[0.9.2]: https://github.com/jneilliii/OctoPrint-TPLinkSmartplug/tree/0.9.2
[0.9.1]: https://github.com/jneilliii/OctoPrint-TPLinkSmartplug/tree/0.9.1
[0.8.0]: https://github.com/jneilliii/OctoPrint-TPLinkSmartplug/tree/0.8.0
[0.7.3]: https://github.com/jneilliii/OctoPrint-TPLinkSmartplug/tree/0.7.3
Expand Down
2 changes: 1 addition & 1 deletion octoprint_tplinksmartplug/static/js/tplinksmartplug.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ $(function() {
'sysCmdOffDelay':ko.observable(0),
'currentState':ko.observable('unknown'),
'btnColor':ko.observable('#808080')});
self.settings.settings.plugins.tplinksmartplug.arrSmartplugs.push(self.selectedPlug);
self.settings.settings.plugins.tplinksmartplug.arrSmartplugs.push(self.selectedPlug());
$("#TPLinkPlugEditor").modal("show");
}

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.1"
plugin_version = "0.9.2"

# 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 5a86d3a

Please sign in to comment.