forked from kovidgoyal/calibre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog.old.txt
22985 lines (11863 loc) · 813 KB
/
Changelog.old.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
{{{ 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
- Edit book: Spell check tool: Add an exclude files button to exclude some files from being checked
- EPUB/MOBI Catalogs: Increase the maximum thumbnail size to 3 inches from 2 inches
- [1953739] Allow creating a shortcut in Preferences->Shortcuts->Edit metadata to paste metadata ignoring the value of the exclude_fields tweak
- [1954715] E-book viewer: Displays links marked up as glossary and bibliography links as popups
- [1954572] Add a tweak in Preferences->Tweaks to provide the sort value for undefined numbers
:: bug fixes
- Edit book: Fix pressing F8 to jump to next misspelled word not working after last word in current file
- [1954889] Fix PDB E-reader output broken in calibre 5
- [1954839] Edit book: Reports: Include descendant selectors that use classes when counting class usage
- [1954726] E-book viewer: Fix an error when opening some books with highlights that span in-line text formatting
- [1954460] MTP driver: Do not send the calibre device db files to the root folder on the Supernote A5 x as it fails
- ToC Editor: Workaround an occasional error when closing on Windows if the file being edited is in a DropBox/antivirus prone folder
- Fix a regression in the previous release that broke creating new keyboard shortcuts
- Comments editor: When flowing the tool bar onto multiple lines do not split up groups of buttons
- Various compatibility fixes for Python 3.10 used by some Linux distributions
:: improved recipes
- Pocket
- El Pais
- American Prospect
- Mediapart
}}}
{{{ 5.33.2 2021-12-03
:: new features
- Allow changing the icon used for calibre libraries. Right click the library icon in calibre and choose "Change the icon for this library"
- Comments editor: Use a single line for all three toolbars if they fit
- Edit book: Allow merging HTML files by drag and drop of the files onto another HTML file
- Kobo driver: Add support for listing purchased audiobooks
- Edit metadata all-in-one mode: The cover and formats column now gives as much vertical space as possible to the cover image
- [1952562] Add books dialog: When a non-book file type is added the next time the dialog is used, preselect the "All files" filter
- [1952764] calibre-server --manage-users: Allow managing users while the server is running and also add actions to automate changing user account restrictions
- [1950762] EPUB 3 metadata: If the book contains a "subtitle" append it to the main title when reading metadata
:: bug fixes
- [1950673] E-book viewer: Fix an occasional hang on startup at "Loading section"
- [1952142] Get books: Update the Kobo plugin for website changes
- [1951673] Bulk edit metadata dialog: Fix changing the search mode resetting other fields
- [1951507] E-book viewer: Fix sorting of highlights incorrect in books that use HTML ids with a hyphen in them
- [1951467] PDF Output: Fix the option to break long words at the ends of lines causing boxes to be rendered at the end of the line on macOS with some fonts
- Google metadata plugin: When searching by ISBN if no results are found retry using an alternate query syntax
- 5.33.2 fixes a couple of regressions that broke the toolbar in the popup comments editor dialog and rendering of the download
metadata button in the edit metadata dialog on Windows, as well as reading files from MTP devices on Windows
:: improved recipes
- Smithsonian Magazine
:: new recipes
- The Epoch Times by Kovid Goyal
- Mens Day Out by Vishwas Vasuki
}}}
{{{ 5.32.0 2021-11-12
:: new features
- [major] Edit book: Add a tool to transform HTML tags based on rules (Tools->Transform HTML)
Allows for making transformations such as changing one html tag to another, deleting tags, wrapping
them in another tag, etc. Also available during conversions via the Look & feel->Transform HTML
section of the conversion dialog.
- [1949908] Driver for the new Tolino Vision 6
- Kobo driver: Add support for the latest firmware released last week
- [1948889] When picking a random book ensure recently chosen books are not re-selected
- Icon theme chooser dialog: Allow right clicking on a theme to visit its homepage
:: bug fixes
- Amazon metadata download: Add support for more markup variations in amazon's sites that could prevent the fetching of
ratings, comments and series metadata for some books
- Google search: Add support for new beta search results page markup that was preventing using cached Google pages
to search for Amazon metadata
- PDF Output: Fix the option to preserve cover aspect ratio being ignored when converting comics
- [1950412] DOCX Input: Sanitize image filenames more strictly to workaround broken EPUB software
- [1950206] Linux binary: Fix file dialogs not working on Fedora 35 under KDE
- [1949604] When sending email to the Kindle and PocketBook sync services use ASCII filenames as there have been some
reports of issues with non-ASCII filenames with these services.
- [1950033] Book Details: Fix missing copy options on composite columns
- Ask for confirmation when deleting covers from books
:: improved recipes
- New York Post
- Liberation
- Boston Globe
- The Globe and Mail
- LeMonde
:: new recipes
- India speaks reddit feed by Vishwas Vasuki
}}}
{{{ 5.31.1 2021-10-29
:: new features
- [1948883] Kindle driver: Support the new Kindle PaperWhite 2021
- Add an option under Preferences->Behavior to have calibre recognize numbers when sorting (this was previously under Preferences->Tweaks)
- E-book viewer: Add a button to directly open the viewer help section in the calibre user manual to the viewer controls
- E-book viewer: Prevent the display from sleeping when using auto-scroll or read aloud modes (Implemented only on Windows and macOS)
- Edit book: Set semantics tool: Add support for EPUB 3 landmarks
- [1948493] Add an entry to the Connect/share menu to open the content server in a local browser when it is running
:: bug fixes
- [1947879] Content server: Fix some OPDS feeds failing with non-ASCII content
- [1948560] Tag browser: Fix incorrect first letter partitioning when enabling numeric collation of items that start with a number
- [1949167] 5.31.1 fixes a bug in an HTML serialization library calibre uses that broke a few things, such as the comments editor
tool in the metadata dialog
}}}
{{{ 5.30.0 2021-10-22
:: new features
- Add support for the new Kobo Sage and Libra 2 e-book reader devices
- [1946439] E-book viewer: Read aloud: Allow right clicking to play/pause reading
- Sending books by e-mail: Preserve non-English characters in attached filenames
- [1946560] Tag browser: Allow searching for sub-categories by right clicking on them
:: bug fixes
- E-book viewer: Fix cover and full screen images not centered in paged mode when more than one page is displayed per screen
- ToC Editor: Ignore in succession clicks on the OK and Cancel buttons to avoid accidentally closing the window when finishing creating a new entry
- [1905479] Comments editor: Fix the formatting buttons not showing the current state correctly and fix some keyboard shortcuts not working when more than one comments editor is present in a single window
- [1946417] Tag browser: Fix renaming of User categories in Virtual libraries
- [1947948] Make removing large numbers of custom column icons easier
:: improved recipes
- Private Eye
- Foreign Policy
- Le Monde Diplomatique - cono sur
}}}
{{{ 5.29.0 2021-10-08
:: new features
- [1945890] Allow drag and drop of books onto formats in the Tag browser to convert them to that format
- [1945891] Allow creating sorts based on multiple columns (Add the Sort action to the toolbar via Preferences->Toolbars & menus)
- Edit book: When changing a paragraph to a heading if the cursor is adjacent to a paragraph tag but not inside any tags other than body, use the adjacent tag
:: bug fixes
- [1945889] Auto adding: Run relevant plugins before reading metadata from the book. Matches behavior of manual adding
- [1945882] Content server: Fix category collapse by partition not working
- Prevent Tab from causing focus to leave the Tag browser
- Edit book: See what changed: Fix non-BMP unicode characters causing highlighting of changed words to be slightly misplaced
- PDF Output: Fix a regression that broke conversion of comics that contain 1-bit images
- Edit book: Fix pressing Ctrl+Tab inserting a tab at the start of a line instead of switching tabs
- [1945098] Fix a regression in the previous release that caused identifiers set by some plugins to not be saved in the database
- [1946342] Template language: Fix nesting composite columns sometimes failing
:: improved recipes
- Entrepreneur Magazine
- Dawn
- New York Review of Books
:: new recipes
- Various Indian news sources by Vishvas Vasuki
}}}
{{{ 5.28.0 2021-09-24
:: new features
- Edit metadata dialog: Customize cover generation: Allow saving and loading cover generation settings as "themes"
- [1944614] E-book viewer: Allow pressing the 0-9 keys to apply a quick highlight style
- [1943521] Book details panel: While clicking tags/authors/etc. holding down the Ctrl+Shift modifier keys now add the tag to the current search with "AND" instead of "OR" when using only Ctrl
- [1944057] Add an option to the preferences drop down menu to restart calibre without third party plugins
:: bug fixes
- [1944562] Edit book: When renaming classes in style sheets only recognize class names preceded by a period
- E-book viewer: Fix lookup in Google partially hidden due to change in Google results page markup
- Conversion dialog: Search replace expression builder: Fix incorrect search result highlighting when non-BMP unicode characters are present in the text
- [1943270] E-book viewer: Fix popup footnote blank when the footnote link points to a <body> tag
- [1944433] E-book viewer: Fix jumping to highlights in text that occurs after a line break and newline character not working in paged mode
- [1943495] Kindle Output: Strip EXIF metadata from JPEG images as the Kindle renderer has issues with it
:: improved recipes
- Аргументы и Факты
- India Today
}}}
{{{ 5.27.0 2021-09-10
:: new features
- When adding Markdown (.md) or Textile (.textile) files that contain references to images, automatically add them as TXTZ with the images
:: bug fixes
- DOCX Output: Correctly convert soft hyphens in the input document to DOCX soft hyphens
- [1942805] DOCX Input: Fix a bookmark at the end of a paragraph causing the bookmark at the start of the paragraph to be skipped
- [1942773] Edit book: Spell check: Fix EPUB 3 nav document not being spell checked when not in the spine
- [1942012] PDF Output: Fix a rare failure when the input document has a ToC item pointing to the last page
- [1942129] Windows: Fix a regression in calibre 5 that caused drag and drop from WinZip to not work
- [1941992] TXT Output: Fix a regression in calibre 5 that caused the max line length option to not work
- When auto converting added TXT files with image references to TXTZ use a full Markdown parser to detect Markdown images
:: improved recipes
- BBC News
- Foreign Affairs
:: new recipes
- The Week by Kovid Goyal
}}}
{{{ 5.26.0 2021-08-27
:: new features
- [1941013] Dark color scheme: Use a darker blue for highlighted items
:: bug fixes
- Content server book viewer: Show a message when a search finds no matches
- MOBI Output: Fix JPEG images without any JFIF metadata not being rendered on the Kindle
- [1939908] Comic input: Fix single color images having their colors changed by normalization
- [1940005] E-book viewer: Fix creating multiple highlights in a single paragraph that also contains some extra text formatting at the start causing the second and subsequent highlights to malfunction
- [1939912] Edit book: Fix a regression in the previous release that broke the options in the Remove unused CSS dialog
:: improved recipes
- Boston Globe
:: new recipes
- NYTimes Cooking by gourav
}}}
{{{ 5.25.0 2021-08-13
:: new features
- [1939469] Edit/Polish book: Remove unused CSS now also removes unreferenced stylesheets
- E-book viewer: Add some CSS variables and classes that allow writing calibre specific CSS in ebooks. See https://manual.calibre-ebook.com/viewer.html#designing-your-book-to-work-well-with-the-calibre-viewer
- A new framework plugins can use to be notified about changes to calibre libraries
- [1938752] Edit metadata dialog: When pasting into the identifiers field if the clipboard contains a URL paste it directly as a URL identifier
:: bug fixes
- [1938448] E-book viewer: When displaying popup footnotes use the same writing direction as the main text for the footnote popups size and header
- E-book viewer: Improve the text layout when looking up words in Google
- Content server viewer: Fix read aloud not working on mobile browsers
:: improved recipes
- The Guardian and The Observer
- Wall Street Journal
- The Atlantic
}}}
{{{ 5.24.0 2021-07-30
:: new features
- Conversion: Insert metadata as jacket: Allow adding timestamp and publisher fields. Also allow controlling the formatting of date/time fields
- [1937025] Cover browser: Add an option to view the central book by double clicking instead of single clicking (Preferences->Look & feel->Cover browser)
- [1936891] Tag browser: Add actions to the configure menu to toggle the display of counts and average rating
- [1936472] Tag browser: Allow plugins to add entries to the context menu
:: bug fixes
- [1938189] fetch-ebook-metadata: Fix an error when using the --cover option and no cover is found
- [1936792] HTML Input: Fix the presence of BookDesigner markup causing conversion to fail
- [1936184] TXT Input: Do not fail if the txt file references a directory as a resource
:: improved recipes
- MSNBC
- Nature News
- Boston Globe
- Foreign Policy
- Le Monde
}}}
{{{ 5.23.0 2021-07-09
:: new features
- [1934204] Annotations browser: Show highlight color in the preview panel
- TXTZ format: Store type of text formatting in the metadata and use it automatically when converting from TXTZ
- [1934043] Edit metadata dialog: Allow holding Ctrl and clicking the item editor buttons to instead open the manage dialog
:: bug fixes
- [1929325] Annotations browser: Fix searching for words in languages such as Chinese that do not have word delimiters not working
- News download: Fix URLs with spaces in them not being downloaded since calibre 5.0
- [1933989] When searching for books by an author from the Manage authors dialog, use exact matches
- [1933797] MOBI Output: Fix invalid color specification as plain numbers causing conversion to fail
- [1933684] MOBI Output: Fix invalid text indent specification causing conversion to fail
- Linux: Drop the unmaintained dbus-python in favor of jeepney for DBUS
- Edit book: Workaround for Qt bug that caused the panel sizes in the editor to not be remembered across sessions
:: improved recipes
- The Guardian and the Observer
- National Geographic
- Handelsblatt
- Huffington Post
}}}
{{{ 5.22.1 2021-06-25
:: new features
- [1931646] E-book viewer: Allow clicking links in popup footnotes
- Main book list: Scroll per pixel rather than per item by default. Can be returned to previous behavior via Preferences->Tweaks->Control behavior of book list
- Linux: Drop support for the global menu bar
:: bug fixes
- [1932152] E-book viewer: Fix font sizes specified in absolute units not being honored in locales where the decimal separator is not the period
- [1931566] E-book viewer: Fix searching for short strings in text with lots of similar entries displaying incorrect matches
- [1932392] MOBI Output: Fix using percentage units for margins resulting in too large margins when using the tablet output profile
- [1931599] E-book viewer: Fix back button not working after jumping to a bookmark
- [1932992] Content server: OPDS feed: Fix incorrect up URL in category group feeds
- [1933559] Content server: Fix a regression in the previous release that broke editing of series metadata
- E-book viewer: Fix scrolling backwards by screen-fulls not working with very large page margins.
- MOBI Input: Fix a regression in calibre 5 that broke processing of Haodoo format files
- Conversion: Fix the smarten punctuation option not applying to inserted jacket page
- 5.22.1 fixes a typo in the previous release that broke device detection on Linux
:: improved recipes
- TheAtlantic.com
- Hindu
- People Daily
}}}
{{{ 5.21.0 2021-06-11
:: new features
- Driver for the new Kobo Ellipsa
- [1930958] Content server: When editing metadata for fields that take multiple values, make it easier to remove individual values by simply tapping a button
- [1930900] Browser viewer: Make current color scheme setting propagate to all devices automatically when using user accounts
- E-book viewer: Image popup: Show the image resolution in the popup window's titlebar
:: bug fixes
- [1930922] HTML Input: Fix handling of @import rules in stylesheets nested more than one level deep
- [1930912] Fix viewer search context menu to clear searches not clearing search settings
- E-book viewer image popup: Fix full screen button in incorrect state when starting in full screen
:: improved recipes
- Associated Press
- The Hindu
}}}
{{{ 5.20.0 2021-06-04
:: new features
- E-book viewer: Highlights: Make URLs in the notes for highlights clickable
- [1930136] Book details: Ctrl-clicking on tags now adds them to the existing search instead of replacing it
- E-book viewer: Allow using the back button to return from jumping to a search result
:: bug fixes
- Get books: Fix the Kobo store plugin for changes to the website
- [1929827] Edit book: Fix non breaking spaces in snippets being converted to normal spaces
- [1930466] ToC Editor: Fix a regression that caused changes to not be saved on machines where running a worker process takes more than ten seconds
- Fix error when changing the "Search the net" URLs for the Content server
:: improved recipes
- Jerusalem Post
- Popular Science
- Ambito Financiero
- Ambito.com
- Infobae
}}}
{{{ 5.19.0 2021-05-28
:: new features
- E-book viewer: Add a preference under Scrolling behavior to reverse the tap zones used to turn pages. So tapping on the left goes forward and the right backward
:: bug fixes
- [1929862] E-book viewer: Fix regression in 5.15 that caused incorrect display of font sizes that contain a period and use absolute units
- [1929240] PDF Output: Fix font kerning issues with some TrueType fonts
- [1929267] Edit book: Fix a regression in 5.18 that broke editing/creating saved searches
- [1919025] Windows: Fix for standalone ToC Editor not working on systems where Qt WebEngine causes a crash at exit
- Windows MTP driver: When scanning an MTP device such as an Android phone ignore folders that Windows fails to enumerate instead of failing with an error
- ToC Editor: Fix a regression that broke choosing split points in some XHTML files
- [1929465] PDB Input: Fix a regression in calibre 5 that broke processing some plucker format PDB files
- Edit book: Fix sorting in spell check dialog on language broken for books that have unknown languages
- Annotations browser: Fix a typo that broke sorting for highlights
- [1909730] Annotations browser: When showing a highlight preserve paragraph boundaries for multi-paragraph highlights
- Viewer highlights panel: Fix the "Edit notes" link not saving the changes
- [1929164] E-book viewer: When using a right click/shift-click to adjust the selection, move the section boundary that is closer to the click point
}}}
{{{ 5.18.0 2021-05-21
:: new features
- Content server viewer: Improved search functionality
Searching can now be done for whole words and regular expressions. And all search results are
listed at once with some context for easy navigation.
- [1928596] E-book viewer: Allow making the image popup full screen
- E-book viewer: Allow expanding/collapsing all items in the Table of Contents at a particular level by right clicking on one item of that level and choosing the option to expand/collapse
- E-book viewer: Add shortcuts shift+home and shift+end to extend current selection to start/end of line
- [1927520] Book details: When creating rules to convert identifiers to URLs allow using {id_unquoted} to avoid quoting the identifier value
- [1927062] Review downloaded metadata: Allow double clicking on a cover to see it at a larger size
- [1927012] Annotations browser: Add a Refresh button
:: bug fixes
- Edit book: Fix ctrl-clicking on a class name jumping to the wrong CSS rule if the stylesheet contains top level comments
- [1928579] Fix search and replace on identifiers not working if the replaced value has colons
- [1922691] Annotations browser: Sort the entries in order of position in book
- ToC editor: Dark mode: Fix colors in location selection panel not dark
- [1926793] E-book viewer: Fix right or shift-clicking to extend selection not shrinking selection when the click is inside the selection
- [1927546] Avoid spurious errors on multiple simultaneous calibre launches
- [1925961] E-book viewer: Ignore mouse scroll events that would turn pages when editing notes
- E-book viewer: Fix sorting bookmarks by title not working
- Windows WPD driver: Fix an error reading the filesystem on some MTP based devices
:: improved recipes
- IEEE Spectrum
}}}
{{{ 5.17.0 2021-04-30
:: new features
- [1926484] E-book viewer: Image popup: Allow dragging with the mouse to pan the image
- [1923724] Sort button: Allow selecting which columns are in the popup sort menu
- [1851908] E-book viewer: When suggesting a default bookmark title, use the name of the current chapter
- [1925038] E-book viewer: When searching the Table of Contents allow holding the Shift key to search backwards
- [1925294] E-book viewer: Add a shortcut Ctrl+0 to restore default font size
:: bug fixes
- Windows MTP driver: Rewrite parts of the driver in the hope of fixing some rare and hard to reproduce crashes
- Windows MTP driver: Set modified and created times when putting files/folders on device. Also read modified time correctly.
- [1918591] Windows: E-book viewer: Fix switching away from viewer while in full screen and switching back causing some corruption until the page is scrolled
- [1925378] Fix a regression in the previous release that caused errors when editing empty date values
- Get books: Update Gutenberg plugin for website changes
- [1926518] E-book viewer: The quick highlight button should replace the style of an existing highlight, when one is selected