From 8ada2625db8ea01c8be4a87fae8894c1d4d4f33a Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Mon, 20 Jul 2015 17:07:43 +0200 Subject: [PATCH] core: Move tracklist setting to default.conf and add changelog --- docs/changelog.rst | 3 +++ mopidy/config/default.conf | 3 +++ mopidy/core/ext.conf | 3 --- 3 files changed, 6 insertions(+), 3 deletions(-) delete mode 100644 mopidy/core/ext.conf diff --git a/docs/changelog.rst b/docs/changelog.rst index 175a3b99..1558042b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -33,6 +33,9 @@ Core API - Update core to handle backend crashes and bad data. (Fixes: :issue:`1161`) +- Add `max_tracklist_length` config and limitation. (Fixes: :issue:`997` + PR: :issue:`1225`) + Models ------ diff --git a/mopidy/config/default.conf b/mopidy/config/default.conf index 42edbbbd..c214de68 100644 --- a/mopidy/config/default.conf +++ b/mopidy/config/default.conf @@ -1,3 +1,6 @@ +[core] +max_tracklist_length = 10000 + [logging] color = true console_format = %(levelname)-8s %(message)s diff --git a/mopidy/core/ext.conf b/mopidy/core/ext.conf deleted file mode 100644 index f186adf0..00000000 --- a/mopidy/core/ext.conf +++ /dev/null @@ -1,3 +0,0 @@ -[core] -enabled = true -max_tracklist_length = 10000