Skip to content

Commit a3ddc01

Browse files
committed
version 7.17.0
1 parent 9b7dd90 commit a3ddc01

File tree

2 files changed

+57
-1
lines changed

2 files changed

+57
-1
lines changed

Changelog.txt

+56
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,62 @@
2323
# - title by author
2424
# }}}
2525

26+
{{{ 7.17.0 2024-08-23
27+
28+
:: new features
29+
30+
- [major] E-book viewer: Support for jumping to and displaying paper edition page numbers
31+
32+
If an e-book contains embedded information about the pages from the paper edition of the book,
33+
the calibre E-book viewer can now jump to a page number via the Go to button in the viewer controls.
34+
You can also optionally have the current paper edition page number displayed in the header/footer
35+
by adding "Pages from paper edition" to either the header or footer in the viewer settings.
36+
37+
- [2076251] Edit book: When text is selected allow changing the indentation of all lines in the selection by pressing Tab to increase one level or Shift+Tab to decrease one level
38+
39+
- Allow a plugboard to change the series_index as well as the series name.
40+
41+
- News download: News recipes can now optionally use browser engines based on either Qt or Chromium network stacks instead of mechanize
42+
43+
- Email delivery: When sending emails to Kindles do not convert filenames to English letters as Amazon appears to have finally fixed their email servers to handle non-English filenames
44+
45+
- [2075565] Quickview: Add a tooltip displaying the full cell contents
46+
47+
:: bug fixes
48+
49+
- Update the version of the Qt toolkit bundled with calibre to the latest available, fixing some crashes on macOS related to accessibility tools
50+
51+
- [2075970] Edit book: Fix searching marking incorrect text in the presence of non-BMP unicode characters
52+
53+
- [2074002] Conversion: Do not embed a second copy of a font when using the option to embed font family if the font is already embedded in the book
54+
55+
- [2076515] calibredb list: Fix a regression in the previous release that required setting --template-header to empty to use the list command
56+
57+
- Tolino driver: Fix books from the Tolino cloud not being listed
58+
59+
- Windows: Book details panel: Fix selection not visible when using the system default theme
60+
61+
- [2073441] Hide the Virtual library tab bar in device view as it is non-functional
62+
63+
:: improved recipes
64+
- Jot Down
65+
- Various Russian and Ukranian news sources
66+
- Nautilus Magazine
67+
- Süddeutsche Zeitung
68+
- The India Forum
69+
- WSJ
70+
- National Geographic
71+
- Washington Post
72+
- Mediapart
73+
- Bloomberg
74+
- Nautilus
75+
76+
:: new recipes
77+
- GaGadget by bugmen00t
78+
- Süddeutsche Zeitung Magazin by unkn0wn
79+
- Science Journal by unkn0wn
80+
}}}
81+
2682
{{{ 7.16.0 2024-07-31
2783

2884
:: new features

src/calibre/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from polyglot.builtins import environ_item, hasenv
1212

1313
__appname__ = 'calibre'
14-
numeric_version = (7, 16, 100)
14+
numeric_version = (7, 17, 0)
1515
__version__ = '.'.join(map(str, numeric_version))
1616
git_version = None
1717
__author__ = "Kovid Goyal <[email protected]>"

0 commit comments

Comments
 (0)