mirror of
https://github.com/Sebclem/OctoPrint-SimpleEmergencyStop.git
synced 2024-11-29 20:34:54 +01:00
Compare commits
4 Commits
070603cbe7
...
58b46132a4
Author | SHA1 | Date | |
---|---|---|---|
58b46132a4 | |||
1cedff56f9 | |||
|
7cb13fa86f | ||
|
8243622ba3 |
@ -62,7 +62,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|||||||
|
|
||||||
|
|
||||||
[license-shield]: https://img.shields.io/github/license/Sebclem/OctoPrint-SimpleEmergencyStop.svg?style=flat-square
|
[license-shield]: https://img.shields.io/github/license/Sebclem/OctoPrint-SimpleEmergencyStop.svg?style=flat-square
|
||||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2021.svg?style=flat-square
|
[maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg?style=flat-square
|
||||||
[project-stage-shield]: https://img.shields.io/badge/project%20stage-Production-green.svg?style=flat-square
|
[project-stage-shield]: https://img.shields.io/badge/project%20stage-Production-green.svg?style=flat-square
|
||||||
[releases-shield]: https://img.shields.io/github/release/Sebclem/OctoPrint-SimpleEmergencyStop.svg?style=flat-square
|
[releases-shield]: https://img.shields.io/github/release/Sebclem/OctoPrint-SimpleEmergencyStop.svg?style=flat-square
|
||||||
[releases]: https://github.com/Sebclem/OctoPrint-SimpleEmergencyStop/releases
|
[releases]: https://github.com/Sebclem/OctoPrint-SimpleEmergencyStop/releases
|
||||||
|
@ -16,7 +16,9 @@ class SimpleemergencystopPlugin(octoprint.plugin.StartupPlugin,
|
|||||||
return dict(
|
return dict(
|
||||||
emergencyGCODE="M112",
|
emergencyGCODE="M112",
|
||||||
confirmationDialog=False,
|
confirmationDialog=False,
|
||||||
big_button=False
|
big_button=False,
|
||||||
|
enableMargin=False,
|
||||||
|
marginValue=0,
|
||||||
)
|
)
|
||||||
|
|
||||||
def on_settings_save(self, data):
|
def on_settings_save(self, data):
|
||||||
|
@ -52,12 +52,30 @@ $(function () {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.ses_margin_css = function () {
|
||||||
|
if (this.settings.enableMargin()) {
|
||||||
|
$('#ses_wrapper').css({
|
||||||
|
'margin-left':`${this.settings.marginValue()}px`,
|
||||||
|
'margin-right':`${this.settings.marginValue()}px`
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
$('#ses_wrapper').css({
|
||||||
|
'margin-left':'0px',
|
||||||
|
'margin-right':'0px'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
this.ses_visible = function () {
|
||||||
|
return this.loginState.isUser() && this.hasControlPermition();
|
||||||
|
};
|
||||||
|
|
||||||
this.big_button_visible = function () {
|
this.big_button_visible = function () {
|
||||||
return this.loginState.isUser() && this.settings.big_button() && this.hasControlPermition();
|
return this.settings.big_button();
|
||||||
};
|
};
|
||||||
|
|
||||||
this.little_button_visible = function () {
|
this.little_button_visible = function () {
|
||||||
return this.loginState.isUser() && !this.settings.big_button() && this.hasControlPermition();
|
return !this.settings.big_button();
|
||||||
};
|
};
|
||||||
|
|
||||||
this.can_send_command = function () {
|
this.can_send_command = function () {
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
<div id="ses_wrapper" data-bind="css: ses_margin_css(), visible: ses_visible()">
|
||||||
<div>
|
<div>
|
||||||
<a data-bind="click: click, css: little_button_css(), attr: { title: get_title() }, visible: little_button_visible()"
|
<a data-bind="click: click, css: little_button_css(), attr: { title: get_title() }, visible: little_button_visible()"
|
||||||
href="#">
|
href="#">
|
||||||
@ -24,6 +25,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="confirmation" class="modal hide fade">
|
<div id="confirmation" class="modal hide fade">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<label class="control-label">{{ _('Emergency GCODE:') }}</label>
|
<label class="control-label">{{ _('Emergency GCODE:') }}</label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<input type="text" class="input-block-level"
|
<input type="text" class=""
|
||||||
data-bind="value: settings.plugins.simpleemergencystop.emergencyGCODE">
|
data-bind="value: settings.plugins.simpleemergencystop.emergencyGCODE">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -19,6 +19,21 @@
|
|||||||
<input type="checkbox" data-bind="checked: settings.plugins.simpleemergencystop.big_button">
|
<input type="checkbox" data-bind="checked: settings.plugins.simpleemergencystop.big_button">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="control-group">
|
||||||
|
<label class="control-label">{{ _('Enable margin') }}</label>
|
||||||
|
<div class="controls">
|
||||||
|
<input type="checkbox" data-bind="checked: settings.plugins.simpleemergencystop.enableMargin">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="control-group">
|
||||||
|
<label class="control-label">{{ _('Margin value:') }}</label>
|
||||||
|
<div class="controls">
|
||||||
|
<div class="input-append">
|
||||||
|
<input type="number" class="" step="5" min="0" data-bind="
|
||||||
|
value: settings.plugins.simpleemergencystop.marginValue,
|
||||||
|
enable: settings.plugins.simpleemergencystop.enableMargin()">
|
||||||
|
<span class="add-on">px</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
2
setup.py
2
setup.py
@ -14,7 +14,7 @@ plugin_package = "octoprint_simpleemergencystop"
|
|||||||
plugin_name = "OctoPrint-SimpleEmergencyStop"
|
plugin_name = "OctoPrint-SimpleEmergencyStop"
|
||||||
|
|
||||||
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
|
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
|
||||||
plugin_version = "1.0.5"
|
plugin_version = "1.0.6"
|
||||||
|
|
||||||
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
|
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
|
||||||
# module
|
# module
|
||||||
|
Loading…
Reference in New Issue
Block a user