This commit is contained in:
Danilo 2026-05-06 13:51:21 +02:00 committed by GitHub
commit d325d4f76a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 3 deletions

View file

@ -347,7 +347,7 @@ export default {
asinError: null,
removeBranding: false,
showSecondInputs: false,
audibleRegions: ['US', 'CA', 'UK', 'AU', 'FR', 'DE', 'JP', 'IT', 'IN', 'ES'],
audibleRegions: ['US', 'CA', 'UK', 'AU', 'FR', 'DE', 'JP', 'IT', 'IN', 'ES', 'BR'],
hasChanges: false,
timeIncrementAmount: 1,
elapsedTime: 0,

View file

@ -25,6 +25,7 @@ const providerMap = {
'audible.it': 'Audible.it',
'audible.in': 'Audible.in',
'audible.es': 'Audible.es',
'audible.br': 'Audible.com.br',
audnexus: 'Audnexus'
}

View file

@ -23,7 +23,7 @@ class BookFinder {
this.audiobookCovers = new AudiobookCovers()
this.customProviderAdapter = new CustomProviderAdapter()
this.providers = ['google', 'itunes', 'openlibrary', 'fantlab', 'audiobookcovers', 'audible', 'audible.ca', 'audible.uk', 'audible.au', 'audible.fr', 'audible.de', 'audible.jp', 'audible.it', 'audible.in', 'audible.es']
this.providers = ['google', 'itunes', 'openlibrary', 'fantlab', 'audiobookcovers', 'audible', 'audible.ca', 'audible.uk', 'audible.au', 'audible.fr', 'audible.de', 'audible.jp', 'audible.it', 'audible.in', 'audible.es', 'audible.br']
this.verbose = false
}

View file

@ -16,7 +16,8 @@ class Audible {
jp: '.co.jp',
it: '.it',
in: '.in',
es: '.es'
es: '.es',
br: '.com.br'
}
}