diff --git a/Changelog.txt b/Changelog.txt index 0288d34d5e..c4b1483756 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -28,10 +28,11 @@ :: new features - Content server viewer: Improved search functionality + Searching can now be done for whole words and regular expressions. And all search results are listed at once with some context for easy navigation. -- [1928596] E-book viewer: Allow fullscreening the image popup +- [1928596] E-book viewer: Allow making the image popup full screen - E-book viewer: Allow expanding/collapsing all items in the Table of Contents at a particular level by right clicking on one item of that level and choosing the option to expand/collapse diff --git a/src/calibre/ebooks/conversion/plugins/snb_output.py b/src/calibre/ebooks/conversion/plugins/snb_output.py index 3dd9aace8c..d120cbbc3d 100644 --- a/src/calibre/ebooks/conversion/plugins/snb_output.py +++ b/src/calibre/ebooks/conversion/plugins/snb_output.py @@ -46,7 +46,7 @@ class SNBOutput(OutputFormatPlugin): 'chapter. Useful for image-only output (eg. comics).')), OptionRecommendation(name='snb_full_screen', recommended_value=False, level=OptionRecommendation.LOW, - help=_('Resize all the images for full screen view. ')), + help=_('Resize all the images for full screen mode. ')), } def convert(self, oeb_book, output_path, input_plugin, opts, log):