]> kaliko git repositories - mpd-sima.git/commitdiff
Releasing 0.17.0 0.17.0
authorkaliko <kaliko@azylum.org>
Wed, 28 Apr 2021 15:36:29 +0000 (17:36 +0200)
committerkaliko <kaliko@azylum.org>
Wed, 28 Apr 2021 15:36:29 +0000 (17:36 +0200)
doc/Changelog
doc/examples/offline_genre_plugin.cfg [new file with mode: 0644]
sima/info.py

index 2bf9ed99f3477854ceb79af2f3beaf51f681142a..7bc5ff6e2235b38518b122d87d38e399519bd514 100644 (file)
@@ -1,4 +1,4 @@
-MPD_sima v0.17.0.dev0
+MPD_sima v0.17.0
 
  * New offline autoqueue plugin based on file genre tags only
  * Add randomness in Tags plugin artist selection
@@ -12,7 +12,7 @@ MPD_sima v0.17.0.dev0
  * Use duration instead of time in Track object (closes #37)
  * Use musicbrainz_albumid|trackid tags in Tracks object
 
- -- kaliko <kaliko@azylum.org>  UNRELEASED
+ -- kaliko <kaliko@azylum.org>  Wed, 28 Apr 2021 17:21:39 +0200
 
 MPD_sima v0.16.1
 
diff --git a/doc/examples/offline_genre_plugin.cfg b/doc/examples/offline_genre_plugin.cfg
new file mode 100644 (file)
index 0000000..ad43c38
--- /dev/null
@@ -0,0 +1,22 @@
+[MPD]
+# Uses defaults for MPD connection
+#host = localhost
+#port = 6600
+#password = s3cr3t
+
+[sima]
+# Setup internal plugins
+# Uses Genre plugin falls back to Random if nothing is found then Crop the queue
+internal = Genre, Random, Crop
+history_duration=48             # 48h / 24 = 2 days
+queue_length=2                  # triggers autoqueue when only 2 tracks remains after current
+
+[genre]
+# Look for files with tagged with the same genres
+queue_mode = track
+single_album = false
+track_to_add = 1
+
+[crop]
+# keep 30 played tracks in playlist
+consume=30
index a123cdf974cadd1999f89064c4c4fb9df182b800..59403e13bc4b6adbeb64f28eb91cb690b941228a 100644 (file)
@@ -12,7 +12,7 @@ short.
 """
 
 
-__version__ = '0.17.0.dev0'
+__version__ = '0.17.0'
 __author__ = 'kaliko'
 __email__ = 'kaliko@azylum.org'
 __url__ = 'git://git.kaliko.me/sima.git'