2015-01-13 17:20:13 +00:00
|
|
|
<form class="form-horizontal">
|
|
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="checkbox">
|
|
|
|
|
<input type="checkbox" data-bind="checked: feature_temperatureGraph" id="settings-featureTemperatureGraph"> {{ _('Enable Temperature Graph') }}
|
|
|
|
|
</label>
|
2015-01-13 10:31:45 +00:00
|
|
|
</div>
|
2015-01-13 17:20:13 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
2016-06-28 12:47:17 +00:00
|
|
|
<label class="checkbox">
|
|
|
|
|
<input type="checkbox" data-bind="checked: feature_modelSizeDetection" id="settings-modelSizeDetection"> {{ _('Enable model size detection and warn if model exceeds print bed') }} <span class="label label-info">{{ _('Beta') }}</span>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="checkbox">
|
2016-12-13 13:28:44 +00:00
|
|
|
<input type="checkbox" data-bind="checked: feature_printCancelConfirmation" id="settings-printCancelConfirmation"> {{ _('Confirm before cancelling a print') }}
|
2015-01-13 17:20:13 +00:00
|
|
|
</label>
|
2015-01-13 10:31:45 +00:00
|
|
|
</div>
|
2015-01-13 17:20:13 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="checkbox">
|
2016-12-13 13:28:44 +00:00
|
|
|
<input type="checkbox" data-bind="checked: feature_sdSupport" id="settings-featureSdSupport"> {{ _('Enable SD support') }}
|
2015-01-13 17:20:13 +00:00
|
|
|
</label>
|
2015-01-13 10:31:45 +00:00
|
|
|
</div>
|
2015-01-13 17:20:13 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="checkbox">
|
2016-12-13 13:28:44 +00:00
|
|
|
<input type="checkbox" data-bind="checked: feature_keyboardControl" id="settings-featureKeyboardControl"> {{ _("Enable Keyboard Control") }}
|
2015-01-13 17:20:13 +00:00
|
|
|
</label>
|
2015-01-13 10:31:45 +00:00
|
|
|
</div>
|
2015-01-13 17:20:13 +00:00
|
|
|
</div>
|
2016-12-10 14:52:47 +00:00
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="checkbox">
|
2016-12-13 13:28:44 +00:00
|
|
|
<input type="checkbox" data-bind="checked: feature_waitForStart" id="settings-featureWaitForStart"> {{ _('Wait for <code>start</code> on connect') }}
|
2016-12-10 14:52:47 +00:00
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2017-05-10 14:40:52 +00:00
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="checkbox">
|
|
|
|
|
<input type="checkbox" data-bind="checked: feature_g90InfluencesExtruder" id="settings-g90InfluencesExtruder"> {{ _('<code>G90</code>/<code>G91</code> overrides relative extruder mode') }} <span class="label">{{ _('Smoothieware') }}</span>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2016-06-05 07:00:14 +00:00
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="checkbox">
|
2016-11-17 16:13:36 +00:00
|
|
|
<input type="checkbox" data-bind="checked: feature_firmwareDetection" id="settings-firmwareDetection"> {{ _('Enable automatic firmware detection') }}
|
|
|
|
|
<span class="help-inline">{% trans %}
|
2017-04-12 12:54:32 +00:00
|
|
|
If enabled, OctoPrint will try to figure out your printer's firmware automatically and adjust some communication parameters based on that.
|
2016-11-17 16:13:36 +00:00
|
|
|
If that doesn't work out, or you want more granular control, uncheck this and the parameters in question will become visible for you to adjust.
|
|
|
|
|
{% endtrans %}</span>
|
2016-06-05 07:00:14 +00:00
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2016-11-17 16:13:36 +00:00
|
|
|
<div data-bind="visible: !feature_firmwareDetection()">
|
|
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="checkbox">
|
|
|
|
|
<input type="checkbox" data-bind="checked: feature_sdRelativePath" id="settings-sdRelativePath"> {{ _('Select SD files by relative path') }} <span class="label">{{ _('RepRap Firmware') }}</span>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2015-01-13 10:31:45 +00:00
|
|
|
</div>
|
2016-11-17 16:13:36 +00:00
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="checkbox">
|
|
|
|
|
<input type="checkbox" data-bind="checked: feature_sdAlwaysAvailable" id="settings-featureSdAlwaysAvailable"> {{ _('Always assume SD card is present') }} <span class="label">{{ _('Repetier') }}</span>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2015-01-13 10:31:45 +00:00
|
|
|
</div>
|
2016-11-17 16:13:36 +00:00
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="checkbox">
|
|
|
|
|
<input type="checkbox" data-bind="checked: feature_ignoreIdenticalResends" id="settings-ignoreIdenticalResends"> {{ _('Ignore consecutive resend requests for the same line') }} <span class="label">{{ _('Repetier') }}</span>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2015-01-13 10:31:45 +00:00
|
|
|
</div>
|
2016-11-17 16:13:36 +00:00
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="checkbox">
|
|
|
|
|
<input type="checkbox" data-bind="checked: feature_repetierTargetTemp" id="settings-featureRepetierTargetTemp"> {{ _('Support <code>TargetExtr%%n</code>/<code>TargetBed</code> target temperature format') }} <span class="label">{{ _('Repetier') }}</span>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2015-04-24 07:36:43 +00:00
|
|
|
</div>
|
2016-11-17 16:13:36 +00:00
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="checkbox">
|
|
|
|
|
<input type="checkbox" data-bind="checked: feature_disableExternalHeatupDetection" id="settings-featureExternalHeatupDetection"> {{ _('Disable detection of external heatups') }} <span class="label">{{ _('Repetier') }}</span>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2017-01-24 17:15:49 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="checkbox">
|
|
|
|
|
<input type="checkbox" data-bind="checked: feature_blockWhileDwelling" id="settings-featureBlockWhileDwelling"> {{ _('Actively pause communication during <code>G4</code> dwell command') }} <span class="label">{{ _('Repetier') }}</span>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2016-11-17 16:13:36 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="control-group">
|
|
|
|
|
<label class="control-label">{{ _('Send a checksum with the command')}}</label>
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label class="radio">
|
|
|
|
|
<input type="radio" name="sendChecksumGroup" value="print" data-bind="checked: feature_sendChecksum" id="settings-featureSendChecksumPrint"> {{ _('When printing') }}
|
|
|
|
|
</label>
|
|
|
|
|
<label class="radio">
|
|
|
|
|
<input type="radio" name="sendChecksumGroup" value="always" data-bind="checked: feature_sendChecksum" id="settings-featureSendChecksumAlways"> {{ _('Always') }} <span class="label">{{ _('Repetier') }}</span>
|
|
|
|
|
</label>
|
|
|
|
|
<label class="radio">
|
|
|
|
|
<input type="radio" name="sendChecksumGroup" value="never" data-bind="checked: feature_sendChecksum" id="settings-featureSendChecksumNever"> {{ _('Never') }}
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2015-01-13 10:31:45 +00:00
|
|
|
</div>
|
2015-01-13 17:20:13 +00:00
|
|
|
</div>
|
|
|
|
|
</form>
|