1
# Changelog
2
3
## blissify 0.5.0
4
Note: to take advantage of the fix below, a rescan is needed if you
5
have an existing database.
6
* Take into account discs while doing an album playlist.
7
* Add and store `disc_number` in the database.
8
* Make `track_number` an integer.
9
10
## blissify 0.4.2
11
* Add a "playlist from playlist" feature (Thanks @SimonTeixidor!)
12
13
## blissify 0.4.1
14
* Make the "--seed-song" option return faster.
15
16
## blissify 0.4.0
17
* Add a "--keep-current-queue" flag that keeps the current queue while making playlists,
18
instead of automatically cropping it.
19
* Stop automatically disabling random mode, and instead warn the user that random is enabled.
20
* Add a "--dry-run" option.
21
* Add a "--from-song" option to select a specific song from the command-line.
22
* Default to deduplicating songs when making playlist; add a "--no-deduplication" option.
23
24
## blissify 0.3.12
25
* Use window / offset to read the list of MPD files to avoid timeout errors.
26
27
## blissify 0.3.11
28
* Bump bliss version.
29
30
## blissify 0.3.10
31
* Fix compilation for non-linux OSes.
32
33
## blissify 0.3.9
34
* Add support for hostnames and abstract sockets in MPD_HOST.
35
36
## blissify 0.3.8
37
* Bump bliss to fix build on raspberry pis.
38
39
## blissify 0.3.7
40
* Bump bliss to get new ffmpeg version and utf-8 fix.
41
42
## blissify 0.3.6
43
* Bump bliss to get rpi feature.
44
45
## blissify 0.3.5
46
* Bump bliss to ensure ffmpeg 6.0 compatibility.
47
* Rewrite the connectivity code so that MPD_HOST / MPD_PORT work with passwords and
48
sockets, in accordance with
49
https://mpd.readthedocs.io/en/latest/client.html#connecting-to-mpd.
50
51
## blissify 0.3.4
52
* Bump bliss so updating the database also deletes old song.
53
This fixes a bug that would make incomplete playlists when trying to queue
54
songs that existed in the database, but no longer in the MPD server.
55
* Use Rust 2021
56
57
## blissify 0.3.3
58
* Bump bliss to pretty-print json.
59
* Complete README.
60
* Fix the init option on `number-cores`.
61
62
## blissify 0.3.1
63
* Add a `number-cores` option.
64
65
## blissify 0.3.0
66
* Use the Library struct.
67
* Make CUE sheets work.
68
69
## blissify 0.2.7
70
* Add an option to make an interactive playlist.
71
* Store bliss' features version in the database and use it.
72
73
## blissify 0.2.6
74
* Add an option to make an album playlist.
75
76
## blissify 0.2.5
77
* Complete "mpd_to_bliss" to make the deduplication option work better.
78
79
## blissify 0.2.4
80
* Complete README.
81
* Explicitely add ffmpeg-next to the list of libs to allow users
82
to access ffmpeg-next's flags.
83
84
## blissify 0.2.3
85
* Add the "seed song option".
86
* Add an option to deduplicate songs in a playlist.
87
88
## blissify 0.2.2
89
* Fix update command to remove songs that were removed from MPD database.
90
91
## blissify 0.2.1
92
* Add a `list-db` subcommand to list what was analyzed.
93
* Make blissify toggle random mode off when making playlists.
94
* Make inserts atomic so ctrl+c'd the analysis will not make the next update
95
fail.
96
* Add a proper progressbar for the analysis.
97
98
## blissify 0.2.0
99
* Make blissify subcommands (`blissify update`, etc) instead of flags.
100
* Change `blissify playlist` to be able to use various distance functions.
101
102
## blissify 0.1.8
103
* Bump bliss version.
104
* Fix bug that happened when updating an already scanned library with new items.
105
106
## blissify 0.1.7
107
108
* Use `MPD_HOST` / `MPD_PORT` properly instead of grouping everything into
109
a single `MPD_HOST`.
110