mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
string changes
This commit is contained in:
parent
d5d0a97d37
commit
3c28eca641
@ -37,7 +37,7 @@
|
|||||||
|
|
||||||
Turn it on via the PDF input section of the conversion dialog.
|
Turn it on via the PDF input section of the conversion dialog.
|
||||||
|
|
||||||
- Content server: Viewer: Read Aloud: Implement word-by-word tracking when reading aloud if the browser and voice used support it, for example, Chromium on Windows, Firefox on Android and Safari on macOS
|
- Content server: Viewer: Read Aloud: Implement word-by-word tracking when reading aloud if the browser and OS used support it, for example, Chromium on Windows, Firefox on Android and Safari on macOS
|
||||||
|
|
||||||
- [2080315] Image popup: Add a context menu with an option to reset the current zoom
|
- [2080315] Image popup: Add a context menu with an option to reset the current zoom
|
||||||
|
|
||||||
|
@ -947,7 +947,7 @@ class Cache:
|
|||||||
|
|
||||||
@read_api
|
@read_api
|
||||||
def get_item_id(self, field, item_name):
|
def get_item_id(self, field, item_name):
|
||||||
'''' Return the item id for item_name (case-insensitive) or None if not found.
|
''' Return the item id for item_name (case-insensitive) or None if not found.
|
||||||
This function is very slow if doing lookups for multiple names use either get_item_ids() or get_item_name_map(). '''
|
This function is very slow if doing lookups for multiple names use either get_item_ids() or get_item_name_map(). '''
|
||||||
q = icu_lower(item_name)
|
q = icu_lower(item_name)
|
||||||
try:
|
try:
|
||||||
|
@ -26,7 +26,7 @@ class PDFInput(InputFormatPlugin):
|
|||||||
OptionRecommendation(name='new_pdf_engine', recommended_value=False,
|
OptionRecommendation(name='new_pdf_engine', recommended_value=False,
|
||||||
help=_('Use the new, experimental, PDF conversion engine.')),
|
help=_('Use the new, experimental, PDF conversion engine.')),
|
||||||
OptionRecommendation(name='pdf_header_skip', recommended_value=-1,
|
OptionRecommendation(name='pdf_header_skip', recommended_value=-1,
|
||||||
help=_('Skip everything to the specified number pixels at the top of a page.'
|
help=_('Skip everything to the specified number of pixels at the top of a page.'
|
||||||
' Negative numbers mean auto-detect and remove headers, zero means do not remove headers and positive numbers'
|
' Negative numbers mean auto-detect and remove headers, zero means do not remove headers and positive numbers'
|
||||||
' mean remove headers that appear above that many pixels from the top of the page. Works only'
|
' mean remove headers that appear above that many pixels from the top of the page. Works only'
|
||||||
' with the new PDF engine.'
|
' with the new PDF engine.'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user