diff --git a/src/calibre/customize/profiles.py b/src/calibre/customize/profiles.py index 7eba099bd2..d544496f19 100644 --- a/src/calibre/customize/profiles.py +++ b/src/calibre/customize/profiles.py @@ -452,6 +452,13 @@ class SamsungGalaxy(TabletOutput): 'a resolution of 600x1280') screen_size = comic_screen_size = (600, 1280) +class NookHD(TabletOutput): + name = 'Nook HD+' + short_name = 'nook_hd_plus' + description = _('Intended for the Nook HD+ and similar tablet devices with ' + 'a resolution of 1080x1920') + screen_size = comic_screen_size = (1080, 1920) + class SonyReaderOutput(OutputProfile): name = 'Sony Reader' @@ -786,7 +793,7 @@ output_profiles = [OutputProfile, SonyReaderOutput, SonyReader300Output, SonyReader900Output, MSReaderOutput, MobipocketOutput, HanlinV3Output, HanlinV5Output, CybookG3Output, CybookOpusOutput, KindleOutput, iPadOutput, iPad3Output, KoboReaderOutput, TabletOutput, SamsungGalaxy, - SonyReaderLandscapeOutput, KindleDXOutput, IlliadOutput, + SonyReaderLandscapeOutput, KindleDXOutput, IlliadOutput, NookHD, IRexDR1000Output, IRexDR800Output, JetBook5Output, NookOutput, BambookOutput, NookColorOutput, PocketBook900Output, PocketBookPro912Output, GenericEink, GenericEinkLarge, KindleFireOutput, KindlePaperWhiteOutput] diff --git a/src/calibre/gui2/wizard/__init__.py b/src/calibre/gui2/wizard/__init__.py index 1cdcb85d4c..8016dd7dcd 100644 --- a/src/calibre/gui2/wizard/__init__.py +++ b/src/calibre/gui2/wizard/__init__.py @@ -198,6 +198,7 @@ class NookColor(Nook): class NookTablet(NookColor): id = 'nook_tablet' name = 'Nook Tablet/HD' + output_profile = 'nook_hd_plus' class CybookG3(Device):