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:
Kovid Goyal
2020-10-30 22:17:41 +05:30
parent 390109c82b
commit 94fb16934d
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv
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>"