forked from kovidgoyal/calibre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog.txt
1561 lines (928 loc) · 55.7 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.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
:: new features
- Edit book: Show full path to book being edited in the status bar
- Edit book: When adding dictionaries allow directly a LibreOffice adding the dictionary just by choosing the language
- Edit book: When saving a copy add some convenience actions to edit the copy immediately either in the current editor window or a new window
- E-book viewer: Highlights panel: Allow right clicking to export only selected highlights
:: bug fixes
- [2034900] Edit book: Fix a regression in the previous release that caused Text search to sometimes not select matches correctly
- [2037198] Edit book: When copying files do it in order so that the files are pasted in the same order when pasting into another editor instance
- Edit book: Fix smart tag insert not working correctly if the selected text starts with the closing angle bracket of a tag
- [2038238] Save to disk: Do not limit the total path length to 240 characters on non-Windows platforms
- [2037898] Fix incorrect cover for AZW3 version of calibre User Manual
- [2029723] Content server: Change formatting of book details to match new de-emphasized titles based formatting in the main calibre program
- PDF metadata: Fix a regression that broke updating metadata in PDF files without an /Info dictionary
- NOOK driver: For the Glowlight 2023 write the calibre metadata files into the NOOK sub-folder as the firmware does not allow writing files into the root folder
- NOOK driver: Fix Glowlight 2023 not being detected on Linux and macOS
- [2037454] E-book viewer: Make CFI calculation more robust especially on pages with very little content
- [2037543] E-book viewer: Workaround bug in Chromium where getBoundingClientRect() fails sometimes leading to incorrect calculation of anchor positions
- [2037237] Fix errors caused by .DS_Store files inserted into the .caltrash directory on macOS if the user happens to open .caltrash in Finder
- Version 6.28.1 fixes a regression in 6.28.0 that could cause errors when merging some book records in calibre
:: improved recipes
- National Geographic
- Bloomberg
- Endgadget
- Times of India
- Horizons
:: new recipes
- Business Standard Print Edition by unkn0wn
}}}
{{{ 6.27.0 2023-09-22
:: new features
- [2034954] Kobo driver: Support updated firmware
- Nook driver: Add support for Nook Glowlight Plus 2023
- Data files manager: Allow drag and drop of files onto the list of files to add new files
- [2036266] Support 7z archives in addition to ZIP and RAR for automatic ebook extraction when adding to calibre
- Linux/macOS: Fix detection of the Kindle Scribe with MTP firmware
- [2034760] E-book viewer: Allow clearing list of recently opened books from the open button's popup menu itself
- [2034905] E-book viewer: Add a link to show the currently viewed book in the calibre library (Go to->Metadata in the viewer controls to access it)
:: bug fixes
- [2034999] Book information dialog: Fix a regression that caused incorrect color for titles in dark mode
- [2034977] E-book viewer: Fix searching does not jump to first match if all matches are before current position in book
- [2035579] EPUB Output: Fix duplicated title page entry in spine for books that define a title page that ends up getting split
- Allow for-light/dark-theme icon overrides to work for plugin icons placed by the user in the override folder
- [2035338] PDF Output: Fix background image + text not rendering correctly if the same background image is used with different text multiple times
- [2034968] E-book viewer: Fix section titles in highlights panel being incorrectly expanded to full titles when the section has multiple highlights
- [2035039] Prevent Quickview window from opening in the background
- [2034900] Edit book: Fix a regression in the previous release that caused an error when doing text based searches
:: improved recipes
- Ambito
- Financial Times
- USA Today
:: new recipes
- Times of India Print Edition by unkn0wn
- Hindu Feeds based by unkn0wn
- Australian Financial Review by unkn0wn
}}}
{{{ 6.26.0 2023-09-08
:: new features
- MTP driver: Support the new Kindle Scribe firmware that causes it to act as an MTP device instead of USB disk. Add "Documents" to the list of default folders to send books to
- E-book viewer: Add a new option under scrolling behavior to control horizontal mouse wheel events jumping to next section
- Allow full customization of Book details styling via Preferences->Look & feel->Book details
:: bug fixes
- [2023046] Get books: Update ebooks.com plugin for website changes
- Edit book: Fix searching for non-BMP unicode characters highlighting only half the character
- [2034075] E-book viewer: Fix displaying more than one page per screen causing page layout to be slightly wrong for some books
- [2034404] E-book viewer: Fix clicking on links with empty destinations hanging the viewer
- [2033981] E-book viewer: Fix modifying, then jumping to and then modifying the highlight again from the highlights panel causing the highlight to be deleted
- [2033205] E-book viewer: Fix indication of current section in Table of Contents sometimes wrong after changing font size
- [2033530] E-book viewer/Content server: Disallow browser native context menu when right clicking in sandboxed iframes
- MTP driver: Ignore top level folders whose names start with a leading dot Also ignore AppleDouble files, top level system and fonts folders and sdr folders on Kindle devices
- [2033074] FB2 Input: use the <p> tag for paragraphs that dont contain other block content
- [2033118] E-book viewer: Fix clicking on the back/forward buttons not working in some situations
- [2032974] E-book viewer: Fix scrolling to Table of Contents items that are within a single internal file not activating the back button
- [2032694] E-book viewer: Fix changing the sans-serif font without also changing the monospaced font not working
:: improved recipes
- National Geographic
- Sportstar
- Bangkok Post
- MIT Technology Review
- Bloomberg
- Economic Times India
- Firstpost
:: new recipes
- Nikkei Asia (Magazine) and Espresso by unkn0w7n
}}}
{{{ 6.25.0 2023-08-18
:: new features
- [2029723] Book details panel: De-emphasize titles making the actual data stand out more
- Allow using the new manage data files dialog from within the edit metadata dialog
- [2030342] Trash dialog: Allow right clicking on an entry to save it to disk
- [2027794] When merging books by drag-and-drop add an option to use the dragged cover instead of the cover in the target book
- [2031571] Create catalog: Add buttons to easily select all/non/visible fields when creating CSV/XML catalogs
- [2031570] Preferences->Add your own columns: Add buttons to show/hide all columns
:: bug fixes
- [2031341] Fix a regression in the previous release that broke parsing of some ISO-8601 timestamps
- [2030671] E-book viewer: Mouse wheel horizontal events should jump sections not internal file boundaries
- [2031569] Fix Preferences->Add your own columns changing check state on moving columns
- Get books: update various Polish e-book stores for website changes
- [2029521] E-book viewer: Fix CFI parsing of numbers with trailing zeros causing some bookmarks to not work
- [2029521] E-book viewer: Show an error when creating a bookmark if the bookmark position is not found
- [2031047] CBR Input: Fix comics with extremely long internal filenames not working on Windows
- Edit book: Saved searches: Fix incorrect import in generated source code for some builtin functions
- Data file manager: Fix errors on systems with larger font sizes
:: improved recipes
- Bloomberg
- Focus
- Epoch Times
- Hindu
- Business Today
- NYTimes
:: new recipes
- The Oldie by Sophist
- Various new Russian and Ukrainian news sources
}}}
{{{ 6.24.0 2023-08-04
:: new features
- [2023509] Easily manage the extra data files associated with a book by right clicking the edit metadata button and choose "Manage data files"
- [2028216] Content server: Full text search: Allow searching a restricted subset of books
- [2029014] E-book viewer: Allow clicking on calibre:// URLs
- [2027727] Support fuzzier searching in the Tag browser find allowing unaccented characters to match accented ones
:: bug fixes
- [2028404] DOCX conversion: Preserve underline style and color
- Fix incorrect sorting of device view after some operations
- [2023737] Fix visit content server in browser not working when the content server is configured to listen on an IPv6 interface
- [2028019] Fix one hour offset in some timezones on Windows for dates before 1970
- [2027763] Windows: HTML Input: Fix error when trying to add HTML files with links to other files that are invalid pathnames
- Get books: Update various Polish language book stores for website changes
:: improved recipes
- Epoch Times
- Business Standard
- Tagesspiegel
- Bloomberg Business Week
- MIT Technology Review
- Live Mint
- Private Eye
:: new recipes
- The New Republic Magazine by ping
- Inc42 by unkn0w7n
}}}
{{{ 6.23.0 2023-07-14
:: new features
- [2025942] PDF Output: Add an option to discard the book cover instead of inserting it as the first page of the PDF
- [2025333] Content server: Allow opening the Book details page for a matched book from the Full text search results page
:: bug fixes
- Windows: Fix empty data folder getting created in the directory calibre is launched from when changing title/author for a book with an existing data folder
- [2026795] LIT Output: Fix error converting anything to LIT on Windows
- Ignore failures to expire old trash during startup
- [2025786] Amazon metadata download: Fix retrieval of publisher information from amazon.fr
:: improved recipes
- Guardian & Observer
- Washington Post
- Private Eye
- Associated Press
:: new recipes
- ThePressProject by Sotiris Papatheodorou
}}}
{{{ 6.22.0 2023-06-30
:: new features
- Kobo driver: Add support for newest firmware
- [2023604] Trash bin: Allow setting removed books to be permanently deleted on library close
- Windows: Nicer error message when file/folder is locked in another program
:: bug fixes
- PDF Output: Fix regression that caused large slowdowns when converting books with lots of internal HTML files to PDF
- [2024139] CHM Input: Fix ToC entries that use fragments not supported
- E-book viewer: Fix searching for text next to hidden text not scrolling to the match
- [2024375] E-book viewer: Fix selection popup not showing for some books on some platforms when the selection is in the top line
- [2024433] DOCX Output: Fix multiple SVG images in the input document causing all the SVG images in the output to be just one of the input images
- [2023943] MOBI Input: Ignore another form of corruption in trailing bytes
:: improved recipes
- Foreign Affairs
- Nature
- Bloomberg
- LiveMint
- Hindu and Hindu Business Line
- Deautsche Welle
- Horizons
- Indian Express
- Psych
- Harper's Magazine
:: new recipes
- Radio Canada by quatorze
- Deutschland Funk by Armin Geller
}}}
{{{ 6.21.0 2023-06-13
:: new features
- DOCX Output: Add support for SVG images
Now the generated DOCX will contain both the rasterized version of the SVG
image and the original SVG image as the preferred source, which is supported
by modern versions of Word.
- [2023367] E-book viewer: Allow configuring the actions triggered by touch gestures
- DOCX Input: Add support for SVG images
:: bug fixes
- Windows: Fix a regression in the previous release that could cause files to be deleted if one of the files/folders was open in another program while changing title/author in calibre
- [2023395] macOS: Fix extra dock icons visible when doing a job using Qt WebEngine such as converting to PDF or searching in Get books
- [2023476] macOS and Linux: Fix an error when changing metadata or deleting books whose files are owned by another user
- [2023377] CHM Input: Yet another regression opening CHM files with missing internal files on windows
- [2023431] CHM Input: Resolve absolute links to resource files from the root of the CHM file
:: improved recipes
- Guardian & Observer
- Harper's Magazine Print recipe
- Live Mint
:: new recipes
- The India Forum by unkn0wn
}}}
{{{ 6.20.0 2023-06-09
:: bug fixes
- [2021413] CHM Input: Fix a regression in the previous release that broke conversion of CHM files
- Windows: Make moving files in the calibre library folder more robust, locking folders in addition to files, before the start of the move
- [2023046] Get books: Update Barnes and Noble store plugin for website changes
- [2023189] Kindle output: Only re-encode JPEG images with EXIF metadata if the metadata contains actual transpose operations
- [2023041] PDF Output: Fix error when input document contains multiple instances of a font some with vertical metrics and some without
- PDF Output: Fix using CSS Multicolumns for body causing conversion to fail when header/footer is specified
- [2022035] MOBI Input: Fix a crash when converting some corrupted palmdoc compressed MOBI files
- [2021554] E-book viewer: Ensure CSS stylesheets are interpreted as UTF-8
:: improved recipes
- Foreign Affairs
:: new recipes
- Prospect Magazine UK (Free) by ping
}}}
{{{ 6.19.1 2023-05-29
:: new features
- HTML Input: Restrict adding of resources like images to only files within the folder hierarchy starting at the parent folder of the root HTML file
Can be controlled by customizing the HTML to Zip plugin in Preferences->Plugins or the --allow-local-files-outside-root option to the
ebook-convert command
:: bug fixes
- PDF Output: Fix regression in previous release causing non-English entries to be incorrectly encoded into the PDF bookmarks
- PDF Output: Fix regression in previous release that caused blank pages when generating headers or footers
- [2021367] Book list: Fix editing-in-place not pre-selecting existing text for some column types
- Amazon.de metadata download: Update for site changes
- PDF Output: Set /Creator and /Producer in /Info
- [2020906] Fix row height incorrect in Manage category dialog when blank
- [2021452] 6.19.1 fixes a bug in 6.19.0 that broke the edit metadata dialog
}}}
{{{ 6.18.1 2023-05-26
:: new features
- [2020603] Cover download: Allowing saving alternate covers to disk or in the book's data folder by right clicking on the cover
- [2020237] Content server: Allow disabling full text search via the web interface
- [2020233] When sending books to the device confirm the overwrite if the book already exists on the device
- E-book viewer: Handle horizontal wheel events as section jumps in paged mode
- Comic Input: When grayscaling comic images use 16bit gray instead of 8bit for better fidelity
When using the PNG format for images this results in larger files but with better grayscaling fidelity.
- Add a new option in Preferences->Searching to disable keyboard searching in book list (i.e. you can turn off the behavior that pressing a key will jump to the first book whose title starts with that letter)
- [2018423] Manage categories dialog: Use alternating row colors and allow adjusting row height
- Allow assigning a keyboard shortcut in Preferences->Shortcuts to open the data folder of a book
- Various improvements to syntax highlighting for the Markdown long text editor
:: bug fixes
- [2018025] Fix a regression in 6.16 that broke restoring of the database
- Tag browser: Fix using F2 to edit items not allowing completion
- Book details: Fix formatting of text when copying all book details in narrow mode
- Book details: Fix copy all not respecting line breaks in fields
- [2018660] Fix a regression in previous release that broke scrolling when using the scroll_per_row tweak
- [2018548] Fix a regression in the previous release that broke the category manager dialog in some situations
- 6.18.1 fixes a regression that broke setting metadata and generating PDF files in the macOS and Linux binary builds
:: improved recipes
- NYTimes
- Economist
- Washington Post
- Irish Independent and Irish Times
- Live Mint
- Psych
- Hindu
:: new recipes
- Irish Times Free by unkn0wn
- elEconomista.es and El Confidencial by Hugo Meza
}}}
{{{ 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