@christianriedl/media 1.0.72 → 1.0.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
</v-container>
|
|
86
86
|
</v-card-text>
|
|
87
87
|
<v-card-actions>
|
|
88
|
-
<v-btn
|
|
88
|
+
<v-btn class="action-btn" @click="onDownload">Download</v-btn>
|
|
89
89
|
</v-card-actions>
|
|
90
90
|
</v-card>
|
|
91
91
|
</template>
|
package/src/views/MusicPage.vue
CHANGED
package/src/views/PhotosPage.vue
CHANGED
|
@@ -221,9 +221,9 @@
|
|
|
221
221
|
<v-list-item-group v-model="itemIndex" color="primary">
|
|
222
222
|
<v-list-item v-for="item in items" :key="item.DLNAID" :title="itemText(item)" :value="itemText(item)" density="compact" @click.stop="listItem(item)">
|
|
223
223
|
<template v-slot:append>
|
|
224
|
-
<v-btn
|
|
225
|
-
<v-btn
|
|
226
|
-
<v-btn
|
|
224
|
+
<v-btn color="grey" icon="$share" @click.stop.prevent="onShare(item)"></v-btn>
|
|
225
|
+
<v-btn color="grey" icon="$download" @click.stop.prevent="onDownload(item)"></v-btn>
|
|
226
|
+
<v-btn color="grey" icon="$grid" @click.stop.prevent="onLightbox(item)"></v-btn>
|
|
227
227
|
</template>
|
|
228
228
|
</v-list-item>
|
|
229
229
|
</v-list-item-group>
|
|
@@ -235,9 +235,9 @@
|
|
|
235
235
|
</template>
|
|
236
236
|
<v-list-item v-for="subItem in item.Folders" :key="subItem.DLNAID" :title="itemText(subItem)" :value="itemText(subItem)" density="compact" @click.stop="listSubItem(subItem)">
|
|
237
237
|
<template v-slot:append>
|
|
238
|
-
<v-btn
|
|
239
|
-
<v-btn
|
|
240
|
-
<v-btn
|
|
238
|
+
<v-btn color="grey" icon="$share" @click.stop.prevent="onShare(subItem)"></v-btn>
|
|
239
|
+
<v-btn color="grey" icon="$download" @click.stop.prevent="onDownload(subItem)"></v-btn>
|
|
240
|
+
<v-btn color="grey" icon="$grid" @click.stop.prevent="onLightbox(subItem)"></v-btn>
|
|
241
241
|
</template>
|
|
242
242
|
</v-list-item>
|
|
243
243
|
</v-list-group>
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
-->
|
|
102
102
|
<template v-slot:append>
|
|
103
103
|
<v-list-item-avatar right>
|
|
104
|
-
<v-btn
|
|
104
|
+
<v-btn color="grey lighten-1" icon="$info"></v-btn>
|
|
105
105
|
</v-list-item-avatar>
|
|
106
106
|
</template>
|
|
107
107
|
</v-list-item>
|
package/src/views/VideosPage.vue
CHANGED
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
<v-list-item v-for="item in items" :key="item.DLNAID" :title="item.title" :subtitle="item.subTitle" @click="listItem(item)">
|
|
205
205
|
<template v-slot:append>
|
|
206
206
|
<v-list-item-avatar left rounded="0" v-if="item.ThumbnailUrl">
|
|
207
|
-
<v-btn
|
|
207
|
+
<v-btn size="large" color="grey" icon="$info" @click.stop.prevent="onInfo(item)"></v-btn>
|
|
208
208
|
</v-list-item-avatar>
|
|
209
209
|
</template>
|
|
210
210
|
<v-list-item-avatar right rounded="0" v-if="item.ThumbnailUrl">
|