If you rely on the Cura Plugin for your workflow that so far was bundled with OctoPrint, be sure to install the Cura Legacy plugin that's now also available on the plugin repository.
Once installed the Cura Legacy plugin will import the settings and profiles from the former bundled Cura plugin automatically on first start.
- #1938 - Allow slicing parallel to printing on machines with more than one core.
- #2462 - Also scan and process watched folder on startup, not just during runtime.
- #2900 - Add new hook
octoprint.printer.sdcardupload
to allow plugins to override default way to upload files to the printer's SD card. - #2904 - Added new command line switches
-4
and-6
to restrict binding of the server to IPv4 or v6 respectively. - #2905 - Use maximum of communication & temperature timeout as serial timeout to avoid issues if the user has set a longer temperature reporting interval than (busy) communication timeout.
- #2945 - Adjust default regex for filtering temperature requests and responses to not filter some
M115
responses as well. New regex is(Send: (N\d+\s+)?M105)|(Recv:\s+(ok\s+((P|B|N)\d+\s+)*)?(B|T\d*):\d+)
. If you modified your terminal filters you'll have to update that manually. - #2947 - Printer safety check plugin: Disable warning for Monoprice Select Mini V2 with firmware v4.1+.
- #2953 - GCODE Viewer: Bring back the total number of printed layers.
- #2962 - Logging: deletion confirmation and bulk delete for log file management.
- #2965 - Add new hook
octoprint.events.register_custom_events
to allow plugins to cleanly add custom events by plugins. - #2970 - Add configurable list of commands that should never be sent to the printer, and a configurable list of commands on which OctoPrint should pause the current print job. Allows more granular configuration of behaviour of
M0
,M1
andM25
. - #2974 - Dedicated checkboxes to enable/disable webcam & timelapse functionality instead of relying on empty URLs.
- #2976 - Correctly identify v6 representations of v4 networks for auto login. Also correctly identify
::1
as local network. - #2978 - Use module name instead of plugin identifier when loading plugins from entry points. Also load bundled plugins under
octoprint.plugins.*
instead of their identifier. - #2982 - Log user activity of who started/paused/resumed/cancelled the current print. Include
owner
of a print job in event data and log. - #2983 - Add clear button to filter box in file list.
- #2986 - Forcelogin plugin: Make login page responsive.
- #2988 - Add
--disable-pip-version-check
to pip calls to stop pip's tendency to confuse people with it's update nag messages. - #2997 - Forcelogin plugin: Accept authentication through API key and/or authorization headers.
- #3010 - Add usage information for all folders to the API.
- #3014 - Hardening against corrupt language packs.
- #3023 - Hardening against corrupt preemptive caching configurations.
- #3030 - Backup plugin: Change name of generated backup file to have an
octoprint-
prefix. See also #3039. - #3033 - Open serial port in exclusive mode. See also #3036.
- #3038 - Detect Klipper firmware and adjust serial communication settings accordingly.
- #3040 - Add setting to disable fuzzy estimation display in the UI.
- #3049 - Workaround for broken PEP440 non-compliant Python version numbers under Debian. See also #3054.
- #3051 - Always show unfuzzy total print time and print left in a tooltip.
- #3055 - GCODE Viewer: Add ability to preview the current layer to be drawn.
- #3057 - Performance improvements in file management operations & more aggressive cleanup of stale metadata.
- #3066 - Docs: Add missing documentation about state in
jobs
endpoint on API. - #3072 - Hide temperature tab for machines with neither heated bed nor extruders.
- #3073 - Hide tool section in "Control" tab for machines with no extruders.
- #3074 - Updated several dependencies to newer versions.
- Add elapsed time and reason for failure to
PrintFailed
event. - Add
trigger_event
parameter toSettings.save
andPluginSettings.save
to triggerSettingsUpdated
event on save of settings. - Simplify configuration change handling of wizards.
- Minimum Python version is now 2.7.9.
- Create a backup of working
config.yaml
after successful startup. - Detect incomplete startups and set safe mode flag for next startup.
- Always show actual temperature as received from printer instead of "off" for very low temperatures. That way people will hopefully no longer blame OctoPrint for MINTEMP errors triggered by their firmware because it "can't handle temperatures under 10°C".
- Add full version string
OctoPrint <version>
to API. - Add systemd unit file.
- Deprecate appkey API in favor of new bundled Application Keys Plugin. AFAIK was never used by anyone anyhow.
- Take bundle status into account for plugin sorting, bundled plugins should always win before not bundled plugins if no sorting key is provided.
- Load generic templates after JavaScript assets, making it possible to reference already loaded libraries in any injected generic templates.
- Hardening against callback errors in decorators on default view.
- Unbundled the Cura plugin. It lives on as "Cura Legacy" at OctoPrint/OctoPrint-CuraLegacy and will also be available on the plugin repository.
- Hardening against invalid SD status reports.
- Cleanup now obsolete
metadata.yaml
files. - Use
monotonic_time
for relative times everywhere. - Support for heated chamber firmware capabilities.
- Remove
UI_API_KEY
and API disabling. With the inclusion of the ForceLogin plugin that doesn't serve a real purpose anymore in most cases, and it was only ever more of a rate limiting feature than an actual security measure anyhow. Plus it lead to a ton of false security alarms. - More resilience against broken configurations.
- More resilience against platform startup issues during environment detection.
- Don't confuse users with current
pip
's "Python 2.7 is EOL" messages - Define empty
UI_API_KEY
for backwards compatibility with third party plugins - Add config flag
server.ignoredIncompleteStartup
to override incomplete startup detection - Hardening against errors triggered during print time estimation
- Introduce setting to disable exclusive claim on serial port. There might be issues with this out there in the field, so having the option to disable it is a good thing.
- Docs: Improve docs of connection API to avoid issues as encountered in #3043.
- Action Command Prompt plugin: Set
M876
as default command as discussed in MarlinFirmware/Marlin#12982. - Action Command Prompt plugin: Add
M876
toEMERGENCY_PARSER
compliant commands, if configured accordingly. See also MarlinFirmware/Marlin#12982. - Action Command Prompt plugin: Signal support for action command prompts to firmware via
M876 P1
, if configured accordingly. See also MarlinFirmware/Marlin#12982. - Action Command Prompt plugin: Properly handle
PROMPT_SUPPORT
capability report from firmware and configure action command prompt support accordingly. See also MarlinFirmware/Marlin#12982. - Error Tracking plugin: New plugin utilizing sentry.io to track any kind of errors thrown in either backend or the default UI. Will ship disabled by default, has to be enabled by the user. Release Candidates will prompt users to enable it in order to improve on error detection during RC phase.
- Error Tracking: Severely restrict what gets tracked:
- we are only interested in handled core exceptions or unhandled exceptions
- we are not interested at all in
SerialException
- Error Tracking: Further restriction of what gets tracked
- Forcelogin plugin: Set sorting key to 0 to increase likelihood of coming before alternative UIs.
- Forcelogin plugin: Add favicon meta tags.
- Plugin Manager plugin, Softwareupdate plugin: Use scrollables instead of pagination.
- Printer Safety Check plugin: Add version restriction to Anycubic check.
- Tracking plugin: Add elapsed time and reason for failure to
print_failed
event. - Tracking plugin: Add elapsed time to
print_cancelled
event. - Tracking plugin: Track firmware/communication errors.
- Tracking plugin: Track printer safety warnings.
- Tracking plugin: Track uptime of OctoPrint in
ping
event.
- #1881 - Another attempt at fixing the hard to intentionally reproduce issue where all API endpoints start returning
403
responses. Caching headers have been adjusted and API key handling has been changed, which might fix things. - #2859 - Fix for used port and baudrate to not be properly reflected on the UI.
- #2916 - Possible workaround for a rare issue with the bundled Tornado dependency when running OctoPrint under Windows.
- #2954 - Backup plugin: Fix an issue with calculation of available free space.
- #2955 - Fix handling of
action:resume
oraction:resumed
received duringPAUSING
and handling ofaction:pause
oraction:paused
received duringRESUMING
. FixPAUSING
state not allowing a resume to proceed. See also MarlinFirmware/Marlin#12982. - #2959 - Enforce max height smaller than available viewport for notifications so that they cannot scroll out of the screen.
- #2967 - Tracking plugin: Fix exception caused on printer events when tracking is disabled and no UUID is thus set.
- #2971 - Forcelogin plugin: Fix "remember me" not working as advertised. See also #2973.
- #2992 - Backup plugin: Use
shutil.move
instead ofos.rename
and thus avoid issues with certain filesystem configurations. See also #2993. - #2996 - Use non-blocking writes on serial communication to avoid
select
blocking issues under certain conditions. See also #3004. - #3001 - Fix a race condition in SD printing detection.
- #3012 - Fix a unicode vs ASCII bug in translating plugins.
- #3024 - Fix inconsistent behaviour of CORS support on the API regarding static routes and the socket.
- #3029 & #3045 & #3061 - Fix issues in the German translation
- #3053 - GCODE Viewer: Fix an issue with multi extruder files where only a higher extruder index is actually used and all prior ones are undefined.
- #3080 - Virtual Printer plugin: Fix tracking of negative movements and homing.
- #3071 - Application Keys plugin: Fix appkeys not working when access control is disabled.
- #3088 (regression) - Fix 500 error on index rendering in case of plugins that use unicode in plugin vars.
- #3089 (regression) - Fix missing
_chamberTemp
definition - #3090 (regression) - Fix missing method causing an exception on
/api/printer/tool
endpoint - #3091 (regression) - Printer Safety Check: Fix unicode errors in certain communication scenarios.
- #3092 - Fix invalid tool parameter detection on
/api/printer/tool
endpoint. - #3098 - Backup: Exclude temporary timelapse files as well if timelapses are excluded from backup.
- #3105 (regression) - Virtual printer: Fix an encoding issue
- #3108 (regression) - Fix bug in port detection
- #3111 (regression) - Refresh port list after disconnect to detect vanishing ports
- #3115 (regression) - Fix extra newlines in
serial.log
and empty lines on terminal - #3116 - Fix potential division by zero
- Fix a typo in an error message during startup.
paused
action command must not trigger any local processing. See also MarlinFirmware/Marlin#12982.- Only use page size from local storage in
ItemListHelper
if configured. - Fix caching headers on main view.
- Fix missing default value for
self._errorValue
in comm layer. - Don't read return code on async system commands, it won't work.
- Fix wrong textual representation of
STARTING
state - Fix some potential encoding errors in the comm layer
- Fix for the file list in the UI not getting refreshed after an SD list refresh from the printer.
- Docs: Fix documentation for firmware info & capability plugin hooks.
- Docs: Fix a formatting issue in the event docs, making it seem like events were deprecated when it was only payload entries that are deprecated.
- Forcelogin plugin: Never handle the UI if ACL is disabled.
- Tracking plugin: Fix tracking not starting fully if enabled during runtime.
- Tracking plugin: Fix handling of missing print time. See also #3063.
Special thanks to everyone who contributed to this release, especially @agrif, @akraus53, @AndyQ, @CapnBry, @DanielJoyce, @devildant, @Fabi0San, @fake-name, @fieldOfView, @gloomyandy, @HarlemSquirrel, @hgross, @jubaleth, @melgish, @rgriebl and @tedder for their PRs.
- Commits
- Release Candidates:
- 1.3.11rc1
- 1.3.11rc2
- 1.3.11rc3
- A big Thank you! to everyone who reported back on these release candidates this time: @arhi, @b-morgan, @CRCinAU, @devildant, @evanquinnalaska, @FormerLurker, @gege2b, @isbric, @JohnOCFII, @kazibole, @nionio6915, @reloxx13, @schnello, @trunzoc, @vfrdirk & @zeroflow
OctoPrint has updated its sarge
dependency. The new version 0.1.5 has a small breaking change - the async
keyword
was renamed to async_
for compatibility reasons with Python 3.7. This might also affect your plugin if you happen to
use sarge
somewhere therein. OctoPrint has a workaround for this in place so your plugin will continue to function for
now. However, you should look into updating it to use async_
instead of async
if running against OctoPrint 1.3.10+.
See also here for the sarge
changelog.
- #1504 - Added detection of
EMERGENCY_PARSER
firmware capability and if it's present addM108
to the cancel procedure, to cancel blocking heatups. - #2674 - Improved error handling when the file OctoPrint is currently printing from becomes unreadable.
- #2698 - Made favicon color match custom theme color.
- #2717 - Various speed ups of the GCODE viewer.
- #2723 - Always allow the file analysis to run, even if the slicer does provide analysis data. Allows plugins implementing the analysis hook to override behaviour in all cases.
- #2729 - Allow additional video formats to appear in the timelapse tab.
- #2730 & #2739 & #2742 - Improved GCODE analysis speed.
- #2740 & #2859 - Make the connection panel reflect the current connection parameters.
- #2769 - Cura Plugin: Improve error handling a profile import fails.
- #2802 - Updated the temperature filters to ignore more sent and received lines belonging to temperature requests/responses that so far weren't covered.
- #2806 - Refactored some unit tests.
- #2827 - Spelling fixes in the documentation.
- #2839 - Recognize position reports that include a space after the axis, as e.g. observed in the firmware of AlfaWise U20
- #2854 - Auto detect Teacup firmware.
- #2865 - Added
speed
parameter toextrude
command on the/api/printer/tool
API endpoint which allows to set the feedrate to use for the extrude per request. - Improve SD print detection
- Added the Anonymous Usage Tracking Plugin. Tracking will only take place if the plugin is enabled and you’ve decided to opt-in during initial setup (or enabled it manually afterwards, through the corresponding switch in the settings). The tracking data will give insight into how OctoPrint is used, which versions are running and on what kind of hardware OctoPrint gets installed. You can learn about what will get tracked (if you opt-in) on tracking.octoprint.org. Please consider helping development by participating in the anonymous usage tracking.
- The OctoPi Support Plugin is now the Pi Support Plugin:
- Always enabled when running on a Raspberry Pi, regardless of whether OctoPi is used or not.
- Now detects undervoltage/overheat issues and displays an alert on the UI if such an issue is found.
- Changed detection method of the Raspberry Pi Model to something a bit more future proof.
- Added the Application Keys Plugin: The new bundled plugin offers an authorization for third party apps that doesn't involve manually copying API keys or using QR codes. Third party client developers are strongly advised to implement this workflow in their apps. Read more in the documentation.
- Added the Backup & Restore Plugin: The new bundled plugin will allow you to make a backup of your OctoPrint settings, files and list of installed plugins, and to restore from such a backup on the same or another instance. This should make migration paths from outdated installations to newer ones easier.
- Software Update Plugin: Automatic updates in outdated environments are no longer supported. After repeated issues out in the fields with ancient installations and ancient underlying Python environments, OctoPrint will no longer allow automatic updates of itself or plugins via the Software Update Plugin if a certain set of minimum versions of Python,
pip
andsetuptools
isn't detected. The current minimum versions reflect the environment found on OctoPi 0.14.0: Python 2.7.9, pip 9.0.1, setuptools 5.5.1. See also the related FAQ entry. - OctoPrint will now longer allow itself to be installed on Python versions less than 2.7.3 or higher than 2.7.x, to avoid peope running into issues in unsupported environments.
- Protect/educate against the dangers of opening up OctoPrint on the public internet:
- Detect connections to the UI from external IPs and display a warning in such cases.
- Added explicit warning to the first run wizard.
- Added explicit warning to the documentation.
- Added the ForcedLogin Plugin: Disables anonymous read-only access. To get back the old behaviour you'll have to explicitely disable this plugin.
- Removed printed/visited layer counts from the GCODE viewer since it was confusing people more than helping them.
- Added a warning to the documentation re expensive code in gcode hooks.
- Added the
no_firstrun_access
decorator. - Only disable autoscroll in the terminal when scrolling up, not when scrolling down.
- Added a new asset type
clientjs
for JS client library components. - Added new options for the
showConfirmationDialog
UI helper:oncancel
: callback to call when the cancel button is pressednoclose
: don't allow dismissing/closing the dialog without having chosen to proceed or cancel.
- Allow further access restrictions on API and Tornado routes by third party plugins.
- Support using the JS client library with an unset API key.
- Added documentation for
octoprint.util.commandline
module - More resilience against third party plugins that happily block or kill important startup threads
- Improved backwards compatibility of the
sarge
dependency by monkey patching it to support the oldasync
keyword parameter. Plugin authors are still advised to switch to the newasync_
parameter if running againstsarge>=0.1.5
, unmodified plugins should continue to work now however. For reference, OctoPrint 1.3.10 requiressarge==0.1.5post0
. - Better detection of ipv6 support by the underlying OS.
- Updated several dependencies to current versions where possible.
- Announcements Plugin: Add documentation.
- Anonymous Usage Tracking: Added elapsed time & reason of print failure to tracking (to be able to distinguish cancelled from errored out prints)
- Anonymous Usage Tracking: Added undervoltage/overheat detection on Pis to tracking (to correlate print failures to power issues, see also #2878).
- Backup: Exclude
generated
,logs
andwatched
folders from backup - Backup: Use base version for version check on restore
- Pi Support plugin: Better wording on the "undervoltage & overheat" popover & added a link to the FAQ entry
- Printer Safety Plugin: Added Ender 3 stock firmware, Micro3D stock firmware and iME firmware to detection
- #2629 - Cura Plugin: Fixed wrong gcode snippet being used when slicing against a printer profile with multiple extruders.
- #2696 - Fixed a comment.
- #2697 - Fixed documentation regarding unit of
estimatedPrintTime
field in the analysis result. - #2705 - Fixed internal server error on GET request for files on the printer's SD card.
- #2706 - Fixed a documentation error regarding HTTP status code returned on invalid API key
- #2712 - Fixed updating via commandline (
octoprint plugins softwareupdate:update
). - #2749 - Fixed empty API key being treated as anonymous API key.
- #2752 - Only reset timeout to shorter "busy" timeout once the busy configuration command has been sent to the printer.
- #2772 & #2764 - Stop sending commands to the printer if a fatal error is reported that results in a
kill()
, even if OctoPrint is configured to keep the connection going on firmware errors. - #2774 - Fixed autoscroll in the terminal stopping when switching browser windows or tabs.
- #2780 - Fixed error when trying to save timeout settings.
- #2800 - Fixed a conjugation error in the documentation.
- #2805 - Fixed duplicated method name in a unit test.
- #2846 - Removed requirement to have
messages.pot
exist to usebabel_extract
for translating plugins (see also #2846). - #2850 - Fixed a race condition in the web socket causing the push connection to fail (see also #2858).
- #2852 - Fixed issue with zeroconf announcement failing for the second instance of OctoPrint on the same Linux host due to a name conflict.
- #2872 (regression) - Fix Timeout when connecting to printer that doesn't send
start
on connect - #2873 (regression) - Fix GCODE viewer no longer being able to load files.
- #2876 (regression) - Fix semi functional UI when access control is disabled
- #2879 (regression) - Fix favicon in Firefox
- #2897 (regression) - Improved error resilience of
is_lan_address
so an error during its execution no longer nukes requests - #2898 (regression) - ForceLogin plugin no longer interferes with websocket messages sent by plugins right on UI load but instead puts them into a (limited) backlog and then sends them out in received order once the user has authenticated on the socket.
- #2903 - Backup plugin: Support for ZIP64 extensions for large zip files
- #2903 - Backup plugin: Better error reporting
- #2908 (regression) - Tracking: Use the file's
path
instead of just thename
for file name hashing. - #2920 - Backup plugin: Fix wrong compatibility check logic in plugin install during restore
- Fixed an issue with collision free SD name detection.
- Fixed some JS warnings in the GCODE viewer.
- Fixed wrongly used
.error
instead of the correct.fail
in the UI's logout handler. - Fixed the
disable_hotends
snippet in case of a shared nozzle setup. - Logout socket on UI logout
- Announcements Plugin: Fix an issue with atom feeds.
- Anonymous Usage Tracking: More error resilience for the wizard to possibly work around issues observed with the first RC (for which sadly no information was provided to reproduce and analyse).
- Anonymous Usage Tracking: Fixed homepage link in plugin manager
- Backup: Disable restore on Windows servers where it's not supported thanks to the Windows file system
- Backup: Fix reporting of restore failure due to version mismatch or other cases of an invalid backup
- Backup: Fix feedback in UI during restore, start feedback right on upload of backup
- Printer Safety: Fix localization of warning message
- Software Update Plugin: Fixed the update button being visible although the update is impossible.
- Software Update Plugin: More resilience against invalid data in config
- Software Update Plugin: Fixed version output of CLI update message
Special thanks to everyone who contributed to this release candidate, especially @BillyBlaze, @bradcfisher, @eyal0, @fieldOfView, @gdombiak, @gerfderp, @hashashin and @tedder for their PRs.
- Commits
- Release Candidates:
- 1.3.10rc1
- 1.3.10rc2
- 1.3.10rc3
- 1.3.10rc4
- A big Thank you! to everyone who reported back on these release candidates this time: @andrivet, @arminth, @autonumous, @benlye, @BillyBlaze, @bradcfisher, @Charly333, @ChrisHeerschap, @Crowlord, @ctgreybeard, @devildant, @dimkin-eu, @DominikPalo, @duncanlovett, @EddyMI3d, @FanDjango, @FormerLurker, @gdombiak, @GhostlyCrowd, @goeland86, @Goodeid, @hamster65, @hashashin, @jenilliii, @JohnOCFII, @kmanley57, @louispires, @markuskruse, @Nervemanna, @nionio6915, @ntoff, @paukstelis, @racenviper, @ramsesiden, @rtbon, @skohls, @stough, @tech-rat, @tedder, @ThaliaFromPrussia, @thisiskeithb, @trendelkamp, @truglodite, @tteckenburg, @varazir, @Webstas and @zeroflow
OctoPrint 1.3.9 includes a couple of dependency updates whose update during switch to 1.3.9 are known to trigger an "update failed" message within OctoPrint's update dialog:
[...]
OSError: [Errno 2] No such file or directory: '/home/pi/oprint/local/lib/python2.7/site-packages/python_dateutil-2.6.0-py2.7.egg'
Successfully installed OctoPrint-1.3.9rc4 backports-abc-0.5 frozendict-1.2 markdown-2.6.11 pkginfo-1.4.2 pyserial-3.4 python-dateutil-2.6.1 singledispatch-3.4.0.3 tornado-4.5.3
The update did not finish successfully. Please consult the log for details.
The update did in fact succeed and the issue lies with a change in the underlying update mechanism concerning the dependencies. This problem has been fixed in 1.3.7/1.3.8 and versions prior to 1.3.6 aren't yet affected, so there you won't ever see this message there. If you are still running 1.3.6 though and updating from it, simply run the update a second time through Settings > Software Update > Check for updates and clicking "Update now" in the reshown update notification.
OctoPrint 1.3.9 updates the internal webserver Tornado from 4.0.2 to 4.5.3. Among many many fixes and improvements this also includes a change (actually a fix) in the websocket implementation that requires you to tell your NGINX to use HTTP 1.1 instead of the default 1.0 to talk to OctoPrint. You can do this by simply adding
proxy_http_version 1.1;
to the location
config. The configuration examples have been adjusted accordingly. See also #2526.
Disabled IPv6 and now there are issues with the server after the update? Bind to IPv4 addresses only!
Starting with this release OctoPrint natively supports IPv6 and will attempt to bind to such addresses if it detects support in the underlying OS. If for whatever reason your OS doesn't support IPv6 even though Python's socket
says otherwise, you can tell OctoPrint to bind to an IPv4 address only either via the --host
command line parameter or server.host
in config.yaml
. Use 127.0.0.1
for localhost only, 0.0.0.0
for all IPv4 addresses or whatever specific IPv4 address you want to bind to.
As announced with the release of OctoPrint 1.3.6, the legacy plugin bundling flag has now been removed again. Make sure to check and if necessary fix your plugins if you haven't done that so far!
- #652 & #1545 - Added name of user who started a job to job info (see also #2576).
- #1203 & #1905 & #1797 & #2514 - Added support for plugins to override GCODE analysis provider and live print time estimation with their own implementations through two new hooks
octoprint.filemanager.analysis.factory
andoctoprint.printer.estimation.factory
. - #1217 - Software Update Plugin: Block the UI in general when an update is in progress (even in browser windows that didn't start it and logged in as user) so that no prints can be accidentally started during that.
- #1513 - Option to allow sending
M0
/M1
to the printer instead of swallowing it. - #2318 - Gcode Viewer: Visualize "current" print head location with a marker.
- #2351 - Support for binding to IPv6 addresses. OctoPrint will now default to binding to
::
if IPv6 support is detected, and to0.0.0.0
if not. Both the intermediary server and Tornado are instructed to bind their sockets to both IP versions. Positive IPv6 support detection relies onsocket.has_ipv6
beingTrue
socket.IPPROTO_IPV6
andsocket.IPV6_V6ONLY
being available (or redefined in case of Windows) in order to ensure dual stack binding for the intermediary server)
- #2379 - File and plugin list now use the browser's native scrollbar instead of slimscroll. Slimscroll is still bundled though, in case third party plugins might depend on it.
- #2487 - Improved documentation of system command configuration (see also #2498).
- #2495 - Removed unneeded filter from a template.
- #2498 - Improved documentation of the
async
flags of custom system commands. - #2512 - Log files will now contain client IP as provided by first entry in X-Forwarded-For header (or more if
server.reverseProxy.trustDownstream
is configured accordingly). - #2518 - Display absolute file upload date and time on hover (see also #2630).
- #2522 - Perform logging to disk asynchronously to avoid slow downs caused by it.
- #2541 - Added link to instructions to reset passwords. Part of solving #1239.
- #2543 - Added
--no-cache-dir
to pip calls to work aroundMemoryErrors
. See also #2535 and pypa/pip#2984 for more details. - #2558 - Have the watched folder processor ignore hidden files.
- #2572 - More error resilience in
ItemListHelper
against empty child elements. - #2573 - Added
M118
to commands to never automatically upper case. - #2583 - Handle scripts that are part of a job like other lines coming from a job and thus allow them to be kept back using
job_on_hold
. - #2597 - Disabled animation on cancel print confirmation.
- #2463 - Added documentation for
printingarea
anddimensions
ingcodeAnalysis
data model (see also #2540). - #2615 - Allowed more granular control over components to be upgraded through the software update plugin in its settings dialog.
- #2620 - Save
ItemListHelper
page sizes to local storage. - #2642 - Added methods for adding and updating items to
ItemListHelper
. - #2644 - Detect broken symlinks in configured folders on startup (see also further below).
- #2648 - Allowed class methods as callbacks in view models.
- A new API endpoint
/api/settings/templates
allows (admin only) access to information regarding the loaded templates and their order in the UI. That should allow plugins wishing to offer modification of ordering of tabs, sidebar components and so on to retrieve the data they need for that. - Have the watched folder processor handle vanished files gracefully.
- Removed
legacyPluginAssets
flag. - Improved requirement detection in
octoprint_setuptools
, added unit tests for that. - Bundled
sockjs-tornado
dependency. It hasn't been updated by the author in a while although there exist a number of issues plus patches for them, so we now vendor it. - Disabled position logging on cancel by default. If you need this, please explicitly enable it, it is causing too many issues in the field with misbehaving firmware.
- Extended URL test API to allow whitelist/blacklist check for the returned content type, used that to verify that the webcam snapshot URL actually returns images.
- Added timeout for position logging on pause/cancel. This should work around firmware which doesn't provide a proper
M114
resport that might be unparseable so we won't get stuck in those cases. - Migrated file storage metadata to json instead of YAML since it performs way way better.
- Added
missing linenumber
to recognized non-fatal error messages. - Got rid of some Python 2 only code.
- Added sanity checks for configured folders (see also #2644):
- on startup: check they are writable, if not revert to defaults
- on settings save: check they are writable, if not return an HTTP 400
- in the settings dialog: allow quick check of writability via test buttons
- Never send referrers with links
- Confirmation dialog helper now supports an HTML body.
- Sort serial ports naturally (e.g.
tty1
,tty2
, ...,tty10
instead oftty1
,tty10
, ...) - Added
paused
andresumed
action commands, see here for details. - Added two new hooks for firmware information,
octoprint.comm.firmware.info
andoctoprint.comm.firmware.capabilities
. - Added view model list to
OctoPrint.coreui
UI module. - Improved logging of
FatalStartupError
s. - Add sanity check for disabled plugin list (see also #2687 (comment)).
- Improve logging of exceptions triggered inside the state update worker (see also #2715).
- Workaround for a potential
pip
issue when updating components through the Software Update plugin. - Fix resend and timeout handling during an active
job_on_hold
. - Updated some dependencies:
- Tornado to 4.5. Version 5 sadly has issues with web socket handling when access behind
haproxy
. So far no solution has been found, so we stay at 4.5 for now. - jQuery to 3.3.1
- Several other Python dependencies
- Tornado to 4.5. Version 5 sadly has issues with web socket handling when access behind
- Announcement Plugin: Don't reload all notifications if one is marked as read.
- Printer Safety Plugin: Added new detected firmwares:
- Anycubic Mega
- Malyan M200
- CR-10S
- all Repetier firmware versions prior to 0.92
- any firmware that reports the
THERMAL_PROTECTION
capability as disabled to thermal protection warning (see also MarlinFirmware/Marlin#10465)
- Software Update Plugin: Default to
force_base = False
for version checks. - Virtual Printer Plugin: Allow defining custom
M114
response formats.
- #2333 (Part 3/3) - Updated to PySerial 3.4 and utilize read and write cancelling to work around disconnect delays.
- #2355 - Fixed non deterministic sorting of files with missing fields (e.g. date for SD card files) in OctoPrint's frontend.
- #2496 - Fixed files API not allowing to walk through the directory tree unless fetching the full listing recursively by making sure that first level children nodes are always provided.
- #2502 - Fixed some invalid HTML
- #2504 & #2532 & #2552 - Fixed various typos
- #2505 - Fixed user switch to
_api
user on use of the global API key inside the browser. - #2509 - Properly handle a printer reset while printing and don't get stuck in "Cancelling" state
- #2517 - Fixed baudrate negotiation with printers that need a bit of a delay between connection establishment and probing (e.g. Prusa MK3).
- #2520 - Fixed temperature presets being saved as strings instead of numbers.
- #2533 - Fixed API key copy button being enabled and generate button being disabled when no API key is set.
- #2534 - Fixed stale data in API key/user editor. See also #2604.
- #2539 - Made serial and baud rate lists consistent between connection panel and settings (see also #2606).
- #2547 - Fixed
PrintFailed
being triggered in case of an error while processing theafterPrintJobDone
GCODE script through introduction ofResuming
andFinishing
states. - #2549 - Fixed "uninstall plugin" icon in Plugin Manager staying clickable even if disabled.
- #2549 - Fixed issue with detection uninstallation of disabled plugins (see also #2650).
- #2551 - Fixed
0
being allowed for various intervals and timeouts where that values doesn't make sense. - #2554 - Fixed a JSON example in the docs.
- #2568 - Fixed a dead link in the plugin hooks documentation in the docs.
- #2579 - Fixed print time left of "a couple of seconds" even after the print job has finished.
- #2581 & #2587 - Fixed OctoPrint getting stuck in "Pausing" or "Cancelling" state due to a race condition.
- #2589 - Added missing
typePath
field on API response for files on the printer's SD card. - #2591 - Fixed markup of some HTML labels.
- #2595 - Fixed some UI appearance issues.
- #2601 - Properly handle relative paths for selection via
printer.select_file
. - #2621 - Fixed framerate not being read from config for rendering unrendered timelapses.
- #2625 - Fixed incompatibility of OctoPrint's plugin subsystem with Python wheels, which are the default mode of installing plugins from pip version 10.0.0 onward.
- #2632 - Fixed race condition in resend handling on missing
ok
s. - #2675 - Fixed a possible division by zero on SD upload.
- #2677 (regression) - Fix a deadlock when
job_on_hold
is utilized (causing issues at least with Octolapse) - #2683 - Fixed two missing spaces in the german translation.
- #2715 (regression) - Fix broken estimator initialization on SD print start and resulting crash of the state update worker.
- #2719 (regression) - Fix live print time estimation
- #2737 (regression) - Fix print button being enabled even though no file is selected.
- #2738 (regression) - Limit the use of the
--no-cache-dir
argument added topip
calls to such versions ofpip
that already support it (anything newer than 1.5.6). - Properly handle absolute paths for recovery data comparison.
- Fixed snapshot test button not resetting on error.
- Fixed decoupling of metadata logs in the file manager.
- Fixed "remember me" and IPv4/IPv6 sessions. This might also solve #1881.
- Removed Repetier resend repetition detection and handling code. It was buggy and introducing issues.
- Fixed script order:
beforePrint*
should always precede any commands from the print job. - Only perform write tests on directories where necessary. Especially avoid them on page rendition to prevent misconfigured folders from triggering an HTTP 500. (regression)
Special thanks to everyone who contributed to this release, especially @benlye, @dadosch, @dforsi, @ganey,@malnvenshorn, @ntoff, @tedder and @vitormhenrique for their PRs.
- Commits
- Release Candidates:
- 1.3.9rc1
- 1.3.9rc2
- 1.3.9rc3
- 1.3.9rc4
- A big Thank you! to everyone who reported back on these release candidates this time: arhi, b-morgan, brandstaetter, buchnoun, CapnBry, chatrat12, ChrisHeerschap, christianlupus, chrisWhyTea, Crowlord, ctgreybeard, Cyberwizzard, DrJuJu, ejjenkins, fieldOfView, FormerLurker, four-of-four, Galfinite, gege2b, HFMan, jjlink, jneilliii, JohnOCFII, jwg3, kazibole, larp-welt, McFly99, mod38, ntoff, OutsourcedGuru, paukstelis, pingywon, pscrespo, Rapsey, tech-rat, tedder, thess, Thisismydigitalself, tibmeister
- #2577 - Pin
psutil
dependency to version 5.4.3 since 5.4.4 as released today introduces a breaking change.
(Commits)
- #324 & #2414 - Native support for the following @ commands:
@pause
(pauses the print),@resume
(resumes the print),@cancel
or@abort
(cancels the print). More commands can be added through the plugin hooksoctoprint.comm.protocol.atcommand.*
. - #1951 - Fixed plugins being able to modify internal state data (e.g. progress, job), causing concurrent modification and resulting run time errors in the printer state processing.
- #2208 - New plugin hook
octoprint.comm.protocol.gcode.error
to allow plugins to override OctoPrint's handling ofError:
/!!
messages reported by the firmware. Can be used to "downgrade" errors that aren't actually fatal errors that make the printer halt. - #2213 - Made sure to prevent accidental configuration of a temperature cutoff value less than 1min for the temperature graph.
- #2250 - Added
octoprint.util.ResettableTimer
helper class. - #2287 - Added confirmation for attempting to disconnect during an ongoing print. See also #2466.
- #2302 - Detect invalid tools as reported by firmware and blacklist them for
T
commands. - #2317 - Removed capturing of post roll images for time based timelapses, was causing too much confusion and surprise.
- #2335 - First throw at detecting if a print from the printer's SD was started outside of OctoPrint via the printer's control panel. Requires some specific requirements to be fulfilled by the printer's firmware to function properly:
- Firmware must send a "File opened: ..." message on start of the print
- Firmware must respond to an immediately sent
M27
withSD printing byte <current>/<total>
- Firmware must stay responsive during ongoing print to allow for regular M27 polls (or push those automatically) or M25 to pause/cancel the print through OctoPrint.
- Firmware must send
Done printing file
or respond toM27
withNot SD printing
when SD printing finishes (either due to being done or to having been cancelled by the user).
- #2362 - Added option to configure timelapse snapshot timeout.
- #2367 - Added support for
//action:cancel
action command. - #2378 - Made GCODE viewer gracefully handle GCODE subcodes.
- #2385 - Made valid boolean trues check case insensitive.
- #2304 & #2405 - Added support to trust Basic Authentication headers for user login. Currently requires manual configuration through
config.yaml
, see theaccessControl.trustBasicAuthentication
andaccessControl.checkBasicAuthenticationPassword
settings. - #2338 - Allowed plugins to define GCODE script variables using the
octoprint.comm.protocol.scripts
hook. - #2406 - Extracted log management into its own bundled plugin and allow fine tuning of log levels.
- #2409 - Added
m4v
andmkv
to the list of accepted timelapse extensions. - #2444 - Support additional CSS classes on custom control buttons.
- #2448 - Also detect plugins in
~/.octoprint/plugins
that are provided as bytecodepyc
instead of sourcepy
files. - #2455 - Added option to configure SSL validation for snapshot URL.
- Support
M114
response format of RepRapFirmware (usesX:... Y:... Z:... E0:... E1:...
instead ofX:... Y:... Z:... E:...
) - Added refresh button to connection panel for easy refresh of the available ports to connect to without having to reload the whole page.
- Increased upper bound of PySerial dependency from 2.7 to 3.4. See also #2333.
- Switch to lower communication timeouts if support of the
busy
protocol by the firmware is detected. - Refactored serial settings dialog, now has sub tabs and more explanations.
- Allow to disable support for certain firmware capabilities, even if reported as supported by the firmware:
busy
protocol, temperature auto reporting, SD status auto reporting - Attached tags to GCODE commands moving through the comm layer and allowed plugins to access and extend these tags through the GCODE hooks. Makes it possible for plugins to detect the origin of a command (streamed file vs. GCODE script vs. user input vs. plugin), the point where it entered the system and so on. Also added a new logger
octoprint.util.comm.command_phases
that if set toDEBUG
will log the lifecycle of commands through the comm layer including tags tooctoprint.log
. See also the docs here. - Added new
job_on_hold
andset_job_on_hold
methods on the printer instance, allowing plugins to quickly stall the streaming of a queue. This should be used sparingly - abuse will have significant negative effects on the print job. Read the docs if you plan to utilize this. - Support extraction of plugin metadata even from disabled and blacklisted plugins through the AST of the module.
- Better logging of printer callback errors and utilization of
frozendict
for internal printer state propagation in an attempt to narrow down on #1951. Shouldfrozendict
cause issues it can be disabled through the settings inconfig.yaml
, just setdevel.useFrozenDictForPrinterState
tofalse
- Log comm state changes to
octoprint.log
. - Added a regular server heartbeat to the log (every 15min).
- Support SD status auto report by the firmware.
- Added
Not SD printing
to default "SD status" terminal filters. - Added custom
readline
implementation for the serial port. Instead of relying on PySerial'sreadline
that depending on the installed version might only read from the port one byte at the time, we now wait for one byte and then read everything available into a persistent buffer which then is used to fetch lines from. - Ensure that
callViewModelIf
doesn't try to call null or uncallablemethod
s. - Added links to the new Community Forum and the new location of the FAQ.
- Improved pip utility logging,
LocalPipHelper
wasn't producing output, making it hard to debug such non writable install directories. - Added a new bundled plugin "Printer Safety Check" that will try to identify printer/printer firmware with known safety issues such as missing thermal runaway protection.
- Plugin Manager: Reduce notification spam. See also #2260.
- Software Update Plugin: Better detection if an update is already running.
- Software Update Plugin: Refer to
plugin_softwareupdate_console.log
on update errors in log and notification.
- #2294 - Improved resilience against errors during gathering the file list (e.g. permission errors)
- #2296 - Fixed
X-Forwarded-For
handling in Flask Login through monkey patched backport. - #2297 - Return
403
instead of401
on missing/insufficient credentials. - #2311 - Fixed server not auto connecting on startup if port is set to
AUTO
(see also #2311). - #2316 - Check for valid queue entry in file analysis queue before trying to dequeue, fix for a HTTP
500
on upload of a file not supported for analysis. - #2321 & #2449 - Fixed wrong queuing order of cancel script & first line from printed file on quick start-cancel-start scenarios by introducing a two new states "Cancelling" and "Pausing".
- #2324 - Fixed 500 error when
- #2333 (Part 1/3) - Workaround for an update problem caused by interaction of
pip
with dependencies formerly installed as eggs throughpython setup.py install
. - #2333 (Part 2/3) - If supported by the underlying PySerial version, cancel all reads and writes on disconnect if possible for a faster connection release. Part 3 (forcing an upgrade of PySerial to 3.4 so this should work in more cases) will in OctoPrint 1.3.8.
- #2364 - Fixed firmware error reporting in case of cancelling a print due to a firmware error.
- #2368 - Fixed for incorrect handling of unicode filenames in cura slicer profiles
- #2371 - Removed "just now"/"gerade eben" label from temperature graph to work around a graph resize issue caused by that.
- #2392 - Fixed "Copy all" on terminal tab only working the first time.
- #2406 - Fixed
showTab
JS function of about dialog. - #2426 - Made resend logging to
octoprint.log
unicode safe - #2442 - Don't even import disabled plugins, use a dummy entry for them just like for backlisted plugins. More resilience against misbehaving plugins.
- #2461 - Fixed OctoPrint not properly disconnecting in case of a firmware error.
- #2494 - Fixed
undefined
values not saving in the settings. - #2499 (regression) - Fixed communication error notification lacking the actual error message.
- #2501 (regression) - Fixed a bug causing log downloads to fail with an HTTP 500 error.
- #2506 (regression) - Fixed
printer.get_current_data
andprinter.get_current_job
returningfrozendict
instead ofdict
instances, causing issues with plugins relying on being able to modify the returned data (e.g. dattas/OctoPrint-DetailedProgress#26). - #2508 (regression) - Fixed HTTP 500 error on
/api/slicing
in case of an unconfigured slicer. - #2524 - Ignore
wait
while job is on hold. - #2536 - Fix a wrong state tracking when starting an SD print through the controller, causing a disconnect due to a timeout.
- #2544 (regression) - Fix an exception when connecting to the raw websocket at
/sockjs/websocket
(instead of/sockjs/<server_id>/<session_id>/websocket
). - #2546 (regression) - Fix the
PRINT_FAILED
event getting triggered twice on print failure due to disconnect - Use
pkg_resources
to determine pip version during environment check instead ofimport pip; pip.__version__
since the latter causes issues with pip version 9.0.2. In the same spirit makepip.main
approach of callingpip
in the PipCaller the last resort during auto detection, only after tryingpip
orpip.exe
inside the same folder as the Python executable. - Use
octoprint.util.monotonic_time
instead ofmonotonic.monotonic
in comm layer. - Fixed timelapse not stopping on print failure due to firmware error due to missing
PrintFailed
event. - Announcement Plugin: Fixed a missing line break in case of more than three announcements in a notification.
- Docs: Documentation for printer profile related bits and pieces
- Docs: Various fixes of typos and grammar.
- Have
OctoPrintJsonEncoder
fall back to regular flask JSON encoder, otherwise we might not be able to serialize some data types we need to be able to serialize. (regression)
- #2547 - Error during processing of afterPrintJobDone script will trigger PRINT_FAILED event even though PRINT_DONE event was already triggered
- Commits
- Release Candidates:
- 1.3.7rc1
- 1.3.7rc2
- 1.3.7rc3
- 1.3.7rc4
- A special Thank you! to everyone who reported back on these release candidates this time: aaronkeck, akurz42, andrivet, anthonyst91, arhi, b-morgan, BryanSmithDev, chippypilot, ChrisHeerschap, Crowlord, dforsi, drdelaney, FormerLurker, goeland86, inspiredbylife, jbjones27, jesasi, jneilliii, JohnOCFII, kantlivelong, lnx13, makaper, markwal, MiquelAdell, ml0w, mmotley999, mrhanman, SCiunczyk, tdub415, tedder42, thatjoshguy, wescrockett
Note for upgraders and plugin authors: Change in the bundling of JS assets can lead to issues in plugins
A change to solve issues with plugins bundling JS assets that cause interference with other plugins (e.g. through the declaration of "use strict"
) and in general to add better isolation and error handling might cause errors for some plugins that go beyond your run-off-the-mill view model and also implicitly declare new globals.
If you happen to run into any such issues, you can switch back to the old way of bundling JS assets via the newly introduced "Settings > Feature > Enable legacy plugin asset bundling" toggle (check it, save the settings, restart the server). This is provided to allow for a minimally invasive adjustment period until affected plugins have been updated.
You can find out more about the change, how to know if a plugin is even affected and what do about it on the OctoBlog.
- #203 - Allow selecting the current tab via URL hashs. Also update URL hash when switching tabs, thus adding this to the browser history and allowing quicker back and forth navigation through the browser's back and forward buttons.
- #1026 - Automatically upper case parameters in GCODE commands sent from the Terminal tab. A black list is in place that prevent upper casing of parameters for GCODE commands where it doesn't make sense (default:
M117
). See also #2177. - #2050 - New hook
octoprint.comm.protocol.temperatures.received
that allows plugins to further preprocess/sanitize temperature data received from the printer. - #2055 - Increased the size of the API key field in the settings.
- #2056 - Added a Copy button to the API key field in the settings and user settings.
- #2094 - Allow UTF-8 display names for uploaded files. The files will still get an ASCII only name on disk, but the UTF-8 name used during upload will also be persisted and shown in the file list. This also allows using emojis in your file and folder names now.
- #2104 - Allow more URL schemes for installing plugins from. Supported schemes should now mirror what
pip
itself supports:http
,https
,git
,git+http
,git+https
,git+ssh
,git+git
,hg+http
,hg+https
,hg+static-http
,hg+ssh
,svn
,svn+svn
,svn+http
,svn+https
,svn+ssh
,bzr+http
,bzr+https
,bzr+ssh
,bzr+sftp
,bzr+ftp
,bzr+lp
. - #2109 - New decorator
@firstrun_only_access
for API endpoints that should only be available before first setup has been completed. - #2111 - Made the file list's scroll bar wider.
- #2131 - Added warning to restart, shutdown, reboot and update confirmations that that may disrupt ongoing prints, even those run from the printer's internal storage/SD. See also #2146 and #2152.
- #2138 - Slightly longer timeout when attempting to read from serial during auto detection via programming mode. Might help with detection of some slower printer controllers under certain circumstances.
- #2200 - Wrap all JS assets of plugins into one anonymous function per plugin. That way plugins using
"use strict";
won't cause hard to debug and weird issues with other plugins bundled after them. The down side is that plugins currently relying on implicit declaration of global helper functions or variables (function convert(value) { ... }
) to be available outside of their own plugin's JS assets will now run into errors. To compensate for that while affected plugins are adjusted to declare globals explicitly (window.convert = function(value) { ... }
), a temporary feature flag was added as "Settings > Features > Enable legacy plugin asset bundling" that switches back to the old form of bundling until plugins you rely on are updated. This flag will be removed again in a later version (currently planned for 1.3.8). See also the note above and #2246. - #2229 - Added note to printer profile dialog that the nozzle offsets for multi extruder setups are only to be configured if they are not already set in the printer's firmware.
- #2232 - Disable movement distance buttons when not connected to the printer or when printing, since they don't have any use then.
- #2239 - Improved the check summing speed, thus improving the general achievable throughput on the comm layer.
- Allow cancelling of file transfers
- Made check of how old an unrendered timelapse is more lenient buy looking at both the creation and last modification date and using the younger one.
- Made notifications in general auto-close faster.
- Make the first profile saved for a slicer the default profile for that slicer.
- New command
server
for testing server connections on the JS test API. - New hook
octoprint.accesscontrol.keyvalidator
that allows plugins to validate their own customized API keys to be used to access OctoPrint. - Updated
cookiecutter
,requests
andpsutil
dependencies. - Added safety warning to first run wizard.
- More error resilience against broken view models.
- New sub command
octoprint safemode
. Will set theserver.startOnceInSafeMode
setting in the config so that the next (re)start of the server after issuing this command will happen in safe mode. - New sub command
octoprint config effective
. Will report the effective config. - New centralized plugin blacklist (opt-in). Allows to prevent plugins/certain versions of plugins known to cause crippling issues with the normal operation of OctoPrint to be disabled from loading, if the user has opted to do so in the settings/wizard.
- Log how to enable
serial.log
toserial.log
if it's disabled. That will hopefully put at least a small dent in the amount of "It's empty!" responses in tickets ;) - Force new Pypi index URL in
requirements.txt
as an additional work around against old tooling. - Prefer plain
pip
overgit
for updating OctoPrint. - Added environment detection and logging on startup. That should give us more information about the environment to produce a reported bug in.
- Added OctoPi support plugin that provides information about the detected OctoPi version. Will only load if OctoPi is detected.
- More dynamic plugin mixin detection. Now using a base class instead of having to list all types manually. Should greatly reduce overhead of adding new mixin types.
- Support leaf merging for file extension tree, allowing to add new file extensions to types registered by default.
- Allow non GCODE SD file transfers if registered as
machinecode
through e.g. a plugin's file extension hook. Caution: This doesn't make streaming arbitrary files to the printer via serial work magically. It merely allows that, it's up to the firmware to actually be able to handle that. Also, the regular GCODE streaming protocol is used, so if the streamed file contains control characters from that (e.g.M29
to signal the end of the streaming process), stuff will break! - Added a test button for the online connectivity check.
- Announcements plugin: Added UTM Tags.
- Cura plugin: Less
not configured yet
logging. - GCODE viewer: Added advanced options that allow configuring display of bounding boxes, sorting by layers and hiding of empty layers.
- GCODE viewer: Persist all options to local storage so they will be automatically set again the next time the GCODE viewer is used in the same browser.
- Software update: Auto-hide "Everything is up-to-date" notification.
- Easier copying of terminal contents thanks to dedicated copy button.
- Timelapse: #2067 - Added rate limiting to z-based timelapse capturing to prevent issues when accidentally leaving this mode on with vase mode prints.
- Timelapse: Refactored configuration form & added reset button to switch back to currently active settings.
- Timelapse: Sort timelapses by modification instead of creation time (creation time can be newer if a backup restore was done).
- Virtual printer: Support configurable ambient temperature for testing.
- Virtual printer: Support configurable reset lines.
- Virtual printer: Added new debug trigger
trigger_missing_lineno
. - Virtual printer: Allow empty/
None
prepared oks, allowing to simulate lost acknowledgements right on start. - Docs: #2142 - Added documentation for the bundled virtual printer plugin.
- Docs: #2234 - Added info on how to install under Suse Linux.
- Docs: Added example PyCharm run configuration that includes automatic dependency updates on start.
- Docs: Added information on how to run the test suite.
- Various refactorings
- Various documentation updates
- Fetch plugin blacklist (and also announcements, plugin notices and plugin repository) via https instead of http.
- #2044 - Fix various typos in strings and comments
- #2048 & #2176 - Fixed various warnings during documentation generation.
- #2077 - Fix an issue with shared nozzles and the temperature graph, causing temperature to not be reported properly when another tool but the first one is selected. See also #2077
- #2108 - Added no-op default action to login form so that username + password aren't sent as GET parameters if for some reason the user tries to log in before the view models are properly bound and thus the AJAX POST submission method is attached.
- #2111 - Prevent file list's scroll bar from fading out.
- #2146 - Fix initialization of temperature graph if it's not on the first tab due to tab reordering.
- #2166 - Workaround for a Firefox bug that causes the Drag-n-Drop overlay to never go away if the file is dragged outside of the browser window.
- #2167 - Fixed grammar of print time estimation tooltip
- #2175 - Cancel printing when an external reset of the printer is detected on the serial connection.
- #2181 - More resilience against non-standard
M115
responses. - #2182 - Don't start tracking non existing or nonfunctional tools if encountering a temperature command referencing said tool. See also kantlivelong/OctoPrint-PSUControl#68.
- #2196 - Marked API key fields as
readonly
instead ofdisabled
to allow their contents to be copied in Firefox (which wasn't possible before). - #2203 - Reset temperature offsets to 0 when disconnected from the printer.
- #2206 - Disable pre-configured timelapse if snapshot URL of ffmpeg path are unset.
- #2214 - Fixed temperature fields not selecting in MS Edge on focus.
- #2217 - Fix an issue in
octoprint.util
causing a crash when running under PyPy instead of CPython. - #2226 - Handle
No Line Number with checksum, Last Line: ...
errors from the firmware. - #2233 - Respond with
411 Length Required
when content length is missing on file uploads. - #2242 - Fixed an issue where print time left could show "1 days" instead of "1 day".
- #2262 (regression) - Fixed a bug causing
Error:checksum mismatch, Last Line: ...
errors from the firmware to be handled incorrectly. - #2267 (regression) - Fixed a bug causing the GCODE viewer to not get properly initialized due to a JS error on load if "Also show next layer" was selected.
- #2268 (regression) - Fixed a bug causing a display error with the temperature offsets. If one offset was changed, all others seemed to revert back to 0.
- Fixed cleanup of unrendered timelapses with certain names.
- Fixed a caching issue with the file list API and the slicing API.
- Fixed initial sizing of the temperature graph.
- More resilience against corrupt
.metadata.yaml
files. - More resilience against corrupt/invalid entries for system actions.
- More resilience against invalid JSON command requests.
- More resilience against broken packages in the python environment.
- Don't evaluate
onWebcamLoaded
more than once when switching to the webcam tab. - Fixed
octoprint config
sub command. - Fixed deactivated user accounts being able to login (albeit without a persistent session). Show fitting error instead.
- Fixed temperature auto report after an external reset.
- Don't log full request headers in Tornado on an error.
- Fix displayed notification message for synchronous system commands. Was accidentally swapped with the one for asynchronous system commands.
- GCODE viewer: Fix error on empty layers.
- Virtual printer: Fix resend simuation.
- Docs: Fixed CSS of line numbered listings.
- Docs: Updated mermaid to fix a deprecation warning.
- Fixed ordering of plugin assets, should be alphabetical based on the plugin identifier. (regression)
- Fixed an issue causing redundant software update configuration settings to be written to
config.yaml
, in turn causing issues when downgrading to <1.3.5. (regression) - Fixed an issue detecting whether the installed version is a release version or a development version. (regression)
- Commits
- Release Candidates:
- 1.3.6rc1
- 1.3.6rc2
- 1.3.6rc3
- A special Thank you! to everyone who reported back on these release candidates this time: andrivet, b-morgan, bjarchi, chippypilot, ChrisHeerschap, cosmith71, Crowlord, ctgreybeard, fiveangle, goeland86, jbjones27, jneilliii, JohnOCFII, Kunsi, Lordxv, malnvenshorn, mcp5500, ntoff, ripp2003 and schorsch3000
- #1162 - Allow
octoprint.comm.protocol.gcode.queuing
hook to return a list of commands. - #1572 & #1881 - Refactored web interface startup process to minimise risk of race conditions and speed improvements. Also added sequence diagram to the documentation showing the new processing order.
- #1640 - Mouse over temperature graph to get exact data for that time.
- #1679 - Support temperature autoreporting by the firmware instead of polling if the firmware reports to support it. For this to work with Marlin 1.1.0 to 1.1.3 you'll need to explicitly enable
EXTENDED_CAPABILITIES_REPORT
andAUTO_REPORT_TEMPERATURES
in your firmware configuration, otherwise your firmware won't report that it actually supports this feature. - #1737 - Auto-detect Anet A8 firmware and treat as Repetier Firmware (which it actually appears to be, just renamed - thanks Anet for making this even harder).
- #1842 - Update bundled FontAwesome to 4.7 (see also #1915).
- #1910 - Make last/pause/cancel temperature available for GCODE scripts.
- #1925 - Include configured webcam stream URL in "Webcam stream not loaded" message for logged in users/admins. Slightly different wording for guests vs users vs admins.
- #1941 - Enable "block while dwelling" flag when Malyan firmware is detected since that firmware seems to handle
G4
identically to Repetier Firmware instead of Marlin (like it claims to). See also #1762. - #1946 - Add option to disable position logging on cancel/pause. See "Log position on cancel" and "Log position on pause" under Settings > Serial > Advanced options.
- #1971 - Refactored temperature inputs. They now sport some fancy +/- buttons to increment/decrement the current temperature (which also auto submit after a couple of seconds) and easier editing by keyboard. The temperature offset was also slightly redesigned to make room for that.
- #1975 - Better error reporting when deleting timelapses.
- #2010 - Slight refactoring in the terminal tab: Full width input field, auto focus of input field when just clicking on terminal output.
- #2011 - Centralized online connectivity check (with opt-in of course). None of the bundled plugins will attempt to fetch data from the net when the connectivity check indicates that would fail anyhow. This should improve server startup times and various requests when running isolated.
- #2025 - More verbose logging of asynchronous system commands (e.g. restart/shutdown).
- Allow timelapse configuration through UI even when not connected to the printer (suggested in #1918)
- Disable "Upload to SD" UI elements while printing (suggested in #1914)
- Update bundled SockJS to 1.1.2 incl. source maps
- Set
X-Robots
HTTP header and removeServer
header from all responses, also setrobots
meta tag in page. - Don't require to enter programmer mode for printer port autodetection when there's only one possible port candidate anyhow.
- More sensible sorting of baudrates (additionally configured, then 115200, then 250000, then everything else).
- Don't show "Unhandled communication error" on autodetection failure.
- Make timeout after which to unload the webcam stream after navigating away from it configurable (as suggested in #1937)
- Add
ToolChange
event and tool change GCODE scripts - Support parsing GCODE subcodes.
- Add
octoprint.users.factory
hook, allowing plugins to extend/swap out the user manager OctoPrint uses. - Corewizard: Disable view model and client code if it's not actually required.
- Corewizard: Disable injection of JS files into UI when it's not actually required.
- GCODE analysis: Moved into its own subprocess. That should improve performance on multi core systems.
- GCODE viewer: Ignore coordinates outside bed when zooming/centering on model. Those usually are nozzle priming routines.
- JS Client Lib: Add centralized browser detection as
OctoPrint.coreui.browser
. Available properties:chrome
,firefox
,safari
,ie
,edge
,opera
as well asmobile
anddesktop
, all of which are boolean values. - Plugin Manager plugin: Detect if a plugin requires a reconnect to the printer to become fully active/inactive.
- Software Update plugin: Force exact version when updating OctoPrint and tracking releases.
- Software Update plugin: "Devel RCs" release channel now also tracks maintenance RCs. That way people don't have to toggle between the two any more to get all RCs.
- Software Update plugin:
bitbucket_commit
check type now supports API credentials (see also #1993). - Wizard: Allow suppressing the "the settings got updated" dialog through subwizards, in case they need to update settings asynchronously as part of their workflow.
- More resilience against expected folders being files.
- More resilience against a wrong user manager class being configured.
- Some code refactoring & cleanup.
- Some HTML & CSS improvements.
- #1916 - Fix webcam not loading if first/initial tab is "Control"
- #1924 - Filter out source map links from bundled JS webassets.
- #1943 - Fix issue causing unnecessary creation of default printer profile on startup
- #1946 - Decouple writing of print log from everything else. Fixes delay in cancel processing.
- #1963 & #1974 - Allow empty & custom size in print job events. Also fixes an issue with timelapses when printing from SD on printers that require the GPX plugin to work.
- #1996 - Support all line ending variantes in the GCODE viewer. Solves an issue with GCODE generated for Prusa's multi material extruder since that uses only
\r
for some reason. - #2007 - Fix issue parsing temperature lines from the printer that contain negative values.
- #2012 - Fix command line interface of Software Update plugin.
- #2017 - Fix issue in GCODE viewer with files that contain a visit to the first layer twice (e.g. brim, then nose dive from higher z for actual model), causing all but the last layer segment to not be rendered.
- #2033 (regression) - Temperature tab: Fix for legend in graph not updating with current values on mouse over.
- #2033 (regression) - Temperature tab: Fix for new temperature inputs not fitting on one line in Firefox.
- #2033 (regression) - Temperature tab & GCODE viewer: Fix for available tools (and offsets) not properly updating on change of printer profile.
- #2033 (regression) - Wizard: Fix sorting of required wizards not properly handling non-ASCII unicode.
- #2035 (regression) - Fix an issue of the server not starting up if there's a file in the analysis backlog. The reason for this is that spawning a new process while the intermediary server is active causes the server port to be blocked (this is due to how subprocessing works by default), in turn leading to an error on startup since the port cannot be bound by the actual server. Since the GCODE analysis takes now place in its own subprocess and hence triggers this problem, it had to be moved until after the actual server has already started up to avoid this problem.
- #2059 (regression) - Fix an issue causing the new temperature controls to wrap on touch enabled devices when the temperature dropdown is opened.
- #2090 (regression) - Fix an issue causing an aborted server startup under Windows if the timing is just right.
- #2135 (regression) - Fix an issue causing import errors inside the GCODE analysis tool in certain environments due to
sys.path
entries causing relative imports. - #2136 (regression) - Fix wrong minimum version for
sockjs-tornado
dependency. - #2137 (regression) - Fix issue with session cookies getting lost when running an OctoPrint instance on a subpath of another (e.g.
octopi.local/
andoctopi.local/octoprint2
). - #2140 (regression) - Fix issue with locale dependent sorting of sub wizards during first time setup causing issues leading to the wizard not being able to complete.
- Fix various popup buttons allowing multiple clicks (suggested in #1914)
- Software Update Plugin: Perform server restart asynchronously. Should reduce restart times on updates significantly.
- Don't hex-escape
\t
,\r
or\n
in terminal output - Use client side default printer profile if the default profile could not be found on the server
- Use both "to" and "from" coordinates of a given move for min/max model coordinate calculation in GCODE analysis. Otherwise wrong values could be calculated under certain circumstances.
- Fix potential race condition in resend request handling.
- Fix potential race condition in web socket handling.
- Fix handling of tool offsets in GCODE analysis - diverted too far from firmware implementations, causing wrong calculations.
- Fix
FileAdded
,FileRemoved
,FolderAdded
,FolderRemoved
events not being fired with the correct event name. - Fix potential division by zero in progress reporting if the timing was just right.
- Fix sorting order for multiple tools in the "State" panel.
- Fix file position vs. line ending handling in GCODE viewer. Could lead to slightly off file position calculation and hence possibly to the wrong move being plotted when synchronizing with print progress.
- Wizard: Fix
onWizardPreventSettingsRefreshDialog
callback invocation. (regression) - Corewizard plugin: Fix
firstrunonly
wizards (e.g. for printer profile configuration) being displayed again if any of the sub wizards (e.g. for the online check opt-in and configuration) is active. (regression) - Fix an issue causing rollover of
serial.log
to fail under Windows. (regression)
- Commits
- Release Candidates:
- 1.3.5rc1
- 1.3.5rc2
- 1.3.5rc3
- 1.3.5rc4
- A special Thank you! to everyone who reported back on these release candidates this time: alexxy, andrivet, b-morgan, BillyBlaze, CapnBry, chippypilot, ctgreybeard, cxt666, DaSTIG, fhbmax, fiveangle, goeland86, JohnOCFII, Kunsi, mgrl, MoonshineSG, nate-ubiquisoft, Neoolog, ntoff, oferfrid, roygilby, SAinc, sbts, thess, tkurbad, tsillini and TylonHH.
OctoPrint's firmware autodetection is now able to detect this printer. Currently when this printer is detected, the following firmware specific features will be enabled automatically:
- Always assume SD card is present (
feature.sdAlwaysAvailable
) - Send a checksum with the command: Always (
feature.alwaysSendChecksum
)
Since the firmware is a very special kind of beast and its sources are so far unavailable, only tests with a real printer will show if those are sufficient settings for communication with this printer to fully function correctly. Thus, if you run into any issues with enabled firmware autodetection on this printer model, please add a comment in #1762 and explain what kind of communication problem you are seeing. Also make sure to include a serial.log
!
- #1942 - Fixed crash on startup in case of an invalid default printer profile combined with "auto-connect on startup" being selected and the printer available to connect to.
- Commits
- Release Candidates:
- None since this constitutes a hotfix release to fix an apparently very rare bug introduced with 1.3.3 that seems to be affecting a small number of users.
OctoPrint's firmware autodetection is now able to detect this printer. Currently when this printer is detected, the following firmware specific features will be enabled automatically:
- Always assume SD card is present (
feature.sdAlwaysAvailable
) - Send a checksum with the command: Always (
feature.alwaysSendChecksum
)
Since the firmware is a very special kind of beast and its sources are so far unavailable, only tests with a real printer will show if those are sufficient settings for communication with this printer to fully function correctly. Thus, if you run into any issues with enabled firmware autodetection on this printer model, please add a comment in #1762 and explain what kind of communication problem you are seeing. Also make sure to include a serial.log
!
- #478 - Made webcam stream container fixed height (with selectable aspect ratio) to prevent jumps of the controls beneath it on load.
- #748 - Added delete confirmation and bulk delete for timelapses. See also the discussion in brainstorming ticket #1807.
- #1092 - Added new events to the file manager:
FileAdded
,FileRemoved
,FolderAdded
,FolderRemoved
. Contrary to theUpload
event,FileAdded
will always fire when a file was added to storage through the file manager, not only when added through the web interface. Extended documentation accordingly. - #1521 - Software update plugin: Display timestamp of last version cache refresh in "Advanced options" area.
- #1734 - Treat default/initial printer profile like all other printer profiles, persisting it to disk instead of
config.yaml
and allowing deletion. OctoPrint will migrate the existing default profile to the new location on first start. - #1734 - Better communication of what actions are available for printer profiles.
- #1739 - Software update plugin: Added option to hide update notification from users without admin rights, added "ignore" button and note to get in touch with an admit to update notifications for non admin users.
- #1762 - Added Malyan M200/Monoprice Select Mini to firmware autodetection.
- #1811 - Slight rewording and rearrangement in timelapse configuration, better feedback if settings have been saved.
- #1818 - Support both Marlin/Repetier and Smoothieware interpretations of
G90
after anM83
in GCODE viewer and analysis. Select "G90/G91 overrides relative extruder mode" in Settings > Features for the Smoothieware interpretation. - #1858 - Announcement plugin: Images from registered feeds now are lazy loading.
- #1862 - Automatically re-enable fancy terminal functionality when performance recovers.
- #1875 - Marked the command input field in the Terminal tab as not supporting autocomplete to work around an issue in Safari. Note that this is probably only a temporary workaround due to browser vendors working on deprecating
autocomplete="off"
support and a different solution will need to be found in the future. - Added link to
SerialException
FAQ entry to terminal output when such an error is encountered, as suggested in #1876. - Force refresh of settings on login/logout.
- Made system wide API key management mirror user API key management.
- Make sure to always migrate and merge saved printer profiles with default profile to ensure all parameters are set. Should avoid issues with plugins trying to save outdated/incomplete profiles.
- Added note on lack of language pack repository & to use the wiki for now.
- Earlier validation of file to select for printing.
- Limit verbosity of failed system event handlers.
- Made bundled python client
octoprint_client
support multiple client instances. - Disable "Reload" button in the "Please reload" overlay once clicked, added spinner.
- Updated pnotify to 2.1.0.
- Get rid of ridiculous float precision in temperature commands.
- Detect invalid settings data to persist (not a dict), send 400 status in such a case.
- More logging for preemptive caching, to help narrow down any performance issues that might be related to this.
- Further decoupling of some startup tasks from initial server startup thread for better parallelization and improved startup times.
- Announcement plugin: Added combined OctoBlog feed, replacing news and spotlight feed, added corresponding config migration.
- Announcement plugin: Subscribe to all registered feeds by default to ensure better communication flow (all subscriptions but the "Important" channel can however be unsubscribed easily, added corresponding note to the notifications and also a configuration button to the announcement reader).
- Announcement plugin: Auto-hide announcements on logout.
- Announcement plugin: Order channels server-side based on new order config setting.
- Plugin manager: Show warning when disabling a bundled plugin that is not recommended to be disabled, including a reason why disabling it is not recommended. Applies to the bundled announcement, core wizard, discovery and software update plugins.
- Plugin manager: Support for plugin notices for specific plugins from the plugin repository, e.g. to inform users of specific plugins about known issues with the plugin or instruct to update when the software update mechanism of the current plugin version turns out to be misconfigured. Supports matching installed plugin versions and OctoPrint versions to target only affected users.
- Plugin manager: Better visualization of plugins disabled on the repository, no longer shown as "incompatible" but "disabled", with link to the plugin repository page that contains more information.
- Plugin manager: Detect necessity to reinstall a plugin provided through archive URL or upload and immediately do that instead of reporting an "unknown error" without further information.
- Plugin manager: Added
freebsd
for compatibility check. - Plugin manager: More general flexibility for OS compatibility check:
- Support for arbitrary values to match against
- Allow 1:1 check again
sys.platform
values (withstartswith
). - Support black listing (
!windows
) additionally to white listing. A detected OS must match all provided white list elements (if the white list is empty that is considered to be always the case) and none of the black list elements (if the black list is empty that is also considered to be always the case).
- Software update plugin: New check type
bitbucket_commit
(see also #1898) - Docs: Now referring to dedicated Jinja 2.8 documentation as hosted at jinja.octoprint.org for all template needs, to avoid confusion when consulting current Jinja documentation as available on its project page (2.9+, which OctoPrint can't upgrade to due to backwards incompatible changes).
- Docs: Better documentation of what kind of input the
FileManager
accepts forselect_file
. - Docs: Specified OctoPrint version required for plugin tutorial.
- #202 - Fixed an issue with the drag-n-drop area flickering if the mouse was moved too slow while dragging (see also #1867).
- #1671 - Removed obsolete entry of no longer available filter for empty folders from file list options.
- #1821 - Properly reset "Capture post roll images" setting in timelapse configuration when switching from "off" to "timed" timelapse mode.
- #1822 - Properly reset file metadata when a file is overwritten with a new version.
- #1836 - Fixed order of
PrintCancelled
andPrintFailed
events on print cancel. - #1837 - Fixed a race condition causing OctoPrint trying to read data from the current job on job cancel that was no longer there.
- #1838 - Fixed a rare race condition causing an error right at the very start of a print.
- #1863 - Fixed an issue in the analysis of GCODE files containing coordinate offsets for X, Y or Z via
G92
, leading to a wrong calculation of the model size thanks to accumulating offsets. - #1882 - Fixed a rare race condition occurring at the start of streaming a file to the printer's SD card, leading to endless line number mismatches.
- #1884 - CuraEngine plugin: Fixed a potential encoding issue when logging non-ASCII parameters supplied to CuraEngine
- #1891 - Fixed error when handling unicode passwords.
- #1893 - CuraEngine plugin: Fixed handling of multiple consecutive uploads of slicing profiles (see also #1894)
- #1897 - Removed possibility to concurrently try to perform multiple tests of the configured snapshot URL.
- #1906 - Fixed interpretation of
G92
in GCODE analysis. - #1907 - Don't send temperature commands with tool parameter when a shared nozzle is defined.
- #1917 (regression) - Fix job data resetting on print job completion.
- #1918 (regression) - Fix "save as default" checkbox not being disabled when other controls are disabled.
- #1919 (regression) - Fix call to no longer existing function in Plugin Manager UI.
- #1934 (regression) - Fix consecutive timed timelapse captures without configured post roll.
- Fixed API key QR Code being shown (for "n/a" value) when no API key was set.
- Fixed timelapse configuration API not returning 400 status code on some bad parameters.
- Fixed a typo (see also #1826).
- Fixed
filter
andforce
parameters on/api/files/<origin>
. - Fixed message catchall
*
not working in the socket client library. - Fixed analysis backlog calculation for sub folders.
- Fixed
PrinterInterface.is_ready
to behave as documented. - Use black listing instead of white listing again to detect if the
daemon
sub command is supported or not. Should resolve issues users of FreeBSD and the like where having withoctoprint daemon
. - Use
pip
instead ofpython setup.py develop
inoctoprint dev plugin:install
command to avoid issues on Windows. - Docs: Fixed a wrong command in the plugin tutorial (see also #1860).
If you maintain a plugin that extends OctoPrint's JavaScript Client Library like demonstrated in e.g. the bundled Software Update Plugin you'll need to update the way you register your plugin to depend on OctoPrintClient
and registering your extension as shown here instead of directly writing to OctoPrint.plugins
(like it was still done here). That way your extensions will be available on all instances of OctoPrintClient
, not just the global instance OctoPrint
that gets created on startup of the core web interface.
If all you plugin does with regards to JavaScript is registering a custom view model and you have no idea what I'm talking about regarding extending the client library, no action is necessary. This heads-up is really only relevant if you extended the JavaScript Client Library.
- #732 - Have OctoPrint's
python setup.py clean
build on stockpython setup.py clean
for better compatibility with packaging systems - #1506 - Better handle really long "dwell"/
G4
commands on Repetier firmware (as for example apparently recommended to use with Wanhao D6 and similar printers for nozzle cooling) by actively stalling communication from OctoPrint's side as well. That way we no longer run into a communication timeout produced by a 5min dwell immediately happily acknowledged by the printer with anok
. - #1542 - Support for multi-extruder setups with a shared single nozzle and heater (e.g. E3D Cyclops, Diamond hotend, etc).
- #1676 - Trigger line number reset when connected to printer and seeing
start
message. This should fix issues with printer communication when printer resets but reset goes otherwise undetected. - #1681 - Support for connecting to multiple OctoPrint instances via the JavaScript Client Library.
- #1712 - Display current folder name in file list if in sub folder.
- #1723 - Ignore leading
v
orV
on plugin version numbers for version checks in plugin manager and software updater (see also #1724) - #1770 - Better resilience against null bytes received from the printer for whatever reason.
- #1770 - Detect printer as connected even when only receiving a
wait
instead ofok
. Should solve issues with initial connect where printer sends garbage over the line that eats/covers theok
if printer also sends regularwait
messages when idle. - #1780 - Work around for Safari re-opening one copy of the webcam stream after the other and eating up bandwidth unnecessarily (see also #1786)
- #1790 - Removed unused "color" property from printer profile editor.
- #1805 - Better error resilience against invalid print history data from plugins that replace the printer communication.
- Better error resilience in Plugin Manager against wonky version data in repository file.
- Added a "Restart in safe mode" system menu entry that will always be available if the restart command is configured
- CLI: Only offer
daemon
sub command on Linux (since that it's the only OS it works on) - Less throttling of analysis of GCODE files from the analysis backlog. Should still leave Pi and friends air to breathe but allow a slightly faster processing of the backlog.
- Added an explanation of safe mode to the docs.
- Log OctoPrint version & plugin list when detecting log rollover.
- Allow
UiPlugin
s to define additional fields for ETag generation. - Allow
UiPlugin
s utilizing OctoPrint's stock templates to filter out what they don't need. - Locales contained in
translations
of plugins will now be registered with the system. That way it's possible to provide translations for the full application through plugins. - Abort file analysis if file is about to be overwritten
- Software Update Plugin: Refresh cache on startup, prevent concurrent refresh
- More solid parsing of request line number for resend requests. Should improve compatibility with Teacup firmwares. Based on issue reported via PR #300
- #733 - Fixed multiple event handler commands running concurrently. Now they run one after the other, as expected.
- #1317 - Fixed a color distortion issue when rendering timelapses from higher resolution source snapshots that also need to be rotated by adjusting
ffmpeg
parameters to avoid an unexpected behaviour when a pixel format and a filter chain are required for processing. - #1560 - Make sure we don't try to use an empty
logging.yaml
- #1631 - Disable "Slice" button in slice dialog if a print is ongoing and a slicer is selected that runs on the same device as OctoPrint. The server would already deny such requests (simply due to performance reasons), but the UI didn't properly reflect that yet.
- #1671 - Removed "Hide empty folders" option from file list. Didn't really add value and caused usability issues.
- #1771 - Fixed
_config_version
in plugin settings not being properly updated. - #1732 - Fixed a bug in the documentation for the printer profile API
- #1760 - Fixed missing reselect of selected file when updating via the watched folder, causing wrong progress percentages to be reported.
- #1765 - Fixed watched folder not waiting with file move until file stopped growing, causing wrong progress percentages to be reported.
- #1777 - Fixed z-change based timelapses with Slic3r generated z-hops not properly triggering snapshots.
- #1792 - Don't tell Safari we are "web-app-capable" because that means it will throw away all cookies and the user will have to constantly log in again when using a desktop shortcut for the OctoPrint instance.
- #1812 - Don't scroll up navigation in settings when switching between settings screens, very annoying on smaller resolutions (see also #1814)
- Fix settings helper not allowing to delete values for keys that are present in the local config but not in the defaults.
- Fix wrong replacement value for
__progress
in registered command line or GCODE event handlers. - Various fixes in the Software Update Plugin:
- Don't remove manual software update configurations on settings migration.
- Properly delete old restart/reboot commands that are now defined globally since config version 4. An issue with the settings helper prevented us from properly deleting them during migration to version 4.
- Fixed
python_checker
version check method andpython_updater
update method. - Fixed update configs without a restart of any kind causing an issue due to an undefined variable.
- Fixed broken doctests.
- Upgrade LESS.min.js from 2.7.1 to 2.7.2 to fix the broken contrast function
- Always create a new user session for requests with an API key
- Fixed an error when reading all user settings via the API
- Fixed a bunch of caching issues for the page, was not properly updated on change of snapshot URL presence, system menu entry presence, gcode viewer enabled/disabled, changes in access control availability.
- Fixed wrong bundling of core and plugin assets
- Software Update Plugin: Fixed wrong ETag calculation
- Disable external heatup detection until firmware is detected
- Fixed login dropdown not closing on click outside of it
- Fixed new user settings getting lost until restart
- Don't call
onUserLoggedIn
/onUserLoggedOut
on user reload
The init script so far shipped with OctoPrint contained a bug that causes issues with OctoPrint 1.3.0 and higher. Please update your init script to the fixed version OctoPrint now ships under scripts
:
sudo cp /path/to/OctoPrint/scripts/octoprint.init /etc/init.d/octoprint
If you are running OctoPi, this does not apply to you and you do not need to do anything here!
1.3.1 fixes an issue with the two terminal filters for suppressing temperature and SD status messages and adds a new filter for filtering out firmware wait
messages. These changes will only be active automatically though for stock terminal filter configurations. If you have customized your terminal filters, you'll need to apply these changes manually under "Settings > Terminal filters":
- Changed "Suppress temperature messages" filter, new regex is
(Send: (N\d+\s+)?M105)|(Recv: ok (B|T\d*):)
- Changed "Suppress SD status messages" filter, new regex is
(Send: (N\d+\s+)?M27)|(Recv: SD printing byte)
- New "Suppress wait responses" filter, regex is
Recv: wait
- #1607 - Way better support for password managers (e.g. browser built-in, 1Password, Lastpass, Dashlane)
- #1638 - Make confirmation dialog when cancelling a print optional.
- #1656 - Make wording of buttons on print cancel dialog less confusing.
- #1705 - Simplified install process on Mac by removing dependency on pyobjc.
- #1706 - Added a mask icon for Safari pinned tab and touchbar.
- Support extraction of filament diameter for volume calculation from GCODE files sliced through Simplify3D.
- Abort low priority jobs in the file analysis queue when a high priority job comes in - should make file analysis and hence time estimates show up faster for newly uploaded files.
- Added a terminal filter for firmware
wait
messages to the stock terminal filters. If you did modify your terminal filter configuration, you might want to add this manually:- New "Suppress wait responses" filter:
Recv: wait
- New "Suppress wait responses" filter:
- #1344 - Fix ProgressBarPlugins to not correctly be triggered for 0% (second try, this time hopefully for good).
- #1637 - Fix issue preventing a folder to be deleted that has a name which is a common prefix of the file currently being printed.
- #1641 - Fix issue with
octoprint --daemon
not working. - #1647 - Fix issue with
octoprint
command throwing an error if an environment variableOCTOPRINT_VERSION
was set to its version number. - #1648 - Added missing
websocket-client
dependency ofoctoprint client
to install script. - #1653 - Fix for an issue with the included init script on the BBB (see also #1654)
- #1657 - Fix init script regarding check for configured
CONFIGFILE
variable. - #1657 - Don't care about ordering of common parameters (like
--basedir
,--config
) on CLI. - #1660 - Do not show hint regarding keyboard controls beneath webcam stream if keyboard control feature is disabled.
- #1667 - Fix for matching folders not getting listed in the results when performing a search in the file list.
- #1675 - Fix model size calculation in GCODE analysis, produced wrong values in some cases. Also adjusted calculation to match implementation in GCODE viewer, now both produce identical results.
- #1685 - Cura Plugin: Fix filament extraction from CuraEngine slicing output
- #1692 - Cura Plugin: Fix solid layer calculation (backport from Ultimaker/CuraEngine#140)
- #1693 - Cura Plugin: Support
perimeter_before_infill
profile setting. Additionally added support forsolidarea_speed
,raft_airgap_all
,raft_surface_thickness
,raft_surface_linewidth
profile settings and adjusted mapping for engine settingsraftAirGapLayer0
,raftFanSpeed
,raftSurfaceThickness
andraftSurfaceLinewidth
according to current mapping in Cura Legacy and adjusted Mach3 GCODE flavor to substituteS
withP
in temperature commands of generated start code, also like in Cura Legacy. - #1697 - Pin Jinja to versions <2.9 for now due to a backwards compatibility issue with templates for versions newer than that. Also pushed as a hotfix to 1.3.0 (as 1.3.0post1).
- #1708 - Cura Plugin: Fixed selection of
start.gcode
for sliced file - Allow a retraction z-hop of 0 in timelapse configuration.
- Fix files in sub folders to not be processed by the initial analysis backlog check during startup of the server.
- Various fixes in the file analysis queue:
- High priority items are now really high priority
- Abort analysis for items that are to be deleted/moved to get around an issue with file access under Windows systems.
- Fix stock terminal filters for suppressing temperature messages and SD status messages to also be able to deal with line number prefixes. If you have added additional terminal filters, you will have to apply this fix manually:
- Changed "Suppress temperature messages" filter:
(Send: (N\d+\s+)?M105)|(Recv: ok (B|T\d*):)
- Changed "Suppress SD status messages" filter:
(Send: (N\d+\s+)?M27)|(Recv: SD printing byte)
- Changed "Suppress temperature messages" filter:
- Fix issue in german translation.
- You can now create folders in the file list, upload files into said folders and thus better manage your projects' files.
- New wizard dialog for system setups that can also be extended by plugins. Replaces the first run dialog for setting up access control and can also be triggered in other cases than only the first run, e.g. if plugins necessitate user input to function properly. Added wizards to help configuring the following components in OctoPrint on first run: access control, webcam URLs & ffmpeg path, server commands (restart, shutdown, reboot), printer profile. Also extended the bundled Cura plugin to add a wizard for its first setup to adjust path and import a slicing profile, and the bundled Software Update plugin to ask the user for details regarding the OctoPrint update configuration. Also see below.
- New command line interface (CLI). Offers the same functionality as the old one plus:
- a built-in API client (
octoprint client --help
) - built-in development tools (
octoprint dev --help
) - extendable through plugins implementing the
octoprint.cli.commands
hook (octoprint plugins --help
)
- a built-in API client (
- New features within the plugin system:
- Plugins may now give hints in which order various hooks or mixin methods should be called by optionally providing an integer value that will be used for sorting the callbacks prior to execution.
- Plugins may now define configuration overlays to be applied on top of the default configuration but before
config.yaml
. - New mixin
UiPlugin
for plugins that want to provide an alternative web interface delivered by the server. - New mixin
WizardPlugin
for plugins that want to provide wizard components to OctoPrint's new wizard dialog. - New hook
octoprint.cli.commands
for registering a command with the new OctoPrint CLI - New hook
octoprint.comm.protocol.gcode.received
for receiving messages from the printer - New hook
octoprint.printer.factory
for providing a custom factory to contruct the globalPrinterInterface
implementation. - New
TemplatePlugin
template type:wizard
- New Javascript client library for utilizing the server's API, can be reused by
UiPlugin
s. - OctoPrint will now track the current print head position on pause and cancel and provide it as new template variables
pause_position
/cancel_position
for the relevant GCODE scripts. This will allow more intelligent pause codes that park the print head at a rest position during pause and move it back to the exact position it was before the pause on resume (Example). Note that this is NOT enabled by default and for now will necessitate adjusting the pause and resume GCODE scripts yourself since position tracking with multiple extruders or when printing from SD is currently not fool proof thanks to firmware limitations regarding reliable tracking of the variousE
values and the currently selected toolT
. In order to fully implement this feature, the following improvements were also done:- New
PositionUpdated
event when OctoPrint receives a response to anM114
position query. - Extended
PrintPaused
andPrintCancelled
events with position data fromM114
position query on print interruption/end.
- New
- Added (optional) firmware auto detection. If enabled (which it is by default), OctoPrint will now send an
M115
to the printer on initial connection in order to try to figure out what kind of firmware it is. For FIRMWARE_NAME values containing "repetier" (case insensitive), all Repetier-specific flags will be set on the comm layer. For FIRMWARE_NAME values containing "reprapfirmware" (also case insensitive), all RepRapFirmware-specific flags will be set on the comm layer. For now no other handling will be performed. - Added safe mode flag
--safe
and config settingstartOnceInSafeMode
that disables all third party plugins when active. The config setting will automatically be removed fromconfig.yaml
after the server has started through successfully. - Added
octoprint config
CLI that allows easier manipulation of config.yaml entries from the command line. Example:octoprint config set --bool server.startOnceInSafeMode true
- #1048 - Added "Last print time" to extended file information (see also #1522)
- #1422 - Added option for post roll for timed timelapse to duplicate last frame instead of capturing new frames. That makes for a faster render at the cost of a still frame at the end of the rendered video. See also #1553.
- #1551 - Allow to define a custom bounding box for valid printer head movements in the printer profile, to make print dimension check more flexible.
- #1583 - Strip invalid
pip
arguments frompip uninstall
commands, if provided by the user as additional pip arguments. - #1593 - Automatically migrate old manual system commands for restarting OctoPrint and rebooting or shutting down the server to the new system wide configuration settings. Make a backup copy of the old
config.yaml
before doing so in case a manual rollback is required. - New central configuration option for commands to restart OctoPrint and to restart and shut down the system OctoPrint is running on. This allows plugins (like the Software Update Plugin or the Plugin Manager) and core functionality to perform these common administrative tasks without the user needing to define everything redundantly.
pip
helper now adjustspip install
parameters corresponding to detectedpip
version:- Removes
--process-dependency-links
when it's not needed - Adds
--no-use-wheel
when it's needed - Detects and reports on completely broken versions
- Removes
- Better tracking of printer connection state for plugins and scripts:
- Introduced three new Events
Connecting
,Disconnecting
andPrinterStateChanged
. - Introduced new GCODE script
beforePrinterDisconnected
which will get sent before a (controlled) disconnect from the printer. This can be used to send some final commands to the printer before the connection goes down, e.g.M117 Bye from OctoPrint
. - The communication layer will now wait for the send queue to be fully processed before disconnecting from the printer for good. This way it is ensured that the
beforePrinterDisconnected
script or any further GCODE injected into it will actually get sent.
- Introduced three new Events
- Additional baud rates to allow for connecting can now be specified along side additional serial ports via the settings dialog and the configuration file.
- Option to never send checksums (e.g. if the printer firmware doesn't support it), see #949.
- Added secondary temperature polling interval to use when printer is not printing but a target temperature is set - this way the graph should be more responsive while monitoring a manual heatup.
- Test buttons for webcam snapshot & stream URL, ffmpeg path and some other settings (see also #183).
- Temperature graph automatically adjusts its Y axis range if necessary to accomodate the plotted data (see also #632).
- "Fan on" command now always sends
S255
parameter for better compatibility across firmwares. - Warn users with a notification if a file is selected for printing that exceeds the current print volume (if the corresponding model data is available, see also #1254)
- Added option to also display temperatures in Fahrenheit (see also [#1258] (OctoPrint#1258))
- Better error message when the
config.yaml
file is invalid during startup - API now also allows issuing absolute jogging commands to the printer
- Printer profile editor dialog refactored to better structure fields and explain where they are used
- Option to detect z-hops during z-based timelapses and not trigger a snapshot (see also 1148)
- File rename, move and copy functionality exposed via API, not yet utilized in stock frontend but available in file manager plugin.
- Try to assure a sound SSL environment for the process at all times
- Improved caching:
- Main page and asset files now carry proper
ETag
andLast-Modified
headers to allow for sensible browser-side caching - API sets
Etag
and/orLast-Modified
headers on responses to GET requests where possible and feasible to allow for sensible browser-side caching
- Main page and asset files now carry proper
- Renamed
GcodeFilesViewModel
toFilesViewModel
- plugin authors should accordingly update their dependencies fromgcodeFilesViewModel
tofilesViewModel
. Using the old name still works, but will log a warning and stop working with 1.4.x. - Make sure
volume.depth
for circular beds is forced tovolume.width
in printer profiles - Support for
M116
- Support
M114
responses without whitespace between coordinates (protocol consistency - who needs it?). M600
is now marked as a long running command by default.- Don't focus files in the file list after deleting a file - made the list too jumpy.
- Cura plugin: "Test" button to check if path to cura engine is valid.
- Cura plugin: Wizard component for configuring the path to the CuraEngine binary and for importing the first slicing profile
- GCODE viewer: Added Layer Up/Down buttons (see also [#1306] (OctoPrint#1306))
- GCODE viewer: Allow cycling through layer via keyboard (up, down, pgup, pgdown)
- GCODE viewer: Allow changing size thresholds via settings menu (see also #1308)
- GCODE viewer: Added support for GCODE arc commands (see also #1382)
- Language packs: Limit upload dialog for language pack archives to .zip, .tar.gz, .tgz and .tar extensions.
- Plugin Manager: Adjusted to utilize new
pip
helper - Plugin Manager: Show restart button on install/uninstall notification if restart command is configured and a restart is required
- Plugin Manager: Track managable vs not managable plugins
- Plugin Manager: Allow hiding plugins from Plugin Manager via
config.yaml
. - Plugin Manager: Limit upload dialog for plugin archives to .zip, .tar.gz, .tgz and .tar extensions.
- Plugin Manager: Allow closing of all notifications and close them automatically on detected server disconnect. No need to keep a "Restart needed" message around if a restart is in progress.
- Software Update plugin: More verbose output for logged in administrators. Will now log the update commands and their output similar to the Plugin Manager install and uninstall dialog.
- Software Update plugin: CLI for checking for and applying updates
- Software Update plugin: Wizard component for configuring OctoPrint's update mechanism
- Software Update plugin: "busy" spinner on check buttons while already checking for updates.
- Software Update plugin: Prevent update notification when wizard is open.
- Plugin Manager / Software Update plugin: The "There's a new version of pip" message during plugin installs and software updates is no longer displayed like an error.
- Plugin Manager / Software Update plugin: The "busy" dialog can no longer be closed accidentally.
- Timelapse: Better (& earlier) reporting to the user when something's up with the snapshot URL causing issues with capturing timelapse frames and hence making it impossible to render a timelapse movie on print completion.
- Virtual printer: Usage screen for the
!!DEBUG
commands on!!DEBUG
,!!DEBUG:help
or!!DEBUG:?
- Updated frontend dependencies (possibly relevant for plugin authors):
- Bootstrap to 2.3.2
- JQuery to 2.2.4
- Lodash to 3.10.1
- SockJS to 1.1.1
- Better error resilience against errors in UI components.
- Various improvements in the GCODE interpreter which performs the GCODE analysis
- Various adjustments towards Python 3 compatibility (still a work in progress though, see also #1411, #1412, #1413, #1414)
- Various code refactorings
- Various small UI improvements
- Various documentation improvements
- #1047 - Fixed 90 degree webcam rotation for iOS Safari.
- #1148 - Fixed retraction z hop setting for Z-triggered timelapses. Was not correctly propagated to the backend and hence not taking effect.
- #1567 - Invalidate
/api/settings
cache on change of the user's login state (include user roles into ETag calculation). - #1586 - Fixed incompatibility of update script and command line helper with non-ASCII output from called commands.
- #1588 - Fixed feedback controls again.
- #1599 - Properly handle exceptions that arise within the update script during runtime.
- It's not possible anymore to select files that are not machinecode files (e.g. GCODE) for printing on the file API.
- Changes to a user's personal settings via the UI now propagate across sessions.
- Improved compatibility of webcam rotation CSS across newer browsers (see also #1436)
- Fix for system menu not getting properly reloaded after entries changed
- Invalidate
/api/settings
cache on change of the currently enabled plugins (by including plugin names into ETag calculation) and/or on change of the current effective config. - Fix for
/api/settings
not being properly invalidated for plugin settings that do not have a representation inconfig.yaml
but are only added at runtime (and hence are not captured byconfig.effective
). - Invalidate
/api/timelapse
cache on change of the current timelapse configuration. - Fixed an issue causing the version number not to be properly extracted from
sdist
tarballs generated under Windows. - Get rid of double scroll bar in printer profile editor.
- Fixed tracking of current byte position in file being streamed from disk. Turns out that
self._handle.tell
lied to us thanks to line buffering. - Fixed select & print not working anymore for SD files thanks to a timing issue.
- Fixed
PrintFailed
event payload (was still missing new folder relevant data). - Fixed premature parse stop on
M114
andM115
responses withok
-prefix. - Make sure
?l10n
request parameter gets also propagated to API calls asX-Locale
header in case of locale sensitive API responses. - Fix language mixture due to cached template configs including localized strings; cache per locale.
- Only insert divider in system menu after core commands if there are custom commands.
- Fix update of webcam stream URL not being applied due to caching.
- Fixed a rare race condition causing the new "The settings changed, reload?" popup to show up even when the settings change originated in the same client instance.
- Fixed a bunch of missing translations.
- Pinned Tornado version to 4.0.2. Former version requirement was able to pull in a beta version causing issues with websockets due to a bug in
permessage-deflate
handling. The Tornado requirement needs an update, but we'll leave it at 4.0.2 for 1.3.0 since we'll need to do some migration work for compatibility with anything newer. Potentially related to #1523. - Fix a rare race condition in the command line helper and the update script that could cause the code to hang due to waiting on an event that would never be set.
- Fix issue with handling new settings substructures when they are compared to existing settings data in order to find the structural diff.
- Fix for the temperature graph not displaying the data history on site reload.
For even older changes, please refer to the Github releases page.