Merge branch 'maintenance' into devel
Conflicts: .versioneer-lookup CHANGELOG.md
This commit is contained in:
commit
1c806eb618
2 changed files with 35 additions and 3 deletions
|
|
@ -10,10 +10,10 @@
|
|||
# master shall not use the lookup table, only tags
|
||||
master
|
||||
|
||||
# maintenance is currently the branch for preparation of maintenance release 1.2.3
|
||||
# maintenance is currently the branch for preparation of maintenance release 1.2.4
|
||||
# so are any fix/... branches
|
||||
maintenance 1.2.3 1c6b0554c796f03ed539397daa4b13c44d05a99d pep440-dev
|
||||
fix/.* 1.2.3 1c6b0554c796f03ed539397daa4b13c44d05a99d pep440-dev
|
||||
maintenance 1.2.4 3761995aff94acf32495556730f133a1626245b3
|
||||
fix/.* 1.2.4 3761995aff94acf32495556730f133a1626245b3
|
||||
|
||||
# every other branch is a development branch and thus gets resolved to 1.3.0-dev for now
|
||||
.* 1.3.0 198d3450d94be1a2 pep440-dev
|
||||
|
|
|
|||
32
CHANGELOG.md
32
CHANGELOG.md
|
|
@ -17,6 +17,38 @@
|
|||
* It's not possible anymore to select files that are not machinecode files (e.g.
|
||||
GCODE) for printing on the file API.
|
||||
|
||||
## 1.2.3 (2015-07-09)
|
||||
|
||||
### Improvements
|
||||
|
||||
* New option to actively poll the watched folder. This should make it work also
|
||||
if it is mounted on a filesystem that doesn't allow getting notifications
|
||||
about added files through notification by the operating system (e.g.
|
||||
network shares).
|
||||
* Better resilience against senseless temperature/SD-status-polling intervals
|
||||
(such as 0).
|
||||
* Log exceptions during writing to the serial port to `octoprint.log`.
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* [#961](https://github.com/foosel/OctoPrint/pull/961) - Fixed a JavaScript error that caused an error to be logged when "enter" was pressed in file or plugin search.
|
||||
* [#962](https://github.com/foosel/OctoPrint/pull/962) - ``url(...)``s in packed CSS and LESS files should now be rewritten properly too to refer to correct paths
|
||||
* Update notifications were not vanishing properly after updating:
|
||||
* Only use version cache for update notifications if the OctoPrint version still is the same to make sure the cache gets invalidated after an external update of OctoPrint.
|
||||
* Do not persist version information when saving settings of the Software Update plugin
|
||||
* Always delete files from the ``watched`` folder after importing then. Using file preprocessor plugins could lead to the files staying there.
|
||||
* Fixed an encoding problem causing OctoPrint's Plugin Manager and Software Update plugins to choke on UTF-8 characters in the update output.
|
||||
* Fixed sorting by file size in file list
|
||||
* More resilience against missing plugin assets:
|
||||
* Asset existence will now be checked before they get included
|
||||
in the assets to bundle by webassets, logging a warning if a
|
||||
file isn't present.
|
||||
* Monkey-patched webassets filter chain to not die when a file
|
||||
doesn't exist, but to log an error instead and just return
|
||||
an empty file instead.
|
||||
|
||||
([Commits](https://github.com/foosel/OctoPrint/compare/1.2.2...1.2.3))
|
||||
|
||||
## 1.2.2 (2015-06-30)
|
||||
|
||||
### Bug Fixes
|
||||
|
|
|
|||
Loading…
Reference in a new issue