mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-13 15:34:50 +02:00
Update:Android download to internal storage option #635
This commit is contained in:
parent
fbcb8620f9
commit
373221703d
12 changed files with 126 additions and 71 deletions
|
@ -36,6 +36,8 @@ export const state = () => ({
|
|||
libraryIcons: ['database', 'audiobookshelf', 'books-1', 'books-2', 'book-1', 'microphone-1', 'microphone-3', 'radio', 'podcast', 'rss', 'headphones', 'music', 'file-picture', 'rocket', 'power', 'star', 'heart'],
|
||||
selectedPlaylistItems: [],
|
||||
showPlaylistsAddCreateModal: false,
|
||||
showSelectLocalFolderModal: false,
|
||||
localFolderSelectData: null,
|
||||
hapticFeedback: 'LIGHT'
|
||||
})
|
||||
|
||||
|
@ -181,6 +183,13 @@ export const mutations = {
|
|||
setShowPlaylistsAddCreateModal(state, val) {
|
||||
state.showPlaylistsAddCreateModal = val
|
||||
},
|
||||
showSelectLocalFolderModal(state, data) {
|
||||
state.localFolderSelectData = data
|
||||
state.showSelectLocalFolderModal = true
|
||||
},
|
||||
setShowSelectLocalFolderModal(state, val) {
|
||||
state.showSelectLocalFolderModal = val
|
||||
},
|
||||
setHapticFeedback(state, val) {
|
||||
state.hapticFeedback = val || 'LIGHT'
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue