I really dont want to keep answering questions about the edit metadata window so do a patch release

This commit is contained in:
Kovid Goyal 2022-09-30 17:45:43 +05:30
parent 0f46046c79
commit e397d51a8a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 5 additions and 2 deletions

View File

@ -23,7 +23,7 @@
# - title by author # - title by author
# }}} # }}}
{{{ 6.6.0 2022-09-30 {{{ 6.6.1 2022-09-30
:: new features :: new features
@ -50,6 +50,9 @@ Then, when searching the Tag browser, press Ctrl+Alt+Shift+F to restrict the dis
- Edit book: File list: Fix pressing Tab key while renaming a file not starting the rename of the next file - 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 :: improved recipes
- SCMP - SCMP
- Spectator Magazine - Spectator Magazine

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 = (6, 6, 0) numeric_version = (6, 6, 1)
__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>"