From 01ab61b8b1055c3391ffff7668fed2da90e1ecb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Wed, 1 Oct 2014 15:54:42 +0200 Subject: [PATCH 1/2] Enable event subscriptions by default --- src/octoprint/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octoprint/settings.py b/src/octoprint/settings.py index 28226c3b..c0af8eab 100644 --- a/src/octoprint/settings.py +++ b/src/octoprint/settings.py @@ -125,7 +125,7 @@ default_settings = { "config": "/default/path/to/your/cura/config.ini" }, "events": { - "enabled": False, + "enabled": True, "subscriptions": [] }, "api": { From 62a51bb06131dc839cc52e6d30a5300b94ed6bc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Wed, 1 Oct 2014 15:55:57 +0200 Subject: [PATCH 2/2] Added changelog entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01ef69c4..457946ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ * The API is now enabled by default and the API key -- if not yet set -- will be automatically generated on first server start and written back into ``config.yaml`` +* Event subscriptions are now enabled by default (it was an accident that they weren't) ### Bug Fixes