Added a lot of changelog entries
This commit is contained in:
parent
b8e5019e24
commit
6cf84a0bc4
1 changed files with 24 additions and 1 deletions
25
CHANGELOG.md
25
CHANGELOG.md
|
|
@ -35,6 +35,9 @@
|
|||
- End: Home Z axes
|
||||
- 1, 2, 3, 4: change step size used (0.1, 1, 10, 100mm)
|
||||
* Controls for adjusting feed and flow rate factor added to Controls ([#362](https://github.com/foosel/OctoPrint/issues/362))
|
||||
* Custom controls now also support slider controls
|
||||
* Custom controls now support a row layout
|
||||
* Users can now define custom GCODE scripts to run upon starting/pausing/resuming/success/failure of a print
|
||||
|
||||
### Improvements
|
||||
|
||||
|
|
@ -61,7 +64,8 @@
|
|||
* The "Slicing done" notification is now colored green ([#558](https://github.com/foosel/OctoPrint/issues/558)).
|
||||
* The slicing API allows positioning the model to slice on the print bed (Note: this is not yet available in the UI).
|
||||
* File management now supports STL files as first class citizens (including UI adjustments to allow management of
|
||||
uploaded STL files including removal and reslicing) and also allows folders (not yet supported by UI)
|
||||
uploaded STL files including removal and reslicing) and also allows folders (not yet supported by UI). STL files
|
||||
can be downloaded like GCODE files.
|
||||
* Also interpret lines starting with "!!" as errors
|
||||
* Added deletion of pyc files to the `python setup.py clean` command
|
||||
* Settings now show a QRCode for the API Key ([#637](https://github.com/foosel/OctoPrint/pull/637))
|
||||
|
|
@ -93,6 +97,12 @@
|
|||
* Added a link to select all current contents of the terminal log for easy copy-pasting
|
||||
* Added a display of how many lines are displayed, how many are filtered and how many are available in total
|
||||
* Frame rate for timelapses can now be configured per timelapse ([#782](https://github.com/foosel/OctoPrint/pull/782))
|
||||
* Added an option to specify the amount of encoding threads for FFMPEG ([#785](https://github.com/foosel/OctoPrint/pull/785))
|
||||
* "Disconnected" screen now is not shown directly after a close of the socket, instead the client first tries to
|
||||
directly reconnect once, and only if that doesn't work displays the dialog. Should reduce short popups of the dialog
|
||||
due to shaky network connections and/or weird browser behaviour when downloading things from the UI.
|
||||
* Development dependencies can now be installed with ``pip -e .[develop]``
|
||||
* White and transparent colors ;) are supported for the navigation bar ([#789](https://github.com/foosel/OctoPrint/pull/789))
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
|
|
@ -109,8 +119,14 @@
|
|||
and exception to be raised due to a misnamed attribute in the code
|
||||
* [#717](https://github.com/foosel/OctoPrint/issues/717) - Use ``shutil.move`` instead of ``os.rename`` to avoid cross
|
||||
device renaming issues
|
||||
* [#752](https://github.com/foosel/OctoPrint/pull/752) - Fix error in event handlers sending multiple gcode commands.
|
||||
* [#780](https://github.com/foosel/OctoPrint/issues/780) - Always (re)set file position in SD files to 0 so that reprints
|
||||
work correctly
|
||||
* [#784](https://github.com/foosel/OctoPrint/pull/784) - Also include ``requirements.txt`` in files packed up for
|
||||
``python setup.py sdist``
|
||||
* [#330](https://github.com/foosel/OctoPrint/issues/330) - Ping pong sending to fix potential acknowledgement errors.
|
||||
Also affects [#166](https://github.com/foosel/OctoPrint/issues/166), [#470](https://github.com/foosel/OctoPrint/issues/470)
|
||||
and [#490](https://github.com/foosel/OctoPrint/issues/490).
|
||||
* Various fixes of bugs in newly introduced features and improvements:
|
||||
* [#625](https://github.com/foosel/OctoPrint/pull/625) - Newly added GCODE files were not being added to the analysis
|
||||
queue
|
||||
|
|
@ -129,6 +145,11 @@
|
|||
* [#724](https://github.com/foosel/OctoPrint/issues/724) - Fixed timelapse deletion for timelapses with non-ascii
|
||||
characters in their name
|
||||
* [#726](https://github.com/foosel/OctoPrint/issues/726) - Fixed ``babel_refresh`` command
|
||||
* [#759](https://github.com/foosel/OctoPrint/pull/759) - Properly initialize counter for template plugins of type
|
||||
"generic"
|
||||
* [#775](https://github.com/foosel/OctoPrint/pull/775) - Error messages in javascript console show the proper name
|
||||
of the objects
|
||||
* [#795](https://github.com/foosel/OctoPrint/issues/795) - Allow adding slicing profiles for unconfigured slicers
|
||||
* Various fixes without tickets:
|
||||
* GCODE viewer now doesn't stumble over completely extrusionless GCODE files
|
||||
* Do not deliver the API key on settings API unless user has admin rights
|
||||
|
|
@ -137,6 +158,8 @@
|
|||
* Changing Timelapse post roll activates save button
|
||||
* Timelapse post roll is loaded properly from config
|
||||
* Handling of files on the printer's SD card contained in folders now works correctly
|
||||
* Don't display a "Disconnected" screen when trying to download a timelapse in Firefox
|
||||
* Fixed handling of SD card files in folders
|
||||
|
||||
([Commits](https://github.com/foosel/OctoPrint/compare/master...devel))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue