forked from kovidgoyal/calibre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog.txt
2460 lines (1393 loc) · 88.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.
# {{{ 6.x.0 2023-xx-xx
#
# :: new features
#
# - title
#
# :: bug fixes
#
# - title
#
# :: improved recipes
# - title
#
# :: new recipes
# - title by author
# }}}
{{{ 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: Dont 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
}}}
{{{ 5.40.0 2022-04-01
:: new features
- [1966872] Content server viewer: Allow editing bookmarks
- [1967028] Read covers from CBC comic files
- [1966537] Allow filtering authors/tags when creating virtual library based on them
- [1966851] Add a copy button to the image view popup
- Template language: Support for nested functions and a string concatenation operator
:: bug fixes
- DOCX Output: Fix a comment immediately after a <li> tag breaking the conversion
- Standalone ToC editor: Fix spurious error message if left open for more than two minutes
- [1965693] Fix search-as-you-type triggers extra search after manual confirmation
:: improved recipes
- Courrier International
:: new recipes
- Reason Magazine by Howard Cornett
- Seminar Magazine by unkn0wn
- Frontline by unkn0wn
}}}
{{{ 5.39.1 2022-03-18
:: new features
- [1963875] E-book viewer: Allow scrolling of the ToC, highlights, bookmarks, etc. with touch gestures
- [1963822] Edit metadata dialog: When using the change case operations if some text is selected, only operate on the selected text
- [1964123] Use atomic writes for the config files ensures no partial data is written in case of crash/powerloss
:: bug fixes
- 5.39.1 fixes a couple of regressions that broke case change in the Bulk metadata edit dialog and remembering column widths in the book list on some systems.
- [1964742] Content server: Fix reading of books with thousands of internal files not working in the Chrome browser
- [1965182] Catalog generation: Fix a rare crash when generating very large catalogs
- Edit/Polish book: Fix hardcoded Unicode ligatures not being preserved in AZW3 format books
- [1963868] Fix automatic searches causing search box to lose focus when search as you type is enabled in Preferences->Searching
- [1963748] Edit book: Check book: Auto fix package identifier being empty
- [1963856] Amazon metadata download: Fix getting series info from amazon.jp
- Edit book: Insert hyperlinks: When sorting anchors on elements without any text content, use the anchor itself
- Edit book: Make the saved search panel freely resizable
- Edit book: When dragging to select a region or adjust the selection fix mouse moving outside the image causing the region to no longer be adjusted
:: improved recipes
- India Legal Magazine
- The Smithsonian
- The Federalist
:: new recipes
- Swarajya Magazine by unkn0wn
- Open Magazine by unkn0wn
}}}
{{{ 5.38.0 2022-03-04
:: new features
- [1852929] E-book viewer: When displaying estimated time to completion for reading a book, remember the reading rate the next time the book is opened
- [1961500] Dark theme: Highlight the current cell in the book list with a lighter background and different foreground to make it more obvious
- [1961639] An option to disable editing composite columns in the main book list when Tabbing through them (Preferences->Look & feel->Edit metadata)
:: bug fixes
- Tag editor: Fix regression in previous release that caused double clicking on tags to not work on non Linux platforms
- [1962365] Copy to library: Fix annotations not being copied
- [1962213] Edit book: Spell check: Fix words after a comment not being checked
- [1960554] PDF Output: Fix conversion failing if there are ToC entries pointing to removed content
- [1961775] E-book viewer: Fix an error when opening books with MathML for the second time if the last read position was at a MathML element
- Edit book: Fix double clicking to select a word also selecting smart quotes surrounding the word
- EPUB 3 metadata: Fix non-integer series index being sometimes represented using exponential notation
:: improved recipes
- Lenta.ru and aif.ru
- Indian Express
- Live Mint
- Mainichi
- Japan Times
:: new recipes
- Hindustan Times by unkn0wn
- India Legal Magazine by unkn0wn
- RT на русском by Vuizur
}}}
{{{ 5.37.0 2022-02-18
:: new features
- [1961129] Book details: Add actions to trim the cover to the right-click menu
- [1960586] Allow removing multiple email addresses at once in Preferences->Sharing by email
- Book details: Use a better mono-spaced font on Windows by default
- Add a tweak in Preferences->Tweaks to change the behavior of the Tab key when completing entries
- [1959928] Edit metadata: In "All in one" mode add an adjustable splitter between the cover and formats boxes
:: bug fixes
- [1960686] Textile output: Don't fail if input document has invalid padding or margin specifications
- [1960446] E-book viewer: Fix image display window not remembering its size and settings when run from within calibre
- E-book viewer: Fix setting to use roman numerals for series not being respected
- Edit book: When saving a copy do not fail if the original file has no write permissions
- [1960180] Embed fonts tool: Create <head> when missing
- Tag editor: Improve performance when very large number of tags present
:: improved recipes
- Live Mint
- The Hindu
- Reuters
- MMC RTV Slovenija
- Down To Earth
- Publico.PT
}}}
{{{ 5.36.0 2022-02-04
:: new features
- Edit metadata dialog: Allow controlling which custom columns are present in this dialog via Preferences->Look & feel->Edit metadata
- Edit metadata dialog: Allow manually sizing the various sections of the dialog in "All on 1 tab" mode
- Edit book: Spell checking: Update the bundled English and Spanish dictionaries
- [1958773] BibTeX catalogs: Support tags like custom columns
:: bug fixes
- [1959659] Amazon metadata download: Fix paragraphs in the comments being merged
- [1958979] Amazon.de metadata download: Fix published date and series information not being fetched for some books
- Email delivery: Fix sending email via Hotmail not working since this week because Microsoft changed the SMTP server name
- [1959220] Do not remove articles for titles in the Polish language
- [1959207] E-book viewer: When using Read aloud do not automatically lookup the highlighted word until read aloud is paused or stopped
- E-book viewer: Fix Ctrl+p shortcut for printing not working
- [1958882] Show an error when viewing a specific format and the file is missing
- Edit book: Fix renaming of classes that start/end with non word characters not working
- [1958730] Edit book: Preview panel: Fix hyphenation at end of line being rendered as boxes on macOS
- [1959893] Fix incorrect selection size displayed in Trim image dialog when image is scaled down to fit
- [1959782] Edit book: Fix pasting files from another editor instance failing if a file with the same name already exists
- [1959981] When reviewing metadata if the newly downloaded metadata has no language but there is an existing language, ensure it is preserved
:: improved recipes
- India Today
- Indian Express
- Live Mint
- Al Jazeera in English
- The Financial Express
- The Straits Times
:: new recipes
- title by author
}}}
{{{ 5.35.0 2022-01-21
:: new features
- [1956006] Coloring/icon rules: Allow creating a rule for date columns that matches *today*
- Kobo driver: Add support for new firmware
- [1954890] Content server: Show total number of results when searching for books
:: bug fixes
- [1958028] E-book viewer: Fix searching for text near the end of a chapter sometimes not working
- [1954714] E-book viewer: Fix auto hyphenation on macOS not rendering the hyphens correctly
- Edit book: Reports: Fix thumbnails of SVG images not rendered
- ODT metadata: Support reading tags from multiple <keyword> elements
- [1958115] LRF Input: Fix a regression in calibre 5 that broke parsing of some LRF files
- [1956097] MOBI output: Don't fail if input document contains invalid % based lengths
- [1955308] AZW3 Input: Handle AZW3 files with incorrect TAGX Offset INDX header fields
- [1956932] Comic conversion: Fix conversion of comic images that are stored as grayscale images in JPEG format not working when converting to PDF with image processing turned off
- [1955967] calibredb catalog: Fix --ids and --search options not working for CSV/XML catalogs
- [1958490] Tag browser: Fix the find box not using all available width
- [1956192] E-book viewer: Remove books that do not exist from the recently opened book list
- Completion popups: Fix display of items containing line breaks
- [1956129] Fix line breaks in custom column descriptions not being rendered in their tooltips
- [1956088] Fix Preferences->Searching->Clear search histories not taking effect till a restart for some search boxes
- [1955732] Hierarchical entries in user category may not merge correctly in tag browser
:: improved recipes
- Foreign Affairs
- MIT Technology Review
- Reuters
- Clarin
- General Knowledge Today
- Popular Science
:: new recipes
- Dw.de by xav
- Equestria Daily by Timothee Andres
}}}
{{{ 5.34.0 2021-12-17
:: new features
- Happy holidays to everyone!
- Driver for the new Nook Glowlight 4