Amazon have announced that they will no longer accept MOBI in their email service from August and that they will accept EPUB so change the defaults accordingly

This commit is contained in:
Kovid Goyal 2022-05-04 20:54:18 +05:30
parent c64eb65376
commit ae1ce0c7b0
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ class EmailAccounts(QAbstractTableModel): # {{{
self.accounts[na] = self.accounts.pop(account)
self.account_order[row] = na
if '@kindle.com' in addr:
self.accounts[na][0] = 'AZW, MOBI, TPZ, PRC, AZW1'
self.accounts[na][0] = 'EPUB, TPZ'
self.dataChanged.emit(
self.index(index.row(), 0), self.index(index.row(), 3))

View File

@ -553,7 +553,7 @@ class KindlePage(QWizardPage, KindleUI):
accounts = {}
for y in accounts.values():
y[2] = False
accounts[x] = ['AZW, MOBI, TPZ, PRC, AZW1', True, True]
accounts[x] = ['EPUB, TPZ', True, True]
conf.set('accounts', accounts)
def nextId(self):