diff --git a/src/calibre/customize/profiles.py b/src/calibre/customize/profiles.py index 4d8b8a0113..fbd0448191 100644 --- a/src/calibre/customize/profiles.py +++ b/src/calibre/customize/profiles.py @@ -250,6 +250,19 @@ class KindleDXOutput(OutputProfile): def tags_to_string(cls, tags): return 'ttt '.join(tags)+'ttt ' +class IlliadOutput(OutputProfile): + + name = 'Illiad' + short_name = 'illiad' + description = _('This profile is intended for the Irex Illiad.') + + screen_size = (744, 1022) + comic_screen_size = (741, 1022) + dpi = 160.0 + fbase = 12 + fsizes = [7.5, 9, 10, 12, 15.5, 20, 22, 24] + + output_profiles = [OutputProfile, SonyReaderOutput, MSReaderOutput, MobipocketOutput, HanlinV3Output, CybookG3Output, KindleOutput,