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
76364ec4c6
commit
541178ade0
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
- [1918047] Content server: Allow swiping left and right to show next/previous book on the book details page
|
- [1918047] Content server: Allow swiping left and right to show next/previous book on the book details page
|
||||||
|
|
||||||
- [1919072] E-book viewer: Make the commonly used shift+arrow key shortcuts for modifying selections using the keyboard work. Also add shortcuts for selecting by character, line and paragraph.
|
- [1919072] E-book viewer: Make the commonly used Shift+Arrow key shortcuts for modifying selections using the keyboard work. Also add shortcuts for selecting by character, line and paragraph.
|
||||||
|
|
||||||
:: bug fixes
|
:: bug fixes
|
||||||
|
|
||||||
@ -75,7 +75,7 @@
|
|||||||
|
|
||||||
:: new features
|
:: new features
|
||||||
|
|
||||||
- [1917967] E-book Viewer: Allow editing the current book by pressing Ctrl+d or adding a button for it to the viewer tool bar
|
- [1917967] E-book Viewer: Allow editing the current book by pressing Ctrl+D or adding a button for it to the viewer tool bar
|
||||||
|
|
||||||
- Edit book: Add a command line flag to allow selecting the specified text when opening a book
|
- Edit book: Add a command line flag to allow selecting the specified text when opening a book
|
||||||
|
|
||||||
|
@ -133,4 +133,4 @@ Additional help resources
|
|||||||
|
|
||||||
For more information on calibre's Catalog feature, see the MobileRead forum sticky `Creating Catalogs - Start here <https://www.mobileread.com/forums/showthread.php?t=118556>`_, where you can find information on how to customize the catalog templates, and how to submit a bug report.
|
For more information on calibre's Catalog feature, see the MobileRead forum sticky `Creating Catalogs - Start here <https://www.mobileread.com/forums/showthread.php?t=118556>`_, where you can find information on how to customize the catalog templates, and how to submit a bug report.
|
||||||
|
|
||||||
To ask questions or discuss calibre's Catalog feature with other users, visit the MobileRead forum `Calibre Catalogs <https://www.mobileread.com/forums/forumdisplay.php?f=236>`_.
|
To ask questions or discuss calibre's Catalog feature with other users, visit the MobileRead forum `Library Management <https://www.mobileread.com/forums/forumdisplay.php?f=236>`_.
|
||||||
|
@ -345,7 +345,7 @@ This will shutdown a running calibre, wait for the shutdown to complete, then up
|
|||||||
More plugin examples
|
More plugin examples
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
You can find a list of many, sophisticated calibre plugins `here <https://www.mobileread.com/forums/showthread.php?t=118764>`_.
|
You can find a list of many sophisticated calibre plugins `here <https://www.mobileread.com/forums/showthread.php?t=118764>`_.
|
||||||
|
|
||||||
Sharing your plugins with others
|
Sharing your plugins with others
|
||||||
----------------------------------
|
----------------------------------
|
||||||
|
@ -549,7 +549,7 @@ author names. The first thing to understand is that books and authors are
|
|||||||
separate entities in calibre. A book can have more than one author, and an
|
separate entities in calibre. A book can have more than one author, and an
|
||||||
author can have more than one book. You can manage the authors of a book by the
|
author can have more than one book. You can manage the authors of a book by the
|
||||||
edit metadata dialog. You can manage individual authors by right clicking on
|
edit metadata dialog. You can manage individual authors by right clicking on
|
||||||
the author in the Tag browser on the left of the main calibre screen and
|
the author in the Tag browser on the left of the main calibre window and
|
||||||
selecting :guilabel:`Manage authors`. Using this dialog you can change the name
|
selecting :guilabel:`Manage authors`. Using this dialog you can change the name
|
||||||
of an author and also how that name is sorted. This will automatically change
|
of an author and also how that name is sorted. This will automatically change
|
||||||
the name of the author in all the books of that author. When a book has
|
the name of the author in all the books of that author. When a book has
|
||||||
|
@ -530,7 +530,7 @@ name and selecting Manage this author.
|
|||||||
|
|
||||||
Similarly, if you download metadata for the book, the Book details panel will
|
Similarly, if you download metadata for the book, the Book details panel will
|
||||||
automatically show you links pointing to the web pages for the book on Amazon,
|
automatically show you links pointing to the web pages for the book on Amazon,
|
||||||
worldcat, etc. from where the metadata was downloaded.
|
WorldCat, etc. from where the metadata was downloaded.
|
||||||
|
|
||||||
You can right click on individual e-book formats in the Book details panel to
|
You can right click on individual e-book formats in the Book details panel to
|
||||||
delete them, compare them to their original versions, save them to disk, open
|
delete them, compare them to their original versions, save them to disk, open
|
||||||
|
@ -228,7 +228,7 @@ Non re-flowable content
|
|||||||
|
|
||||||
Some books have very wide content that cannot be broken up at page boundaries.
|
Some books have very wide content that cannot be broken up at page boundaries.
|
||||||
For example tables or :code:`<pre>` tags. In such cases, you should switch the
|
For example tables or :code:`<pre>` tags. In such cases, you should switch the
|
||||||
viewer to *flow mode* by pressing :kbd:`Ctrl+m` to read this content.
|
viewer to *flow mode* by pressing :kbd:`Ctrl+M` to read this content.
|
||||||
Alternately, you can also add the following CSS to the :guilabel:`Styles` section of the
|
Alternately, you can also add the following CSS to the :guilabel:`Styles` section of the
|
||||||
viewer preferences to force the viewer to break up lines of text in
|
viewer preferences to force the viewer to break up lines of text in
|
||||||
:code:`<pre>` tags::
|
:code:`<pre>` tags::
|
||||||
|
@ -274,7 +274,7 @@ class Quickview(QDialog, Ui_Quickview):
|
|||||||
self.gui.quickview_splitter.add_quickview_dialog(self)
|
self.gui.quickview_splitter.add_quickview_dialog(self)
|
||||||
self.close_button.setVisible(False)
|
self.close_button.setVisible(False)
|
||||||
else:
|
else:
|
||||||
self.dock_button.setToolTip(_('Embed the quickview panel into the main calibre window'))
|
self.dock_button.setToolTip(_('Embed the Quickview panel into the main calibre window'))
|
||||||
self.dock_button.setIcon(QIcon(I('arrow-down.png')))
|
self.dock_button.setIcon(QIcon(I('arrow-down.png')))
|
||||||
self.set_focus()
|
self.set_focus()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user