mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Sony PRS-900 profiles.
This commit is contained in:
parent
251e9168e9
commit
95c298b5af
@ -61,6 +61,17 @@ class SonyReaderInput(InputProfile):
|
|||||||
fbase = 12
|
fbase = 12
|
||||||
fsizes = [7.5, 9, 10, 12, 15.5, 20, 22, 24]
|
fsizes = [7.5, 9, 10, 12, 15.5, 20, 22, 24]
|
||||||
|
|
||||||
|
class SonyReader900Input(InputProfile):
|
||||||
|
|
||||||
|
author = 'John Schember'
|
||||||
|
name = 'Sony Reader 900'
|
||||||
|
short_name = 'sony'
|
||||||
|
description = _('This profile is intended for the SONY PRS-900.')
|
||||||
|
|
||||||
|
screen_size = (600, 1024)
|
||||||
|
dpi = 167
|
||||||
|
fbase = 12
|
||||||
|
fsizes = [7.5, 9, 10, 12, 15.5, 20, 22, 24]
|
||||||
|
|
||||||
class MSReaderInput(InputProfile):
|
class MSReaderInput(InputProfile):
|
||||||
|
|
||||||
@ -173,9 +184,9 @@ class NookInput(InputProfile):
|
|||||||
fbase = 16
|
fbase = 16
|
||||||
fsizes = [12, 12, 14, 16, 18, 20, 22, 24]
|
fsizes = [12, 12, 14, 16, 18, 20, 22, 24]
|
||||||
|
|
||||||
input_profiles = [InputProfile, SonyReaderInput, MSReaderInput,
|
input_profiles = [InputProfile, SonyReaderInput, SonyReader900Input,
|
||||||
MobipocketInput, HanlinV3Input, CybookG3Input, CybookOpusInput, KindleInput,
|
MSReaderInput, MobipocketInput, HanlinV3Input, CybookG3Input,
|
||||||
IlliadInput, IRexDR1000Input, NookInput]
|
CybookOpusInput, KindleInput, IlliadInput, IRexDR1000Input, NookInput]
|
||||||
|
|
||||||
|
|
||||||
class OutputProfile(Plugin):
|
class OutputProfile(Plugin):
|
||||||
@ -213,6 +224,18 @@ class SonyReaderOutput(OutputProfile):
|
|||||||
fbase = 12
|
fbase = 12
|
||||||
fsizes = [7.5, 9, 10, 12, 15.5, 20, 22, 24]
|
fsizes = [7.5, 9, 10, 12, 15.5, 20, 22, 24]
|
||||||
|
|
||||||
|
class SonyReader900Output(OutputProfile):
|
||||||
|
|
||||||
|
author = 'John Schember'
|
||||||
|
name = 'Sony Reader 900'
|
||||||
|
short_name = 'sony'
|
||||||
|
description = _('This profile is intended for the SONY PRS-900.')
|
||||||
|
|
||||||
|
screen_size = (600, 1024)
|
||||||
|
dpi = 167
|
||||||
|
fbase = 12
|
||||||
|
fsizes = [7.5, 9, 10, 12, 15.5, 20, 22, 24]
|
||||||
|
|
||||||
class JetBook5Output(OutputProfile):
|
class JetBook5Output(OutputProfile):
|
||||||
|
|
||||||
name = 'JetBook 5-inch'
|
name = 'JetBook 5-inch'
|
||||||
@ -368,7 +391,8 @@ class NookOutput(OutputProfile):
|
|||||||
fbase = 16
|
fbase = 16
|
||||||
fsizes = [12, 12, 14, 16, 18, 20, 22, 24]
|
fsizes = [12, 12, 14, 16, 18, 20, 22, 24]
|
||||||
|
|
||||||
output_profiles = [OutputProfile, SonyReaderOutput, MSReaderOutput,
|
output_profiles = [OutputProfile, SonyReaderOutput, SonyReader900Output,
|
||||||
MobipocketOutput, HanlinV3Output, CybookG3Output, CybookOpusOutput,
|
MSReaderOutput, MobipocketOutput, HanlinV3Output, CybookG3Output,
|
||||||
KindleOutput, SonyReaderLandscapeOutput, KindleDXOutput, IlliadOutput,
|
CybookOpusOutput, KindleOutput, SonyReaderLandscapeOutput,
|
||||||
IRexDR1000Output, JetBook5Output, NookOutput]
|
KindleDXOutput, IlliadOutput, IRexDR1000Output, JetBook5Output,
|
||||||
|
NookOutput]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user