From adca7e1f210ce588367b8c7ed9e4b6293b650cb9 Mon Sep 17 00:00:00 2001
From: kaliko <kaliko@azylum.org>
Date: Mon, 19 Apr 2021 15:55:31 +0200
Subject: [PATCH] Fixed examples

---
 doc/examples/all_settings.cfg        | 24 ++++++++++++++++++++++--
 doc/examples/offline_tags_plugin.cfg |  4 ++--
 2 files changed, 24 insertions(+), 4 deletions(-)

diff --git a/doc/examples/all_settings.cfg b/doc/examples/all_settings.cfg
index 7b8e685..01566cc 100644
--- a/doc/examples/all_settings.cfg
+++ b/doc/examples/all_settings.cfg
@@ -127,19 +127,39 @@ single_disable_queue  = True
 # TAGS, any of the supported tags below
 # type: string
 # default: not set
-# description: 
+# description:
 comment=
 date=
 genre=
 label=
 originaldate=
 
-# FILTER
+## FILTER
 # type: string
 # default: not set
 # description: Forge your own MPD filter (cf MPD protocol documentation)
 filter=
 
+## QUEUE_MODE
+# type: string
+# description: The default is to queue random tracks from similar artists.
+# Possible values:
+#	track : Will queue tracks from similar artists (default).
+#	album : Will queue whole album from similar artists.
+queue_mode = track
+
+## TRACK_TO_ADD
+# type: integer
+# scope: "track" and "top" queue modes
+# description: how many tracks the plugin will try to get
+track_to_add = 1
+
+## ALBUM_TO_ADD
+# type: integer
+# scope: "album" queue mode
+# description: how many albums the plugin will try to get
+album_to_add = 1
+
 [crop]
 ## CONSUME
 # type: integer
diff --git a/doc/examples/offline_tags_plugin.cfg b/doc/examples/offline_tags_plugin.cfg
index ab1b5c0..10adcb6 100644
--- a/doc/examples/offline_tags_plugin.cfg
+++ b/doc/examples/offline_tags_plugin.cfg
@@ -12,8 +12,8 @@ history_duration=48             # 48h / 24 = 2 days
 queue_length=2                  # triggers autoqueue when only 2 tracks remains after current
 
 [tags]
-# Look for files with tagged with genre "electonica" OR "IDM" OR "glitch"
-genre = electonica, IDM, glitch
+# Look for files with tagged with genre "electronica" OR "IDM" OR "glitch"
+genre = electronica, IDM, glitch
 
 [crop]
 # keep 30 played tracks in playlist
-- 
2.39.5