mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-15 03:45:03 +02:00
Support for opus audio type, experimental features toggle, epub reader starting point
This commit is contained in:
parent
3dd8dc6dd4
commit
bd336345ee
14 changed files with 880 additions and 72 deletions
|
@ -17,7 +17,8 @@ export const state = () => ({
|
|||
selectedAudiobooks: [],
|
||||
processingBatch: false,
|
||||
previousPath: '/',
|
||||
routeHistory: []
|
||||
routeHistory: [],
|
||||
showExperimentalFeatures: false
|
||||
})
|
||||
|
||||
export const getters = {
|
||||
|
@ -146,5 +147,8 @@ export const mutations = {
|
|||
},
|
||||
setProcessingBatch(state, val) {
|
||||
state.processingBatch = val
|
||||
},
|
||||
setExperimentalFeatures(state, val) {
|
||||
state.showExperimentalFeatures = val
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue