version 6.0.0

This commit is contained in:
Kovid Goyal 2022-07-11 07:56:42 +05:30
parent 381b9aa51c
commit 5888d37327
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 19 additions and 2 deletions

View File

@ -6,7 +6,7 @@
# to the ticket list. # to the ticket list.
# Also, each release can have new and improved recipes. # Also, each release can have new and improved recipes.
# {{{ 5.x.0 2022-xx-xx # {{{ 6.x.0 2022-xx-xx
# #
# :: new features # :: new features
# #
@ -23,6 +23,23 @@
# - title by author # - title by author
# }}} # }}}
{{{ 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 {{{ 5.44.0 2022-06-17
:: new features :: new features

View File

@ -5,7 +5,7 @@ from functools import lru_cache
import sys, locale, codecs, os, collections, collections.abc import sys, locale, codecs, os, collections, collections.abc
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (5, 99, 12) numeric_version = (6, 0, 0)
__version__ = '.'.join(map(str, numeric_version)) __version__ = '.'.join(map(str, numeric_version))
git_version = None git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"