Download quality fallback, shuffle, repeat, lastfm
This commit is contained in:
@ -6,7 +6,21 @@
|
||||
</div>
|
||||
|
||||
<v-list v-if='!loading'>
|
||||
<v-lazy v-for='(track, index) in tracks' :key='track.id' max-height='100'>
|
||||
<v-list-item v-if='!$root.settings.logListen'>
|
||||
<v-list-item-avatar>
|
||||
<v-icon class='yellow--text'>mdi-alert</v-icon>
|
||||
</v-list-item-avatar>
|
||||
<v-list-item-content>
|
||||
<v-list-item-title>
|
||||
Streaming logging is disabled!
|
||||
</v-list-item-title>
|
||||
<v-list-item-subtitle>
|
||||
Enable it in settings for history to work properly.
|
||||
</v-list-item-subtitle>
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
|
||||
<v-lazy v-for='(track, index) in tracks' :key='track.id + "INDEX" + index.toString()' max-height='100'>
|
||||
<TrackTile :track='track' @click='play(index)'></TrackTile>
|
||||
</v-lazy>
|
||||
</v-list>
|
||||
|
@ -9,6 +9,12 @@
|
||||
>{{track.title}}<span v-if='track.explicit' class='red--text text-overline pl-2'>E</span></v-list-item-title>
|
||||
<v-list-item-subtitle>{{track.artistString}}</v-list-item-subtitle>
|
||||
</v-list-item-content>
|
||||
<v-list-item-action>
|
||||
<!-- Duration -->
|
||||
<div class='text-caption mx-2'>
|
||||
{{$duration(track.duration)}}
|
||||
</div>
|
||||
</v-list-item-action>
|
||||
<v-list-item-action>
|
||||
<!-- Quick add/remoev to library -->
|
||||
<v-btn @click.stop='addLibrary' icon v-if='!isLibrary'>
|
||||
|
Reference in New Issue
Block a user