forked from kovidgoyal/calibre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog.txt
2723 lines (1547 loc) · 98.5 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.
# {{{ 6.x.0 2023-xx-xx
#
# :: new features
#
# - title
#
# :: bug fixes
#
# - title
#
# :: improved recipes
# - title
#
# :: new recipes
# - title by author
# }}}
{{{ 6.17.0 2023-04-26
:: new features
- Font subsetting: Add support for WOFF format fonts and CID keyed fonts. Also further reduce file sizes when subsetting
- Book details: Show a link to open the data files folder when data files are present
- Template language: Add various functions to query the extra files associated with a book
- [2017195] Edit book: Compress images: Support compression of images in the WEBP format as well
- Comments editor: Add buttons to create links to data files and also to folders easily when inserting a link
- Allow displaying the id, formats and path builtin columns via Preferences->Add your own columns
- [2017232] Trash bin: Add a button to clear the bin
- Metadata editor: Use a dedicated editor with preview for custom columns that store Markdown formatted text
:: bug fixes
- Fix a regression in the previous release that could result in empty author folders remaining in the library when the author of a book is changed
- [2017373] Fix the data files associated with a book not being handled when using the Merge books and Copy to library functions
- Fix a regression in the previous release that broke some operations in the Manage tags/authors/etc. dialogs
- [2017217] Ensure metadata.opf is always written when deleting book even if it is not sequenced for backup
:: improved recipes
- Scientific American
}}}
{{{ 6.16.0 2023-04-20
:: new features
- [major] Allow storing extra data files with a book
Right click the Add books button to add arbitrary files as "data files" to a book record.
These are managed by calibre along with the book files, but cannot be used for conversion/viewing.
Select a book and press the "O" key to view the data files in your file explorer.
- Allow undoing the deletion of books from the calibre library
Now deleted books are stored in a calibre "Trash bin" from which they can be restored with
a single click. To view the trash bin, right click the "Remove books" button.
- [2016070] Kobo driver: Add support for the new Kobo Elipsa 2E
- Book details: if an item has an associated link then offer that link in the item's context menu
:: bug fixes
- [2015617] Content server viewer: Fix end of chapter content being occasionally skipped when scrolling by screen full with multiple pages
- [2017130] E-book viewer: Fix a regression that caused notes from a different highlights to be shown in some situations
- [2015795] E-book viewer: Show an error if the user tries to search for only punctuation or spaces in the search modes that ignore these
- Fix custom columns not showing in Book details links from other libraries
:: improved recipes
- Frontline
- Outlook Magazine
:: new recipes
- Bar and Bench by unkn0wn
- The Washington Post Print Edition by unkn0wn
}}}
{{{ 6.15.1 2023-04-07
:: new features
- Allow adding external links to tags, series, publishers, etcetera in addition to authors
The links show up as click-able icons in the book details panel. They can be set by right clicking the
author/tag/etc. in the Tag browser and choosing "Manage"
- calibre:// URL scheme: Add support for a new type of URL that pops up the metadata of the specified book in a new window
Works even with books not in the current library. See https://manual.calibre-ebook.com/url_scheme.html#open-a-book-details-window-on-a-book-in-some-library for details
- EPUB Output: Do not shrink images to fit the screen size by default, as modern readers do this themselves well enough. Can be controlled via an option in the EPUB Output section of the conversion dialog
- Edit metadata dialog: Add buttons to pop up the category editing windows easily
- [2012304] Metadata download: Allow specifying rules to transform publisher names in addition to author and tag names
- [2007764] Edit metadata dialog: Use both a colored border and an icon to indicate errors in line edits
- A new tweak in Preferences->Tweaks to control what program is run when clicking on URLs in calibre
:: bug fixes
- [2009586] E-book viewer: Fix a regression that caused incorrect highlight collision detection in some books
- E-book viewer: Fix images embedded inside SVG tags not available for viewing in a pop-up
- [2013972] DOCX Input: Do not ignore images that are present as fallbacks for a word drawing object
- Comic Input: When converting grayscaled PNG images to PNG ensure output images are stored as indexed PNG
- [2012797] Fix active tab not easy to distinguish in dark mode
- [2011755] Content server: Fix re-opening book from home page after making progress not opening to correct last read position when a user is logged in
- [2012760] Comments editor: When copying to clipboard, copy clean HTML rather than the junk Qt produces
- Version 6.15.1 fixes an issue with the new URL scheme popping up incorrect book details windows
:: improved recipes
- Saechsische Zeitung
- LA Times
- Mediapart
- Live Mint
- The Hindu
:: new recipes
- Tehelka by Areet Mahadevan
- The Wire by unkn0wn
}}}
{{{ 6.14.1 2023-03-16
:: new features
- [2007765] Edit metadata: When setting a cover from comic files allow choosing which page to use as the cover
- [2009304] Allow display of columns built from other columns as comments in Book details
- Comments editor: Add a shortcut for "Paste and match style" (Ctrl+Shift+v)
:: bug fixes
- [2004639] macOS: ToC Editor: Fix mouse becoming unusable when trying to create a new entry
- When computing title sorts strip leading and trailing quotes, not just leading quotes
- [2009268] Content server viewer: Fix searching only showing results from the current chapter onwards
- [2009735] Check book: Fix some incorrect line numbers reported in a few CSS error messages
- Fix regression in 6.14.0 that caused some generated resources to be excluded from the calibre source bundle
- [2011586] Fix regression in 6.14.0 that broke using paths with single quotes in them for the calibre library
- Fix ToC Editor on macOS in 6.14.0 not working inside the Edit book tool only
:: improved recipes
- Strange Horizons
- The Saturday Paper
- New Scientist
- The Mainichi
- DR Nyheder
- New York Magazine
- Bloomberg
- Deccan Herald
}}}
{{{ 6.13.0 2023-02-17
:: new features
- Content server: E-book viewer: Long tapping on an image now causes it to be displayed in an internal popup rather than a new window as some browsers block the creation of new windows
:: bug fixes
- E-book viewer: Fix some adjacent highlights with nothing in between them not being displayed.
- [2006726] Content server: Workaround for Safari regression causing bookmarks to disappear on reload
- [2007039] E-book viewer: Read aloud: Fix a regression in the previous release that caused the Read aloud controls to not reappear when Read aloud is canceled and restarted
- [2006062] E-book viewer: Read aloud: Fix a regression in the previous release that caused an error when using Read aloud on a chapter with no text, such as the cover page
- E-book viewer: Fix a regression that caused a spurious error on Windows when reading out selected text
- [2007165] Fix a regression in calibre 5.0 that broke sorting the device view by title if one of the books has an empty title
- Edit book: Spell Check dialog: Fix second word not getting selected when after first word is fixed
- [2004621] Improve hover highlight color in tree views
:: improved recipes
- CNN
- Bloomberg
:: new recipes
- The Economist Espresso by unkn0wn
- Science X by unkn0wn
- Horizons by unkn0wn
- Deccan Herald by unkn0wn
- The Monthly by unkn0wn
}}}
{{{ 6.12.0 2023-02-03
:: new features
- E-book viewer: Read aloud: On Windows switch to using the new Microsoft speech subsystem with access to more voices
Note that this means that old voice, speed and audio devices setting will not be used so a reconfiguration might be needed.
- [2003712] calibre:// URL scheme: allow specifying a Virtual library for show_book URLs
- [2003227] Add by ISBN: Allow adding using identifiers other than ISBN as well
- Update bundled Qt to 6.4 this means calibre on macOS is now only supported on Big Sur and newer
- Spell check dialog: Allow up and down arrow keys to work regardless of focus
- [2002257] Allow multiple Template tester dialogs
:: bug fixes
- Windows MTP device driver: Ignore failure to enumerate objects inside non-root folders
There are apparently a lot of devices out there that fail in this way.
So rather than aborting the scan simply ignore the folder.
- Book list: Fix a regression in the previous release that broke dragging to select multiple books
- [2004197] Content server viewer: Fix reload book not actually reloading until the browser is also refreshed
- [2003916] E-book viewer: Fix occasional false warning about highlight being overwritten
- [2003908] E-book viewer: Fix detection of selected highlights when all text is selected
- [2003729] Fix an error when embedding metadata into a large number of books
- [2004522] When updating metadata in EPUB 2 files and no language is specified, do not remove the <dc:language> tag as this causes epubcheck to complain. Instead set the language to "und"
- [2004083] Wireless device driver: Remove the timeout for initial connection
- [2003652] Use an icon rather than a color to report errors in fields and the search box
- Conversion dialog: Regex builder: Workaround bug in Qt that prevented searching for non breaking spaces in the wizard used to test search expressions
- [2002864] Spell check dialog: move down after correcting word, not up
- [2002534] Get books: Fix Mobileread store plugin not working
:: improved recipes
- Jerusalem Post
- LiveMint
- The Seattle Times
- India Today
- Outlook Magazine
- Live Mint
- Irish Independent
- Irish Times
:: new recipes
- Boston Globe Print Edition by unkn0wn
- Observer Reach Foundation by unkn0wn
}}}
{{{ 6.11.0 2023-01-06
:: new features
- Edit book: Check book: Allow automatic fixing of various simple CSS errors
- E-book viewer: When Read aloud is speaking, make the control bar translucent so that words under the bar are visible
- Edit book: Switch to a new library (stylelint) for find problems in CSS as the old library was no longer maintained.
- Edit book: File browser: Allow using keyboard shortcuts to re-order the spine
- [1982532] calibredb list: Allow specifying multiple fields for --sort-by
- [2000037] Check library: Allow opening the book folder easily
:: bug fixes
- Fix windows not being moved onto the current monitor when they were previously visible on a removed monitor that was to the left of the current monitor
- [1999995] Book list: Fix a regression in the previous release that broke drag and drop of multiple books
- [2000877] Fix detection of Tolino Vision 6 on macOS/Linux
- [2001880] Content server: Fix auto full screen not working when continuing to read books with user account enabled
- Edit book: Set semantics: Fix error when setting the "Notes" semantic
- [1999956] HTMLZ output: Fix images referred to in CSS stylesheets not being converted
- [2000881] Book details panel: Fix HTML comment tags in the comments breaking display of book details
- Content server home page: When showing recently read books from across devices hide the entries for which loading the cover fails
- Windows Text-to-speech: Do not fail to configure if one of the voices has no defined language
- Fix a regression in calibre 5 that broke using a file for the --extra-css option of ebook-convert
- Content server FTS: Fix page header bar not visible
- Content server: Fix identifiers from third party metadata download plugins not becoming clickable links on the book details page
- Edit book: Warn when saving will overwrite a read-only file
- Fix restoring geometry of maximized/fullscreen dialogs forcing them visible
- [1999936] Fix a regression in the previous release that caused spurious error message when doing some out of band searches
- Fix a regression in the previous release that broke choosing new programs for the Open with function
:: improved recipes
- PC World
- HNA
- Caravan Magazine
- Harvard Business Review
- Various Israeli news sources
:: new recipes
- NHK News - by Richard A. Steps
- Globes in English by barakplasma
}}}
{{{ 6.10.0 2022-12-16
:: new features
- [major] Content server: Add support for searching the full text of books. Simply click the FTS link on the search page to start a full text search.
- [1998557] Content server: When using user accounts, the homepage now shows recently read books from any device not just the current device
- [1999685] Kobo driver: Bump the max supported firmware version
- [1998780] Conversion: New Output profile for the Kindle Scribe
- [1998705] Check library: Allow ignoring folder names as well as files names
:: bug fixes
- [1999349] Edit book: Fix various formatting operations not inserting the tags in the correct place in the presence of non-BMP characters
- Edit book: Use <s> instead of <strike> for strikethrough
- [1998899] Edit book: Fix export saved search to search panel not preserving the wrap checkbox state
- [1998767] Content server: Redirect the index page to always have trailing slash when using URL prefixes
- Book list: Workaround for change in Qt 6 behavior where clicking on an already selected row does not deselect other rows
- [1998165] Windows: Fix a regression in calibre 6 causing Open with to not extract icons from EXE files
:: improved recipes
- Indian Express
- Financial Times
- TIME Magazine
- Hindu Business Line Print Edition
- Arts and Letters Daily
- Frontline
- Sportstar
- New Yorker
:: new recipes
- Fokus by Henrik Holm
- Press Information Bureau by unkn0wn
- Himal Southasian by unkn0wn
- Indian Express Print Edition by unkn0wn
}}}
{{{ 6.9.0 2022-11-25
:: new features
- E-book viewer: When exporting highlights as plain text include titles from chapters at all levels not just the first level
- Edit book: Reports: Show the number of words per file in the Files section of the report
- Windows builds: sign DLLs in addition to EXEs to make Microsoft's new "Smart App Control" tool happy
- Sending by email: When adding comments also add series
- [1990730] Nook driver: Put files in NOOK/Books instead of NOOK/My Files on recent nook devices so they are all listed in one place in the NOOK UI
- calibredb list: Allow using a template as one of the returned fields
- Tag browser: Add context menu action to turn on/off sub-categorization for a category
:: bug fixes
- [1996802] Merging books: Fix title sort not being updated when the title is updated
- Content server viewer: Fix incorrect sorting of highlights in the same paragraph
- Content server viewer: When exporting highlights as text include chapter titles
- Improve rendering of the separator handle dots introduced in the previous release
- Edit book: Fix regression in previous release causing applying any container update marking all open image editors as modified
- Fix a regression in the previous release that caused copying book details to clipboard to use unix line endings on windows
:: improved recipes
- Bloomberg
- The Globe and Mail
- Spectator Magazine
- The New York Times
- The Hindu
- MIT Technology Review
}}}
{{{ 6.8.0 2022-11-04
:: new features
- Allow customizing the buttons available to the right of the search bar in the main calibre window via Preferences->Toolbars & menus->The buttons on the searchbar
- [1994065] Book details panel: Allow adjusting the space used by the cover with a splitter
- Make splitter handles more visible in the calibre UI style
- [1994136] When sending by email to Kindle do not include the author in the filename as Amazon is currently reading the author from the file metadata but not the title
:: bug fixes
- [1993051] Book list: Fix incorrect rendering of yes/no icons when they are configured to have only two values
- [1990730] Nook driver: Send books to the NOOK folder for the 2021 Nook model as well
- Improve performance in very large libraries of various UI operations such as right clicking, marking books, etc.
- Fix edit metadata dialog not remembering its position and improve how calibre restores window position and size on multi-monitor systems
- Conversion: Fix CSS styles applied to SVG elements being discarded
- [1995551] EPUB Input: Fix empty Adobe page number template file causing conversion to fail
- [1995214] E-book viewer: Fix rendering of comments in metadata display when using a dark color scheme
- [1994988] AZW3 Input: Fix svg images that use a prefix for the SVG namespace not being recognized
- Edit book: Fix double clicking in the see what changed dialog not opening the file in the editor since calibre 6.0
- Edit book: Fix modified indicator on images not working correctly when replacing the image
- Amazon metadata download: Adapt the plugin for website changes
:: improved recipes
- Army and Navy Times
- eenadu_ap
- Handelsblatt
:: new recipes
- Fifty Two by unkn0wn
- Bloomberg and Bloomberg Business Week by unkn0wn
}}}
{{{ 6.7.0 2022-10-14
:: new features
- Template language: A new "Python template mode" which allows using arbitrary Python code in templates
- [1992273] Tag browser: Allow removing format from selected books by right clicking on the format in the Tag browser
- [1991597] E-book viewer: Ask for confirmation when creating a highlight that will overwrite existing highlights
- Book list: Allow changing column widths via a dedicated dialog by right clicking on column headers
:: bug fixes
- [1992278] E-book viewer: Fix a regression that broke adding of new lookup sources
- [1991504] E-book viewer: Fix copy to clipboard not ignoring text from elements that are marked as non user selectable
- [1992244] Content server: When adding books, run all file type plugins before reading metadata
- Edit book: Preview panel: In dark mode when all of the background/foreground/link colors are set to "No change" do not render the book using dark colors
- Version 6.7.1 fixes a regression in the previous release that broke the delete specific format from book function
:: improved recipes
- The Athletic
- der Standard
- The Economic Times India Print Edition
- Indian Express
- India Today Magazine
- Caravan Magazine
}}}
{{{ 6.6.1 2022-09-30
:: new features
- Book details: allow displaying multi-valued categories such as tags on separate lines via Preferences->Look & feel->Book details
- [1989813] Tag browser: When searching the Tag browser allow also filtering the book list to show only books that match one of the categories currently shown in the Tag browser.
To use enable the two Preferences: "Preferences->Look & feel->Tag browser->Hide empty categories" and "Find shows all items that match".
Then, when searching the Tag browser, press Ctrl+Alt+Shift+F to restrict the displayed books.
- [1990507] Edit book: When right clicking on HTML files in EPUB 3 books, allow marking them as the Table of Contents (NAV document)
:: bug fixes
- [1990185] EPUB Output: Fix converting a document with obfuscated fonts to EPUB 3 not working
- [1990660] Edit book: Fix an error when processing books that contain comments inside unknown CSS @ rules
- [1989722] Content server: Fix jumping to locations such as bookmarks not working on iPhone/iPad running iOS >= 15
- [1990766] Font subsetting: Fix :first-line and :first-letter pseudo classes not being handled correctly
- Workaround for Amazon's email delivery service not reading metadata from inside ebook files
- Edit book: File list: Fix pressing Tab key while renaming a file not starting the rename of the next file
- Version 6.6.1 fixes a regression that caused the Edit metadata window to not remember its last used size.
Note that you will have to resize it once after updating to 6.6.1, after which the size will be remembered.
:: improved recipes
- SCMP
- Spectator Magazine
- Spiegel Online International
- Engadget
}}}
{{{ 6.5.0 2022-09-16
:: new features
- Kobo driver: support the new Kobo Clara 2e
- [1989631] When running calibre with the --with-library command line flag and calibre is already running, switch to the specified library in calibre
- [1988443] E-book viewer: Ask for confirmation when deleting a custom highlight style
- [1988609] Do not show the virtual libraries tab bar when no virtual libraries are present
- Tag mapper: When specifying the replacement tag allow completion from the tags in the currently open library
- Template language: New functions strcasecmp() and to_hex()
:: bug fixes
- [1989177] Comments editor: Workaround for Qt inserting invalid font-weight when converting a paragraph to a heading
- [1988590] E-book viewer: When displaying highlights do not group highlights from different chapters when the chapter titles are identical
- Tag browser: Fix error if a User category contains a reference to a deleted custom column
- [1989282] When sending books by email to the Kindle and PocketBook email delivery services use random subject and filenames consisting of simple English letters to try to workaround various bugs in their email processing code
:: improved recipes
- The Wall Street Journal
- Open Magazine
- The Baffler
- Dark Reading
- New York Times
- NYTimes Cooking
- NYTimes Sports Beat
- Outlook Magazine
- Foreign Affairs
}}}
{{{ 6.4.0 2022-09-02
:: new features
- [1987011] Conversion pipeline: Add support for !important when flattening CSS rules
- [1986786] Content server: Use the chapter title as the base bookmark name when creating new bookmarks
- Allow changing the search order when clicking on items in the Tag browser (Preferences->Look & feel->Tag browser->Hierarchy and searching)
- [1986500] Check library: Make vacuuming the full text database optional as it is very slow and memory intensive
- [1987235] Tag browser: Move the preferences for controlling the order and display of categories in the Tag browser from Preferences->Tweaks to Preferences->Look & feel->Tag browser
- [1984121] User category editor: Hide items not visible in the Tag browser
- Allow adding a button to show the Manage categories window to the toolbars via Preferences->Toolbars & menus
- Google metadata download: When excluding results from a web search because they don't match the specified title/author ignore diacritics, accents, etc.
:: bug fixes
- [1986963] E-book viewer: Lookup: Google dictionary: Add some padding at the left and right margins
- [1985855] E-book viewer: Lookup word in Google dictionary: Fix meanings of some words not being shown in the user's preferred language
- [1987390] Fix calibredb backup_metadata --all operating only on dirty books not all books
- [1987557] Do not VACUUM FTS db when exporting library as it can be very slow
- Windows: Nicer error message when attempting to run viewer/editor on machine without MediaPack installed
- Edit book: Reports: Fix rendering of images in the images report table
- [1986412] Content server: Fix formatting of dates for custom columns using ISO format
:: improved recipes
- Live Law and Live Mint
- Financial Times and MIT Technology Review
- Business Standard and Indian Express
- Nautilus
- High Country News
- Outlook Business Magazine
:: new recipes
- Brhat by Vishwas Vasuki
- Cachys Blog by Volker Heggemann
- Various Russian and Ukranian news sources by bugmen00t
}}}
{{{ 6.3.0 2022-08-12
:: new features
- E-book viewer: Allow searching for nearby words using a new "Nearby words" search mode
- calibredb: New fts_search and fts_index commands to perform full text searching from the command line
- [1985021] Image viewing popup: Allow zooming using the standard shortcuts of Ctrl+plus/minus
:: bug fixes
- Fix a regression in calibre 6.0 that broke remembering the previous sort order for a column
- [1983484] Fix a regression in calibre 6.0 that broke processing of very high resolution images
- [1983230] Full text search: Fix error when using restrict searched books and more than 900 books are present in the searched list
- E-book viewer: Fix parsing of CSS styles with @supports rules not working
- E-book viewer: Speed up initial render of books with lots of CSS in <style> tags by not prettying the CSS
- [1983126] Google books metadata download: Fix paragraphs not being recognized
- Content server: Fix light background for comments editor in dark mode
- [1985058] Content server: Fix margin and body background color mismatch when reading books with a non-white/black color scheme
- [1983271] Content server: Fix long tapping in the notes edit area incorrectly changing the highlight extent
- Google search engine: Fix for different URL encoding used by Google servers in Portugal
- Check library: Fix vacuum not running on FTS db
:: improved recipes
- Wirtschaft Woche
- Scientific American
- Popular Science
- Mediapart
- MIT Technology Review
- Indian Express
- Eenadu
:: new recipes
- Various Russian and Ukranian news sources by bugmen00t
}}}
{{{ 6.2.1 2022-07-29
:: new features
- Full text search: Ignore soft hyphens when extracting searchable text from books. Note that you will have to re-index your library to take advantage of this.
- Content server: Have the Read button open PDF files in the browsers builtin PDF viewer rather than the calibre viewer since the calibre viewer is not well suited to PDF
- Kobo driver: Add support for new firmware
- Create icon theme dialog: Add a checkbox to install the newly created theme into calibre
- Allow re-indexing a book for FTS by right clicking the Book details panel
:: bug fixes
- [1982060] Content server: Workaround for Chrome bug causing multiple sign in prompts when connecting to the server after restarting Chrome
- Fix a regression in 6.0 that broke rendering of first page of EPUB as cover when the EPUB has no actual cover
- [1981886] Content server: Fix a regression in 6.0 that caused incorrect rendering of comments metadata in the book details panel in dark mode
- [1982743] FB2 Input: Fix a regression in 6.0 that broke conversion of FB2 on macOS
- [1982502] Metadata download from Google: Switch to making the queries via a Google web search as this finds some books that searching via the API does not
- [1982651] Book details panel: Fix clicking on items from an enumerated column containing ampersands not searching correctly
- Image editor: Do not allow initial mouse drag to create selection rect outside the image bounds
- E-book viewer: Fix clicking on ToC entries moving keyboard focus to the ToC search box when the ToC window is floating
- Fix a regression in 6.0 that caused the default cover to be rendered small in some contexts
- [1981882] Various bug fixes related to the new dark/light icon theme switching. Make the icons more consistent even when using the system theme. Use calibre specific file type icons when using the non native file dialogs. Allow creating dark/light override icons manually in the configuration folder.
- [1981909] Disable the color theme setting when using system style
- When using a fixed color palette and the system colors are of different type enforce the color palette
- [1982050] Ignore Qt generated application palette changes when using a fixed palette
- In the icon theme chooser dialog show light and dark themes only in the light and dark tabs
- [1982035] Welcome wizard: Fix device names not being translated correctly leading to the same name being repeated for some devices
- Read aloud: Fix spurious error message on Linux about voices not being installed
- Linux binaries: Bundle brotli and graphite2 as well as Qt links against them
- FTS dialog: When keyboard navigation changes the current item ensure it stays visible
- [1981887] Binary builds: Fix Qt TLS backends not included
- Fix Qt WebEngine creating cache folders outside of the calibre cache directory
- Version 6.2.1 fixes a regression in 6.2.0 that caused the Read button in the Content server to only work for PDF books
:: improved recipes
- Frontline
- HBR
- The Australian
- India Today
- Indian Express
- India Today
- Live Mint
- The Atlantic
:: new recipes
- The Athletic by unkn0wn
- Various Russian and Ukranian news sources by bugmen00t
}}}
{{{ 6.1.0 2022-07-16
:: new features
- Full text search: Add a button to re-index a book, useful if the book's contents have been changed outside calibre
- Search queries now support quoting using "docstrings" for easier escaping
- Linux installer: Check for libEGL as the QtGui module in Qt 6 links against it and many Linux servers don't have it installed
:: bug fixes
- macOS: Blacklist older versions of the DeDRM plugin as they caused crashes and failures to add books.
- [1981453] Fix a regression in 6.0 that caused crashes in the Manage authors dialog
- Fix a regression in 6.0 that broke touch screen interaction
- [1981627] Fix a regression in 6.0 that caused a few checkboxes to stop working
- [1981629] Linux: Fix a regression in 6.0 that broke handling of mouse clicks on some Wayland systems with a touchpad
- ToC Editor: Fix a regression in 6.0 that broke styling/images in the preview panel
- Windows: Fix window titlebars not dark in dark mode
- Full text search: Show a warning when indexing/searching a library on an FAT drive
- News download: Do not add aborted/failed article titles to the comments metadata
- Full text search: Fix books edited with the Edit book tool not being automatically re-indexed
- [1981438] HTML Input: Fix handling of deeply nested files on Windows
- [1981188] Fix a regression preventing using a non-integer value for the tweak to change book details font size
- Fix moving library not moving the full text search index
- Fix some custom icons in the calibre config directory not overriding the theme/builtin icons
- Linux installer: Fix glibc version check also being done when installing older versions
- Windows installer: Refuse to install on Windows 8 as thanks to Qt 6 calibre 6 does not work on Windows 8
- Update the BigBookSearch metadata plugin for website changes
:: improved recipes
- The Economic Times India
}}}
{{{ 6.0.0 2022-07-11
:: new features
- [major] For details on the major changes in calibre between 6.0 and 5.0, see https://calibre-ebook.com/new-in/fifteen
- [major] Full text search: You can now search the entire text of all books in your calibre library
- [major] Support for new CPU architectures: Apple Silicon and ARM64 on Linux. Support for 32bit CPUs has been dropped because Qt 6 does not support them
- Dark mode in calibre is now controlled via a setting in Preferences->Look & feel rather than an environment variable
- Allow choosing different icon themes for light and dark mode in Preferences->Look & feel
- Upgrade calibre to use Qt 6. This means that some no longer maintained third party plugins may not work, though most plugins have already been ported
}}}
{{{ 5.44.0 2022-06-17
:: new features
- [1976105] Amazon metadata download: Add an option to prefer the Kindle edition when multiple book types are returned by the search (Preferences->Metadata download->Configure the Amazon plugin)
- Kobo driver: Support for updated firmware
- [1977681] Allow customizing how yes/no columns are displayed (Preferences->Add your own columns)
- Manage tags dialog: If tags are present in the add tags input when OK is clicked, add them automatically, without needing to click the plus button first
:: bug fixes
- [1978500] Edit book: Live CSS: Fix @namespace rules causing jumping to rule definition to go to the wrong definition
- Workaround for Apple bug in macOS 13 that prevents device detection
- Don't use commas in filenames when sending to pbsync and kindle email addresses
- Edit book: When quitting while a save is in progress and the save completes while the confirmation popup is visible, don't abort the quit.
:: improved recipes
- Harvard Business Review
- Philosophy Now
- Sydney Morning Herald
- Haaretz
- Indian Express
- Hindi Business Line
- The New York Times
- Nature
- Eenadu
- Scientific American
- Business Today
- Irish Times
- FAZ.net
- Le Monde
- Economist
:: new recipes
- Nautilus by unkn0wn
- The Healthy from Reader's Digest by Stephen Genusa
- Business Standard Print Edition by unkn0wn
- The Economic Times India Print Edition by unkn0wn
}}}
{{{ 5.43.0 2022-05-27
:: new features
- Kobo driver: Allow using templates to generate collections
- [1975406] Book details popup: Double clicking on the cover now uses calibre's internal image viewer. Right click on the cover to open it with another program.
:: bug fixes
- [1971461] Fix Book details blank when switching from device view to library view
- [1973591] TXT Input: Fix a regression in 5.39 that caused the option to remove indents also removing blank lines
- [1972069] E-book viewer: Fix incorrect sorting of highlights from the first internal file of a book
:: improved recipes
- Outlook Magazine
- India Today
- The New Yorker
- Foreign Affairs
:: new recipes
- Asahi Shimbun by Albert Aparicio Isarn
- Business Today Magazine by unkn0wn
- Outlook Business Magazine by unkn0wn
- Donga by Minsik Cho
- Le Monde (English) by Darko Miletic
- Hinduism Today by Vishwas Vasuki
- The MIT Press Reader by yodha8
- Live Science by yodha8
- Financial Times Print Edition by Kovid Goyal
- Various Catalan language news sources by santboia
}}}
{{{ 5.42.0 2022-05-03
:: new features
- E-book viewer: Ignore accents when doing a search
- [1969926] Book list searching: Ignore punctuation when searching. So that, for example, Gravitys will match Gravity's
- [1970045] Show the text used for marking books in the tooltip
:: bug fixes
- [1971150] Edit book: Reduce memory consumption by the checkpoint system when doing operations that involve parsing all book files
- [1971015] Amazon metadata download: Fix titles starting with [ being ignored
- [1970497] Edit metadata dialog: Undo not working correctly in identifiers field
- [1970391] Fix viewing LRF files not working
- [1969981] PDF Output: Fix an error on some invalid CSS in the input document
- Linux binary: Workaround for Qt WebEngine not working on systems with glibc > 2.33
:: improved recipes
- New Yorker
- OMG! Ubuntu!
- ACM Queue
- CACM
- Science News
- Quanta Magazine
- Outlook Magazine
- Indian Express
:: new recipes
- Caravan Magazine (Hindi) by Areet Mahadevan
- LWN (Free) by yodha8
- IEEE Spectrum Magazine by yodha8
- Financial Times by Kovid Goyal
- Cosmos Magazine by yodha8
}}}
{{{ 5.41.0 2022-04-22
:: new features
- [1968810] Allow creating multiple types of temporary marks (pins) by right clicking the mark books button (which can be added to the calibre toolbar via Preferences->Toolbars & menus)
- Kobo driver: Support updated firmware
- [1967149] Show a popup message when a Kindle is connected mentioning the Amazon cover bug and how to workaround it
- Edit book: Table of Contents tool: Allow using the title attribute on headings tags to get the text for table of contents entries
- When creating a custom column to display real (floating point) numbers allow specifying the number of decimal digits when editing values
- Amazon metadata download: Add support for amazon.in country website
:: bug fixes
- [1969302] Edit book: Fix AltGr+{ not working on some keyboard layouts
- [1967828] TXT Input: Fix rare failure to convert some large TXT files with non-ASCII text
- Get books: Update English language Amazon plugins for website changes
:: improved recipes
- The Economic Times India
- Business Standard
- scmp.com
- Wired Magazine Monthly Edition
- Reason Magazine
- The Skeptical Inquirer
- Times of India
- LiveMint
- The Week
- Indian Express
- Hindustan Times
:: new recipes
- Eenadu by unkn0wn
- Harvard Business Review by unkn0wn
- Hindustan by unkn0wn
- Dainik Bhaskar by unkn0wn
- Free Inquiry by Howard Cornett
- Sportstar by unkn0wn
- Digit Magazine by unkn0wn
- The Diplomat by unkn0wn
}}}