forked from kovidgoyal/calibre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog.txt
2299 lines (1387 loc) · 81.8 KB
/
Changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# vim: ft=yaml
#
# Each release can have new features and bug fixes. Each of which
# can optionally have linked tickets and a description.
# In addition they can be marked as major by adding the word major
# to the ticket list.
# Also, each release can have new and improved recipes.
# {{{ 7.x.0 2024-xx-xx
#
# :: new features
#
# - title
#
# :: bug fixes
#
# - title
#
# :: improved recipes
# - title
#
# :: new recipes
# - title by author
# }}}
{{{ 7.21.0 2024-11-08
:: new features
- [major] Edit book: A new tool to create an audio overlay in EPUB files for all text using the Read aloud facility
This allows readers of the book to listen to it with sentence tracking, even if they do not have a functioning text-to-speech system in the reading software. You can even assign different voices to different parts of the text for a more immersive experience. The tool is available from the Tools menu in the book editor.
- Dark mode: make scrollbar more visible with higher contrast and rounded corners
- E-book viewer: In flow mode when scrolling across internal file boundaries using the mouse wheel/touchpad have a short half second pause to ease the transition. Can be controlled via the Scrolling section of the Viewer preferences.
- ebook-meta.exe: Add an option to disallow rendered cover of first page for EPUB
- [2082075] Book details: Add an action to download the cover to the context menu when right clicking the cover
- [2086609] Read aloud: Add a restore defaults button to the configuration dialog
- [2086478] Auto adding: Allow excluding arbitrary file types not just known book file types
- [2083583] Edit metadata dialog: Add an action to open the book's folder to the context menu of the formats list
:: bug fixes
- [2086571] Read aloud: Fix only first 32000 characters per chapter being read
- [2086661] Content server: Read aloud: Fix clicking on a word to skip reading aloud to that word causing word highlighting to stop working
- Linux: Handle speech dispatcher with dummy output module and no voices more gracefully
- When renaming authors fix empty author folder not being removed if it contained file explorer metadata but was otherwise empty
- [2086193] Edit metadata dialog: Fix keyboard shortcuts to edit prev/next raising an error when trying to go beyond the first/last book
- [2085576] Linux: ToC Editor: Fix a regression in 7.17 that broke using the Create new entry button
- [2085005] Content server: Fix changing the language of a book not working for non-English user interface language and for books that have no existing language
- Linux: Read aloud with Piper: Fix audio not playing on some Linux systems
- Notes browser: When searching books search over all currently selected categories not just the last selected one
:: improved recipes
- Substack
- Live Mint
- NYPost
- Ars Technica
- Indian Express
- Reuters
:: new recipes
- Unz Review and Sonar21 by unkn0wn
}}}
{{{ 7.20.0 2024-10-18
:: new features
- [major] PDF Input: Automatic header/footer detection and removal
A new, dedicated PDF Input engine for calibre that implements
automatic detection of headers and footers based on document analysis.
The new engine is the default to go back to using the old engine, select
it in the PDF Input section of the Conversion dialog.
- [2083058] Read Aloud: Allow configuring an extra pause at the end of every sentence when using the Piper TTS engine
- PDF Output: Add _WIDTH_PIXELS_ and _HEIGHT_PIXELS_ variables to know the width and height of the header/footer area in templates
- Windows: Use calibre's bundled SSL certificates instead of the system certificate store by default
Can be turned off via CALIBRE_USE_SYSTEM_CERTIFICATES=1 env var
- Trim image tool: Add a control to adjust aspect ratio
- Kobo driver: Add support for the new firmware used by the Tolino Shine 5
:: bug fixes
- Fix a regression in previous release that broke copying of book to another library if the books author does not exist in the destination database
- Read aloud: Piper backend: Fix not working with voices whose names have non-ASCII characters on Windows.
- Content server: Fix book with non-ASCII filenames not downloading in the Kindle browser when using the /mobile view
- Content server: Fix embedding the server HTML inside a third party iframe causing an error
:: improved recipes
- The Wire
- Nikkei Asia Magazine
- Swarajya
- Mainichi
- Nautilus
- National Geographic
- Science Journal
- Times Literary Supplement
- Saechsische Zeitung
- India Today
- Scientific American
:: new recipes
- NYT Magazine by unkn0wn
- RedaktionsNetzwerk Deutschland by epubli
}}}
{{{ 7.19.0 2024-09-27
:: new features
- [major] E-book viewer: Halve the time taken to open large EPUB format books for the first time
A four hundred thousand word EPUB book now opens in under a second on typical hardware.
- PDF new engine: Improve header/footer detection
- For column icons and grid view emblems, support icons for both light and dark themes
- News downloads: Mark links to locally available articles with a middle-dot
- [2079784] When saving a layout also save the main window geometry
:: bug fixes
- [2080705] Windows: Read Aloud: Fix an occasional crash when stopping read aloud when using the legacy windows TTS engine
- [2080705] Windows: Read Aloud: Fix clicking in text to change what is being read causing tracking of currently read word to fail when using the legacy Windows TTS engine
- [2080708] Read aloud: Fix reading large numeric words causing text synchronization to fail when using some legacy TTS engines
- [2080701] EPUB3 metadata: Fix setting series number to zero not working
- [2081982] Comic Input: Handle comics whose internal files have control codes in their filenames
- [2071348] E-book viewer: Fix a regression that broke searching in Japanese books that use <ruby> text
- [2080655] E-book viewer: Fix a regression in the previous release that broke Read aloud for selected text
- Amazon metadata plugin: Workaround for downloads failing because Google discontinued its webcache
- Cover grid: Suppress the 2px border Qt draws for the list view
:: improved recipes
- NY Times
- NYT Book Review
- Courrier International
- Le Monde
- TLS Magazine
- Scientific American
- Engadget
:: new recipes
- NYT News based on feeds by unkn0wn
}}}
{{{ 7.18.0 2024-09-13
:: new features
- [major] E-book viewer: Read aloud: A new Text-to-Speech engine (Piper) that uses a neural network for realistic sounding voices
To use it access the viewer controls and click the Read aloud button or press 'Ctrl+S'. The neural network
is run locally, no cloud services are used. Using the OS Text-to-Speech engine is still possible by clicking
the configure button on the Read aloud control bar. Note that the new engine highlights the currently read sentence rather than word.
- [2076346] New experimental engine to convert PDF files with support for automatic header/footer removal
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 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
- Edit metadata dialog: Show the number of data files on the data files button
:: bug fixes
- Fix a regression in the previous release that broke using Tab key to move around the book list while editing cells
- [2077801] E-book viewer: Fix scrollbar position not updating during continuous scroll
- [2077871] E-book viewer: Fix a harmless error when the book contains page list references whose targets do not exist
- [2077794] Linux binary build: Fix missing libdeflate dependency
:: improved recipes
- Revista Muy Interesante
- Ars Technica
- South China Morning Post
- Times Literary Supplement
- Hackernews
- Star Gazetesi
- Hurriyet
- Gorafi
- Times Online
:: new recipes
- Muy Interesante México by unkn0wn
- Salzburger Nachrichten by İlker Melik Sıtkı
- Computer Weekly by İlker Melik Sıtkı
}}}
{{{ 7.17.0 2024-08-23
:: new features
- [major] E-book viewer: Support for jumping to and displaying paper edition page numbers
If an e-book contains embedded information about the pages from the paper edition of the book,
the calibre E-book viewer can now jump to a page number via the Go to button in the viewer controls.
You can also optionally have the current paper edition page number displayed in the header/footer
by adding "Pages from paper edition" to either the header or footer in the viewer settings.
- [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
- Allow a plugboard to change the series_index as well as the series name.
- News download: News recipes can now optionally use browser engines based on either Qt or Chromium network stacks instead of mechanize
- 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
- [2075565] Quickview: Add a tooltip displaying the full cell contents
:: bug fixes
- Update the version of the Qt toolkit bundled with calibre to the latest available, fixing some crashes on macOS related to accessibility tools
- [2075970] Edit book: Fix searching marking incorrect text in the presence of non-BMP unicode characters
- [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
- [2076515] calibredb list: Fix a regression in the previous release that required setting --template-header to empty to use the list command
- Tolino driver: Fix books from the Tolino cloud not being listed
- Windows: Book details panel: Fix selection not visible when using the system default theme
- [2073441] Hide the Virtual library tab bar in device view as it is non-functional
:: improved recipes
- Jot Down
- Various Russian and Ukranian news sources
- Nautilus Magazine
- Süddeutsche Zeitung
- The India Forum
- WSJ
- National Geographic
- Washington Post
- Mediapart
- Bloomberg
- Nautilus
:: new recipes
- GaGadget by bugmen00t
- Süddeutsche Zeitung Magazin by unkn0wn
- Science Journal by unkn0wn
}}}
{{{ 7.16.0 2024-07-31
:: new features
- Add a driver for the new 2024 Tolino devices. They use a modified version of the Kobo firmware, so they are detected as Kobo devices.
- Various news recipes now have the ability to download past issues, accessible via the Advanced tab in the Schedule news dialog
:: bug fixes
- [major 2075128] ONLY if you use the calibre Content server, you should update calibre as soon as possible
If you do not know what the Content server is, you do not use it, and
these do not apply to you. If you have set a password to access the
Content server that you have not shared with anyone, these do not
affect you.
A remote code execution bug in the Content server introduced in
calibre version 6.9.0 (released on 2022-11-25) means that anyone with
access to the server also has access to the rest of the computer the
server is running on. If you are using a password to protect access to
the server only people that know the password can gain access via the
bug. Thanks to STAR Labs (https://starlabs.sg) for finding these
vulnerabilities.
- [2075125] Content server: Fix path traversal vulnerability
A bug in a feature introduced in calibre version 6.16.0 (released
2023-04-20) means anyone with access to the server can also read non
calibre related files on the computer running the server.
- [2075131] Content server: Fix SQL injection vulnerability
A bug in a feature introduced in calibre version 6.10.0 (released
2022-12-16) means anyone with access to the server can also read
non-calibre SQLITE database files on the computer running the server.
- [2075130] Content server: Fix an XSS vulnerability in one endpoint
Only relevant if you embed the calibre server within a larger server, it means
attackers who can convince users to click on a specially crafted link, can run
JavaScript code with the same origin as the larger server calibre is embedded in.
- [2073972] Content server: Fix an error when opening the downloaded books page directly via a link and using a custom book list template
- macOS: Fix opening multiple books from Finder with the editor only opening one of the books
- Fix the legacy LRF format viewer not starting
- [2074147] Fix mouse wheel not transitioning from undefined date to current date in date entry controls
:: improved recipes
- Harvard Business Review
- Live Mint
- Business Standard
- Pagina12
- Bloomberg
}}}
{{{ 7.15.0 2024-07-19
:: new features
- Fetch news: Allow individual news sources to specify source specific options such as downloading of past editions
:: bug fixes
- [2073323] Windows: MTP driver: Fix a regression in the previous release that caused an error with some devices
- Icon theme creation dialog: Fix various issues when creating an icon theme with many icons that have light/dark variants
:: improved recipes
- Bloomberg
- Eenadu
- Mediapart
:: new recipes
- WSJ News by unkn0wn
}}}
{{{ 7.14.0 2024-07-12
:: new features
- [2072442] Book details: When dropping files add an option to add them to the book as data files
- Edit book: A new action to toggle line wrapping mode in all code editors. Can be assigned via Preferences->Keyboard shortcuts->Global actions or added to the toolbar via Preferences->Toolbars->Book wide actions
- Kobo driver: Add an option to force the SeriesID for all books in a series to have the same value
:: bug fixes
- [2071458] Fix a regression in the previous release that broke merging of books when the confirmation for the merge was disabled
- [2072412] E-book viewer: Allow some header and footer items such as progress to overflow instead of being truncated
- [2072405] HTMLZ output: Make renaming of image files happen in filename order
- [2072384] MTP driver: Fix infinite loop when connecting to some devices with more 65K objects in their filesystem
- Fix shortcut editing widget when Qt is using a theme that inserts accelerators into push button labels automatically
:: improved recipes
- Instapaper
- MIT Tech Review
- Guardian
- Liberation
- The Times and Sunday Times
- Bloomberg Businessweek
- Times Literary Supplement
:: new recipes
- Ancient Egypt Magazine, Minerva Magazine, Military History Magazine and World Archaeology Magazine by unkn0wn
}}}
{{{ 7.13.0 2024-06-28
:: new features
- [2071033] When merging books add an option to store discarded or replaced covers as an alternate cover in the data folder of the target book
- [2068070] Generate CSV catalog: Add a button to sort the fields by the order in which they appear in the book list
:: bug fixes
- [2067755] MTP driver: Preserve cover aspect ratio for thumbnail generation
- [2071044] Fix identifiers not always being merged correctly when merging books
- [2069541] DOCX Input: Fix extra left padding when converting lists
- Amazon metadata download: Get title and comments for audiobook pages
- Amazon metadata: When filtering search engine results by title ignore words of the title that are purely punctuation
- When matching books on a device to book in the library assume a match if the title and any one author match, don't require all authors to match
- [2069553] Update Google Images cover download plugin for website changes
- [2069494] When adding new books if the timestamp is specified as undefined use the current timestamp
- Content server: Fix systemd pre-activated socket not working
- [2071390] Content server: Fix no KFX download link in OPDS acquisition feeds
:: improved recipes
- Harpers
- Wall Street Journal
- Liberation
- How to Geek
- Make Use Of
- TechCrunch
- LifeHacker
- India Today
- 1843
- Reuters
- The Week India
- Slate
:: new recipes
- Times Literary Supplement by unkn0wn
- Wall Street Journal Magazine by unkn0wn
- Various Valnet Publishing Group recipes by Spicy Poison
- VOX, The Good E-reder and The e-book Reader by SpicyPoison
- Gates Notes, Greatist, Halthline and United Nations by SpicyPoison
}}}
{{{ 7.12.0 2024-05-30
:: new features
- [2067167] E-book polishing: Add option to download external resources (images/stylesheets/etc.)
- Conversion: Add an option under Structure detection to automatically fill in blank alt attributes for images that have alt text in the image file metadata
- [2067437] Content server: Use the book title as the filename for downloaded highlights
- Review downloaded metadata dialog: Add a "Previous" button to go back to the last reviewed book
:: bug fixes
- Content server viewer: Fix the bottom of the text being cut off on mobile browsers when not in full screen mode. Unfortunately, this means the viewer now requires a browser no more than two years old.
- [2067168] Kindle driver: Increase the size of the cover thumbnails sent to the Scribe
- [1943495] Kindle output: Fix cover images that contain EXIF data without a rotation not displaying on the Kindle lockscreen
- E-book viewer: Fix ruby tags not excluded when searching for text
- [2067128] Content server viewer: Fix a regression in the previous release that broke searching
:: improved recipes
- Economist Espresso
- Slate
}}}
{{{ 7.11.0 2024-05-24
:: new features
- Kindle driver: Add support for sending cover thumbnails to the Kindle Scribe
- A new options under Preferences->Look & feel to draw covers with rounded corners
- [2064674] Bulk metadata edit: Add a new tab where you can create rules to transform tags/authors/publishers for the selected books
- [2065544] Tag browser context menu for Formats now has Open with menu items
- [2064665] E-book viewer: When hovering over the top/bottom margin show a button indicating that a click will open the viewer controls. Can be configured via The Headers and footers section of the viewer Preferences.
- Spell check dialog: Also show count of currently displayed words
:: bug fixes
- [2065249] E-book viewer: Fix searching not ignoring ruby text
- Edit book: Save the state of the current book when opening a new book via File->Open book
- [2064887] Edit book: Fix importing a list of words into a user dictionary not working
- EPUB3 metadata: Do not fail to read metadata in the presence on invalid calibre user metadata in the OPF file with empty keys
- Get books: Fix rules to map tags on adding books not being applied to books downloaded via Get books
- [2064792] Spellcheck dialog: Move the checkbox to hide correctly spelled words with the rest of the checkboxes that filter the word list
:: improved recipes
- Slate
- Wall Street Journal
- London Review of Books
- Economist
- Bloomberg
- Business Week
- The World Ahead
- National Geographic
:: new recipes
- Collider, Comic Book Archive, Make Use Of, MoviewWeb and ScreenRant by Spicy Poison
- Lex Fridman Podcast by unkn0wn
}}}
{{{ 7.10.0 2024-05-03
:: new features
- Export of calibre data: Ensure individual part files in the exported data are no larger than one gigabyte even
if the library contains individual files larger than that size.
Note that this means that exports created by calibre from this version
on will not be importable by earlier versions. However, exports from
earlier versions should still be importable.
- Edit book: Spell check: Add options to exclude words in ALL CAPS or with numbers or in camelCase/snake_case from the list of words
- Allow easily inverting the current search via the right click menu on the search box
:: bug fixes
- [2064546] Kobo driver: Fix database unsupported error with newest firmware
- [2063301] DOCX Input: Fix text elements containing only whitespace being incorrectly ignored
- Bulk metadata dialog: Do not fail when setting covers from ebook files and some of the files have invalid covers
:: improved recipes
- Economist
- The Week
- Caravan Magazine
- Financial Times
}}}
{{{ 7.9.0 2024-04-19
:: new features
- [2060886] Kobo driver: Add support for the new color Kobo devices
- Edit book: Add a setting to control cursor width under Preferences->Editor settings
- Edit book: Regex-function mode: Show a confirmation popup when closing the function editor when there are unsaved changes
:: bug fixes
- [2060314] Fix undocked Quickview dialog not being restored at startup
- [2044118] Windows: Fix an issue where closing a maximized calibre window to the system tray and then reconnecting with remote desktop would cause a blank calibre window to be displayed
:: improved recipes
- El Correo
- Eenadu
- ORFonline
- NatGeo
- Harpers Magazine
- New Yorker
- Business Today
- The Week
- Asahi Shimbun
- Outlook Magazine
}}}
{{{ 7.8.0 2024-04-05
:: new features
- [2057929] E-book viewer: Highlight panel: Allow filtering the shown highlights by type of highlight
- Conversion: Add support for the CSS text-transform property when subsetting embedded fonts
- [2060079] E-book viewer: Allow displaying the view mode paged/flow in the header/footer
- [2059162] Book details popup window: Allow dropping of files to add formats/set the cover just as for the book details panel
- [2058814] Book details: Context menu: Add a menu action to remove the associated link
- DOCX Input: Add role=doc-noteref for links to footnotes/endnotes so that they popup in more e-book readers
- Add a "Mark all selected books" to the Mark action.
- [2059169] Add "Hide Empty Categories" to tag browser configuration menu
- Supernote: Support for new device firmware
- Sort by tool: Add an action to re-apply the current sort
:: bug fixes
- Grid view cover cache: Fix covers not loading when cache entries are stale
- [2058798] Conversion: Do not change viewport relative font sizes used for SVG text elements
- [2058798] Conversion: Fix <style> tags inside <svg> tags not being processed
- Get books: Update Kobo store plugin for website changes
- EPUB Input: Use a translated name for the cover page
:: improved recipes
- Caravan
- Global Times
- New York Review of Books
- Himal Southasian
- The Week
- CBC Canada
:: new recipes
- Bergfreunde Blog by VoHe
- Live Law and Politico.eu by unkn0wn
}}}
{{{ 7.7.0 2024-03-14
:: new features
- [2056116] Trim image: Allow specifying the size of the trim rectangle using numbers
- [2056664] Full text search: Allow pressing Ctrl+S to select the current book in the calibre book list
- Speed up scrolling through the book list book-by-book by only redrawing the book details panel when scrolling pauses
- Add a tweak under Preferences->Tweaks to set the first day of the week in popup calendars used to input dates
:: bug fixes
- [2056470] CHM Input: Handle CHM files with no HHC Table of Contents
- E-book viewer: Fix a few settings such as pages per screen and header/footers not being saved in profiles
- [2056614] Full text search: Ignore text inside <ruby> tags when indexing books
- DOCX Output: Preserve spaces around soft hyphens
- Book details popup: Copy the original cover image to the clipboard even when the image is rescaled to fit into view
- Fix changing disabled colors in the UI color palette overriding non-disabled colors
- Content server: Fix deletion of viewer profiles not working
:: improved recipes
- LiveMint
- Bloomberg
- National Geographic
- MIT Technology Review
- NY Review of Books
- Scientific American
}}}
{{{ 7.6.0 2024-03-01
:: new features
- [major 1979022] E-book viewer: Allow saving current settings in "profiles" that can be quickly and easily swapped between
To create a profile or switch to a previously saved profile access "Profiles" from the viewer controls or press the `Alt+P` shortcut.
- [2053144] Edit book: Add a shortcut `Ctrl+M` to merge selected files
- Get books: Add support for Amazon Mexico
- A new toolbar button to show all available actions in sub menus. Can be added via `Preferences->Toolbars & menus`
- Edit book: Allow selecting multiple books to edit at once, opening all selected books in separate editor instances
:: bug fixes
- [2054617] Cover grid: Fix dragging the mouse while holding shift to extend the selection not working well
- [2054934] E-book viewer: Fix doing a multi-page selections sometimes causing the start of the selection to move backwards
- Edit book: Live CSS: Fix regression causing incorrect colors in calibre 7
- Windows: Fix a regression in calibre 7 that caused images in long text columns to not be displayed in the tooltip for the column
- Fix disabled items in menus having blurry text
- Content server: Fix a regression in the previous release that caused an error when doing a search/sort on some browsers
:: improved recipes
- New Yorker
- Moneycontrol
- Swarajya Mag
- nautil.us
- Pro Physik
:: new recipes
- The Week UK by unkn0wn
- Andhrajyothy by unkn0wn
}}}
{{{ 7.5.1 2024-02-09
:: new features
- Allow fine tuning the colors used in the calibre interface via Preference->Look & feel->Main interface->User interface colors
Note that calibre no longer follows system colors on Linux in light mode (the only place where it used to follow system colors). However,
there is a convenient button in the manage colors dialog to import the system colors.
- [2052462] Full text search window: Add actions to the context menu to open the book at the clicked on result. Also allow using the view book shortcut to open the currently selected search result
- [2052460] When showing the Full text search dialog, pre populate the search box with the contents of the main calibre search box if the main search box contains a simple search
:: bug fixes
- Windows: Fix a regression in 7.0 that caused images referring to files on the disk within comments columns to not display in some circumstances
- E-book viewer: Fix clock showing hour as zero instead of 12 between 12 and 1 am/pm
- [2050100] Edit book: When wrapping selected text in a tag, preserve the selection after wrapping
- [2050075] Content server: Fix a periodic spurious error message when reading books in offline mode
- Fix a regression in 7.0 caused by a regression in Qt that would result in calibre hanging rarely when using the cover browser view
- [2049992] Fix custom template functions not useable in save to disk templates
- Fix a regression in 7.2 that caused the popup used for editing fields in the book list to be mis-positioned on very wide monitors
- [2052766] Version 7.5.1 fixes a bug in 7.5.0 where calibre would not start up using dark colors when the system was in dark mode on some windows installs and another bug that could cause errors when using cover grid mode with covers stored in CMYK colorspace
:: improved recipes
- El Diplo
- Science News
- Barrons
- Financial Times
- Business Today
- Le Monde
- Scientific American
:: new recipes
- ugeskriftet by morusn
- Martin Fowler and Gitbug Blogs by Lucas Lois
}}}
{{{ 7.4.0 2024-01-19
:: new features
- Add support for the Supernote A6X2
- Narrow layout: Place the cover browser above the book list when the window has a narrow aspect ratio. Can be controlled via Preferences->Look & feel->Cover browser
- [2046825] Category notes browser: Add a button to search for books in the currently selected category
- Keyboard shortcut to toggle main window layout (Alt+Shift+L)
- Add the possibility to assign keyboard shortcuts to the tag browser sort functions
:: bug fixes
- Fix a regression in the previous release that caused the cover browser to not close when it is used as a separate window
- Fix a regression in the previous release that caused comments in the Book details panel to be rendered below rather than at the side of the other information
- Edit book: Fix highlighting of special character not changed immediately after it is edited, only after a subsequent action
- Move Preferences to the left in the default toolbar, making it less likely to be hidden behind an expander button on small screens
:: improved recipes
- LiveMint
- Foreign Policy
- New Scientist
}}}
{{{ 7.3.0 2024-01-05
:: new features
- Tag browser: Allow displaying buttons next to items that have notes or links for easy access. To enable these use Preferences->Look & feel->Tag browser
- Font subsetting: Preserve all OpenType layout features. This makes the subset font files larger but ensures there is no visual degradation when using the subsetted font files in different contexts.
:: bug fixes
- macOS: Fix main calibre window not remembering its size on restart
- Edit book: Fix the "Show changes" window moving down by a few pixels every time it is opened
- [2047257] Amazon metadata download: Fixes for various changes to amazon website markup
- [2047181] E-book viewer: When looking up words via Google in Europe pre-approve the GDPR consent cookie
- [2046673] Windows: Content server: Fix regression in previous release that broke testing for local connections
- Windows: Fix a regression that caused selections in the Book details panel to be invisible
:: improved recipes
- Foreign Policy
- Business Standard
- Il Post
- Indian Express
- Washington Post
:: new recipes
- Hindustan Times Print Edition by unkn0wn
}}}
{{{ 7.2.0 2023-12-15
:: new features
- Content server: Also listen for all incoming IPv6 connections by default, not just IPv4
- Book details: Allow deleting notes from the right click menu easily
:: bug fixes
- [2045133] Windows: Edit book: Fix a crash when using the check book tool with a book that contains malformed markup, in calibre 7
- Windows: Improve flickering at startup due to a Qt regression in calibre 7
- Windows: Fix moving the main window causing popup/floating windows to be resized in calibre 7 due to yet another Qt regression
- [2044659] Fix detection of existing books on the Tolino Vision 6
- Linux: Fix external applications not being launched under Wayland in calibre 7 because of a bug in Qt
- Linux: Fix network requests failing under Fedora in calibre 7
:: improved recipes
- Reuters
- Scientific American
- New Yorker
- Times of India
- infzm
- singtaohk
}}}
{{{ 7.1.0 2023-11-23
:: new features
- Notes editor: When pasting HTML with images offer to download remote images in the pasted content
:: bug fixes
- Fix regression in 7.0 that broke restore of db from backups
- Content server: Fix newly added books on homepage not restricted to the books the logged in user is allowed to access
- [2044118] When starting in system tray do not flash the main window briefly
- Notes editor: Fix spurious error message when saving a note that contains pasted HTML that refers to an image
- [2043998] Fix a regression that caused the unknown/unset date to incorrectly be displayed/edited as a date in the year AD 101 in some timezones
- Comments editor: Fix data file links not working
- Linux installer: Check that the user has libxcb-cursor.so.0 installed. If not quit early with an error message asking them to install it
- [2044408] LRF Output: Fix a regression in 7.0 that broke conversion to LRF
:: improved recipes
- Substack
:: new recipes
- The World Ahead by unkn0wn
}}}
{{{ 7.0.0 2023-11-17
:: new features
- [major] For details on the major changes in calibre between 7.0 and 6.0, see https://calibre-ebook.com/new-in/sixteen
- [major] The ability to add notes to any author, tag, series, etc. in calibre with links and images
- [2040487] E-book viewer: Add support for HTML image maps
- Content server home page: Show the three most recently added books in the default library
- Content server: Add button to return to book details page at top level of controls
- Content server: Book details: Open links in comments fields in the same window rather than a new window
- Add a "Show items in selected books" choice to Manage tags and Manage authors
- [2042804] Show the previously used language, if any, second in the language selection drop down
:: bug fixes
- [2043415] Metadata download: Fix downloads from Google not working in Europe because of the GDPR
- [2042815] Fix editing dates with days sometimes off by one day
- Edit book: Fix highlighting for special characters not visible when the cursor is on the line with the special character
- [2043248] Fix embedding metadata showing infinite error dialogs on windows if a file is locked by another program
- [2040074] PDF Output: Fix an error when trying to set header or footer with an input document that has invalid content after the main body
- [2042791] E-book viewer: Read aloud: Fix clicking on empty spaces causing read aloud to restart from beginning of chapter
- Book details: Fix Manage authors via context menu not working
- [2041848] E-book viewer: Showing chrome should close an active footnote popup first and only show chrome if the user repeats the action
- [2041745] Fix very slow metadata updates on some PDF files
- [1262875] Catalogs: Do not erase any tags the user adds to a catalog book entry when the catalog is re-generated
- [2042748] Linux installer: Fix downloading of signatures for older versions
- [2041357] Fix editing non-active Virtual library changes sort of book list
:: improved recipes
- Financial Times
- National Geographic
- Hamilton Spectator
- Times of India
- MIT Tech Review
- Bloomberg
- Washington Post
- Project Syndicate
- Cumhuriyet
- Foreign Affairs
- Harvard Business Review
- Wall Street Journal
:: new recipes
- Bookforum, Kirkus Reviews and Poetry Magazine by ping
}}}
{{{ 6.29.0 2023-10-20
:: new features
- [2038760] E-book viewer: Add a command line flag --new-instance to force the viewer to open a new window even if the option to always use a single viewer window is set
- [2038862] E-book viewer: Image popup: Add a checkbox to remember the last used zoom level
:: bug fixes
- [2039336] Annotations browser: Fix exporting highlights in markdown not including all chapter titles for books with only a single highlight per chapter or a multi level ToC
- [2038747] E-book viewer: Fix a regression that could cause the viewer to enter an infinite loop when displaying the result of a search that has only one match that is not found
- [2038747] E-book viewer: Fix the occasional search result being marked as not found even though it is found
- [2039474] TXTZ Output plugin: Only keep images if the text format is one that can reference images
- [2038848] TXTZ Output: Fix cover not being properly identified in the generated TXTZ metadata
- [2038575] FB2 Input: Fix the "Annotations" section not showing up in the Table of Contents
- [2039395] Linux: Content server: Do not call listen on pre-activated sockets
- Fix sort order of similarly-named hierarchical categories
- [2038778] Fix a regression that broke reading of covers from HTMLZ and TXTZ files
:: improved recipes
- Wall Street Journal
- Scientific American
- 1843
- Financial Times
- Spectator Magazine
- El Diplo
- Wasshington Post
- national Geographic
:: new recipes
- Project Syndicate, Scroll.in and Newslaundry by unkn0wn
}}}
{{{ 6.28.1 2023-10-07