Skip to content

Commit

Permalink
New Version 1.4.2
Browse files Browse the repository at this point in the history
- B #164 missing 'h'
- B Ticket PjH 148 wrong weight was picked
  • Loading branch information
OllisGit committed May 25, 2021
1 parent 1c58e67 commit 46a01b8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ If you like it, I would be thankful about a cup of coffee :)

## Tested with:
- OctoPrint 1.5.2: with Python 3.6.8 and Python 2.7.9
- OctoPrint 1.4.2: OPEN

## Included features

Expand Down
2 changes: 1 addition & 1 deletion octoprint_SpoolManager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ def api_getSelectedSpoolInformations(self):
"colorName": spoolModel.colorName,
"color": spoolModel.color,
"cost": spoolModel.cost,
"weight": spoolModel.weight
"weight": spoolModel.totalWeight
}
result.append(spoolData)

Expand Down
2 changes: 1 addition & 1 deletion octoprint_SpoolManager/templates/SpoolManager_tab.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
Show spools:
<a href="#" data-bind="click: function() { spoolItemTableHelper.changeFilter('all'); }"><i class="icon-ok" data-bind="style: {visibility: spoolItemTableHelper.isFilterSelected('all') ? 'visible' : 'hidden'}"></i> all</a> |
<a href="#" data-bind="click: function() { spoolItemTableHelper.changeFilter('hideEmptySpools'); }"><i class="icon-ok" data-bind="style: {visibility: spoolItemTableHelper.isFilterSelected('hideEmptySpools') ? 'visible' : 'hidden'}"></i> hide empty</a> |
<a href="#" data-bind="click: function() { spoolItemTableHelper.changeFilter('hideInactiveSpools'); }"><i class="icon-ok" data-bind="style: {visibility: spoolItemTableHelper.isFilterSelected('hideInactiveSpools') ? 'visible' : 'hidden'}"></i> <h></h>ide inactive</a>
<a href="#" data-bind="click: function() { spoolItemTableHelper.changeFilter('hideInactiveSpools'); }"><i class="icon-ok" data-bind="style: {visibility: spoolItemTableHelper.isFilterSelected('hideInactiveSpools') ? 'visible' : 'hidden'}"></i> hide inactive</a>
<!-- <a href="#" data-bind="click: function() { printJobHistoryTableHelper.changeFilter('onlyFailed'); }"><i class="icon-ok" data-bind="style: {visibility: printJobHistoryTableHelper.isFilterSelected('onlyFailed') ? 'visible' : 'hidden'}"></i> only failed</a>-->
</small>
</div>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
#
plugin_version = "1.4.1"
plugin_version = "1.4.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 46a01b8

Please sign in to comment.