mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 10:44:09 -04:00
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:
parent
c64eb65376
commit
ae1ce0c7b0
@ -155,7 +155,7 @@ class EmailAccounts(QAbstractTableModel): # {{{
|
|||||||
self.accounts[na] = self.accounts.pop(account)
|
self.accounts[na] = self.accounts.pop(account)
|
||||||
self.account_order[row] = na
|
self.account_order[row] = na
|
||||||
if '@kindle.com' in addr:
|
if '@kindle.com' in addr:
|
||||||
self.accounts[na][0] = 'AZW, MOBI, TPZ, PRC, AZW1'
|
self.accounts[na][0] = 'EPUB, TPZ'
|
||||||
|
|
||||||
self.dataChanged.emit(
|
self.dataChanged.emit(
|
||||||
self.index(index.row(), 0), self.index(index.row(), 3))
|
self.index(index.row(), 0), self.index(index.row(), 3))
|
||||||
|
@ -553,7 +553,7 @@ class KindlePage(QWizardPage, KindleUI):
|
|||||||
accounts = {}
|
accounts = {}
|
||||||
for y in accounts.values():
|
for y in accounts.values():
|
||||||
y[2] = False
|
y[2] = False
|
||||||
accounts[x] = ['AZW, MOBI, TPZ, PRC, AZW1', True, True]
|
accounts[x] = ['EPUB, TPZ', True, True]
|
||||||
conf.set('accounts', accounts)
|
conf.set('accounts', accounts)
|
||||||
|
|
||||||
def nextId(self):
|
def nextId(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user