mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-20 13:55:15 +01:00
version 5.4.2
Fixes bug on windows where the choose save filename dialog was broken. Who knew GetLongPathName didnt work for non-existing files.
This commit is contained in:
parent
390109c82b
commit
94fb16934d
2 changed files with 4 additions and 2 deletions
|
|
@ -24,7 +24,7 @@
|
|||
# }}}
|
||||
|
||||
|
||||
{{{ 5.4.1 2020-10-30
|
||||
{{{ 5.4.2 2020-10-30
|
||||
|
||||
:: new features
|
||||
|
||||
|
|
@ -88,6 +88,8 @@
|
|||
|
||||
- Fix a rare issue where restarting calibre from within the program would fail.
|
||||
|
||||
- Version 5.4.2 fixes bugs in 5.4.0 that prevented calibre from starting on macOS and from choosing save file names on Windows.
|
||||
|
||||
:: improved recipes
|
||||
|
||||
- Psychology Today
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
import sys, locale, codecs, os, collections
|
||||
|
||||
__appname__ = 'calibre'
|
||||
numeric_version = (5, 4, 1)
|
||||
numeric_version = (5, 4, 2)
|
||||
__version__ = '.'.join(map(unicode_type, numeric_version))
|
||||
git_version = None
|
||||
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
||||
|
|
|
|||
Loading…
Reference in a new issue