Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
b10ce4c5f6
3 changed files with 9 additions and 16 deletions
|
@ -426,8 +426,9 @@ const CiderAudio = {
|
|||
let dataLength = audioRawData[0]?.length ?? 0;
|
||||
for (let idx=0; idx<dataLength; idx++) {
|
||||
for (let channel=0; channel < numberOfChannels; channel++) {
|
||||
try {
|
||||
let value = audioRawData[channel][idx];
|
||||
this._buffers[channel][this._bytesWritten] = value;
|
||||
this._buffers[channel][this._bytesWritten] = value;} catch(e){}
|
||||
}
|
||||
this._bytesWritten += 1;
|
||||
}
|
||||
|
|
|
@ -62,16 +62,18 @@
|
|||
<div class="title text-overflow-elipsis" :title="item.attributes.name">
|
||||
{{ item.attributes.name }}
|
||||
</div>
|
||||
<div class="subtitle text-overflow-elipsis" :title="item.attributes.artistName"
|
||||
<div class="subtitle text-overflow-elipsis"
|
||||
style="-webkit-box-orient: horizontal;">
|
||||
<template v-if="item.attributes.artistName">
|
||||
<div class="artist item-navigate text-overflow-elipsis"
|
||||
:title="item.attributes.artistName"
|
||||
@click="app.searchAndNavigate(item,'artist')">
|
||||
{{ item.attributes.artistName }}
|
||||
</div>
|
||||
<template v-if="item.attributes.albumName"> — </template>
|
||||
<template v-if="item.attributes.albumName">
|
||||
<div class="artist item-navigate text-overflow-elipsis"
|
||||
:title="item.attributes.albumName"
|
||||
@click="app.searchAndNavigate(item,'album')">
|
||||
{{ item.attributes.albumName }}
|
||||
</div>
|
||||
|
|
|
@ -189,11 +189,7 @@
|
|||
</template>
|
||||
</div>
|
||||
<div class="app-sidebar-footer display--small app-sidebar-footer--controls">
|
||||
<div
|
||||
class="app-playback-controls"
|
||||
v-if="$root.mkReady()"
|
||||
@contextmenu="$root.nowPlayingContextMenu"
|
||||
>
|
||||
<div class="app-playback-controls" @contextmenu="$root.nowPlayingContextMenu">
|
||||
<div class="control-buttons">
|
||||
<div class="app-chrome-item">
|
||||
<button
|
||||
|
@ -295,15 +291,9 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="app-sidebar-notification backgroundNotification"
|
||||
v-if="$root.library.backgroundNotification.show"
|
||||
>
|
||||
<div class="app-sidebar-notification backgroundNotification" v-if="$root.library.backgroundNotification.show" >
|
||||
<div class="message">
|
||||
{{ $root.library.backgroundNotification.message }} ({{
|
||||
$root.library.backgroundNotification.progress
|
||||
}}
|
||||
/ {{ $root.library.backgroundNotification.total }})
|
||||
{{ $root.library.backgroundNotification.message }} ({{$root.library.backgroundNotification.progress }} / {{ $root.library.backgroundNotification.total }})
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -311,6 +301,6 @@
|
|||
|
||||
<script>
|
||||
Vue.component("cider-app-sidebar", {
|
||||
template: "#cider-app-sidebar"
|
||||
template: "#cider-app-sidebar",
|
||||
})
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue