Merge pull request #636 from luusl/master

Add support for track and disc items in smart playlists
This commit is contained in:
chme 2018-12-15 08:00:59 +01:00 committed by GitHub
commit 60220a8133
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -40,6 +40,8 @@ Where valid field-names (with their types) are:
* `rating` (integer) * `rating` (integer)
* `year` (integer) * `year` (integer)
* `compilation` (integer) * `compilation` (integer)
* `track` (integer)
* `disc` (integer)
* `time_added` (date) * `time_added` (date)
* `time_modified` (date) * `time_modified` (date)
* `time_played` (date) * `time_played` (date)

View File

@ -92,6 +92,8 @@ INTTAG : 'play_count'
| 'rating' | 'rating'
| 'year' | 'year'
| 'compilation' | 'compilation'
| 'track'
| 'disc'
; ;
DATETAG : 'time_added' DATETAG : 'time_added'