mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-02 18:14:47 +02:00
Added ability to download whole serie from serie view
This commit is contained in:
parent
2b1e53b371
commit
84509ec1a8
3 changed files with 176 additions and 6 deletions
|
@ -95,6 +95,11 @@ export default {
|
|||
text: this.$strings.LabelCollapseSeries,
|
||||
value: 'collapse_subseries',
|
||||
icon: this.settings.collapseBookSeries ? 'check_box' : 'check_box_outline_blank'
|
||||
},
|
||||
{
|
||||
text: this.$strings.LabelDownloadSerie,
|
||||
value: 'download_serie',
|
||||
icon: 'download'
|
||||
}
|
||||
]
|
||||
} else {
|
||||
|
@ -117,6 +122,9 @@ export default {
|
|||
} else if (action === 'collapse_subseries') {
|
||||
this.settings.collapseBookSeries = !this.settings.collapseBookSeries
|
||||
this.saveSettings()
|
||||
} else if (action === 'download_serie') {
|
||||
console.log('Download Serie click')
|
||||
this.$eventBus.$emit('download-serie-click')
|
||||
}
|
||||
},
|
||||
updateOrder() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue