From 25de95dc9341e861dbb58965ebc7526481029424 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Thu, 23 Jul 2015 09:51:18 +0200 Subject: [PATCH] Preparing release of 1.2.4 --- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31c9fac9..11546dbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,37 @@ # OctoPrint Changelog +## 1.2.4 (2015-07-23) + +### Improvements + + * `RepeatedTimer` now defaults to `daemon` set to `True`. This makes sure + plugins using it don't have to remember to set that flag themselves in + order for the server to properly shut down when timers are still active. + * Fixed a typo in the docs about `logging.yaml` (top level element is + `loggers`, not `logger`). + * Support for plugins with external dependencies (`dependency_links` in + setuptools), interesting for plugin authors who need to depend on Python + libraries that are (not yet) available on PyPI. + * Better resilience against errors within plugins. + +### Bug Fixes + + * Do not cache web page when running for the first time, to avoid caching + the first run dialog popup along side with it. This should solve issues + people were having when configuring OctoPrint for the first time, then + reloading the page without clearing the cache, being again prompted with + the dialog with no chance to clear it. + * Fix/workaround for occasional white panes in settings dialog on Safari 8, + which appears to have an issue with fixed positioning. + * Fixed form field truncation in upload requests that could lead to problems + when trying to import Cura profiles with names longer than 28 characters. + * Fixed webcam rotation for timelapse rendering. + * Fixed user settings not reaching the editor in the frontend. + * Notifications that are in process of being closed don't open again on + mouse over (that was actually more of an unwanted feature). + +([Commits](https://github.com/foosel/OctoPrint/compare/1.2.3...1.2.4)) + ## 1.2.3 (2015-07-09) ### Improvements